Search


Click here for a complete list of operations.

findAuteurs

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /WebService/search.asmx HTTP/1.1
Host: www.electre.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://electre.com/ElectreNET/findAuteurs"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://electre.com/ElectreNET/" xmlns:types="http://electre.com/ElectreNET/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <tns:findAuteurs>
      <sessionToken xsi:type="xsd:string">string</sessionToken>
      <expression href="#id1" />
    </tns:findAuteurs>
    <tns:SearchExpression id="id1" xsi:type="tns:SearchExpression">
      <expression xsi:type="xsd:string">string</expression>
      <phonetic xsi:type="xsd:boolean">boolean</phonetic>
      <inflections xsi:type="xsd:boolean">boolean</inflections>
    </tns:SearchExpression>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://electre.com/ElectreNET/" xmlns:types="http://electre.com/ElectreNET/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <tns:findAuteursResponse>
      <findAuteursResult href="#id1" />
    </tns:findAuteursResponse>
    <soapenc:Array id="id1" soapenc:arrayType="tns:AuteurInfo[2]">
      <Item href="#id2" />
      <Item href="#id3" />
    </soapenc:Array>
    <tns:AuteurInfo id="id2" xsi:type="tns:AuteurInfo">
      <nom xsi:type="xsd:string">string</nom>
      <id xsi:type="xsd:string">string</id>
      <auteurType xsi:type="tns:AuteurType">AUTMANIF or AUTEURPP or AUTCOLLE</auteurType>
      <typParti href="#id4" />
    </tns:AuteurInfo>
    <tns:AuteurInfo id="id3" xsi:type="tns:AuteurInfo">
      <nom xsi:type="xsd:string">string</nom>
      <id xsi:type="xsd:string">string</id>
      <auteurType xsi:type="tns:AuteurType">AUTMANIF or AUTEURPP or AUTCOLLE</auteurType>
      <typParti href="#id5" />
    </tns:AuteurInfo>
    <soapenc:Array id="id4" soapenc:arrayType="xsd:string[2]">
      <Item>string</Item>
      <Item>string</Item>
    </soapenc:Array>
    <soapenc:Array id="id5" soapenc:arrayType="xsd:string[2]">
      <Item>string</Item>
      <Item>string</Item>
    </soapenc:Array>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /WebService/search.asmx HTTP/1.1
Host: www.electre.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="http://electre.com/ElectreNET/" xmlns:types="http://electre.com/ElectreNET/encodedTypes" xmlns:rpc="http://www.w3.org/2003/05/soap-rpc" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body soap12:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
    <tns:findAuteurs>
      <sessionToken xsi:type="xsd:string">string</sessionToken>
      <expression soapenc:id="id0" xsi:type="tns:SearchExpression">
        <expression xsi:type="xsd:string">string</expression>
        <phonetic xsi:type="xsd:boolean">boolean</phonetic>
        <inflections xsi:type="xsd:boolean">boolean</inflections>
      </expression>
    </tns:findAuteurs>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="http://electre.com/ElectreNET/" xmlns:types="http://electre.com/ElectreNET/encodedTypes" xmlns:rpc="http://www.w3.org/2003/05/soap-rpc" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body soap12:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
    <tns:findAuteursResponse>
      <rpc:result xmlns="">findAuteursResult</rpc:result>
      <findAuteursResult soapenc:id="id0" soapenc:itemType="tns:AuteurInfo" soapenc:arraySize="2">
        <Item soapenc:id="id1">
          <nom xsi:type="xsd:string">string</nom>
          <id xsi:type="xsd:string">string</id>
          <auteurType xsi:type="tns:AuteurType">AUTMANIF or AUTEURPP or AUTCOLLE</auteurType>
          <typParti soapenc:id="id2" soapenc:itemType="xsd:string" soapenc:arraySize="2">
            <Item>string</Item>
            <Item>string</Item>
          </typParti>
        </Item>
        <Item soapenc:id="id3">
          <nom xsi:type="xsd:string">string</nom>
          <id xsi:type="xsd:string">string</id>
          <auteurType xsi:type="tns:AuteurType">AUTMANIF or AUTEURPP or AUTCOLLE</auteurType>
          <typParti soapenc:id="id4" soapenc:itemType="xsd:string" soapenc:arraySize="2">
            <Item>string</Item>
            <Item>string</Item>
          </typParti>
        </Item>
      </findAuteursResult>
    </tns:findAuteursResponse>
  </soap12:Body>
</soap12:Envelope>