Request Samples

Removing certificate

This packet removes certificate called common from repository of domain doe.de.

<packet version="1.4.2.0">
<certificate>
<remove>
   <filter>
      <name>common</name>
   </filter>
   <domain>doe.de</domain>
</remove>
</certificate>
</packet>

 

This packet removes certificate called shared from Administrator's repository.

<packet version="1.4.2.0">
<certificate>
<remove>
   <filter>
      <name>shared</name>
   </filter>
   <admin/>
</remove>
</certificate>
</packet>

 

Removing several certificates

This packet removes three certificates: general, personal, sample.

Certificate general is installed to Administrator's repository. Certificates personal and sample are installed to the repository of domain johndoe.org.

<packet version="1.4.2.0">
<certificate>
<remove>
   <filter>
      <name>general</name>
   </filter>
   <admin/>
</remove>
<remove>
   <filter>
      <name>personal</name>
      <name>sample</name>
   </filter>
      <domain>johndoe.org</domain>
</remove>
</certificate>
</packet>