Request Samples

Disabling a single LP

The following request packet disables French LP:

<packet version="1.5.0.0">
  <locale>
    <disable>
        <filter>
        <id>fr-FR</id>
        </filter>
    </disable>
  </locale>
</packet>

 

Disabling multiple LP's

The following request packet disables German and French LP's:

<packet version="1.5.0.0">
  <locale>
    <disable>
        <filter>
          <id>de-DE</id>
          <id>fr-FR</id>
        </filter>
    </disable>
  </locale>
</packet>

 

The following request packet disables all LP's installed on the server:

<packet version="1.5.0.0">
  <locale>
    <disable>
        <filter/>
    </disable>
  </locale>
</packet>