Avatar

Level 3

This is example of that SOAP envelope I have used:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://adobe.com/idp/services">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:invoke>
          <ser:dokument>
               <ser:contentType>             
                     plain/text         
                  </ser:contentType>                
               <ser:binaryData>              
                   dGVzdG92YWNpIHN0cmluZw==         
                  </ser:binaryData>              
          </ser:dokument>
     </ser:invoke>
   </soapenv:Body>
</soapenv:Envelope>

And if I dont get error, I get empty output value from process B.

With remoteURL parameter, it works fine:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://adobe.com/idp/services">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:invoke>
         <ser:dokument>
            <ser:remoteURL>http://help.adobe.com/en_US/livecycle/es/overview.pdf</ser:remoteURL>
         </ser:dokument>
      </ser:invoke>
   </soapenv:Body>
</soapenv:Envelope>

response:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soapenv:Body>
      <invokeResponse xmlns="http://adobe.com/idp/services">
         <vysledky>overview.pdf</vysledky>
      </invokeResponse>
   </soapenv:Body>
</soapenv:Envelope>

Thanks

J.