mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
09.34.2012 09b8ac5dde00a0f081c01fbe13dd4bc9dd8aebf8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
POST /dsml HTTP/1.1
Host: Foo
Connection: Close
Content-Length: 727
SOAPAction: "#batchRequest"
 
<?xml version='1.0' encoding='UTF-8'?>
  <soap-env:Envelope
      xmlns:xsd='http://www.w3.org/2001/XMLSchema'
      xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
      xmlns:soap-env='http://schemas.xmlsoap.org/soap/envelope/'>
    <soap-env:Body>
      <batchRequest xmlns="urn:oasis:names:tc:DSML:2:0:core">
        <searchRequest dn="ou=Europe, ou=Search, o=IMC, c=US" scope="singleLevel" derefAliases="neverDerefAliases">
        <filter>
       <and>
        <not>
        <present name="description"/>
        </not>
        <equalityMatch name="objectclass">
            <value>person</value>
        </equalityMatch>
       </and>
        </filter>
        </searchRequest>
      </batchRequest>
    </soap-env:Body>
  </soap-env:Envelope>