Skip to main content
Participant
January 17, 2007
Question

SOAP Returns from IDS

  • January 17, 2007
  • 12 replies
  • 1867 views
Is anybody getting any type of return from IDS through and [java] axis interface? I can send a request and it is executed but I get no return from IDS?
This topic has been closed for replies.

12 replies

Participant
January 18, 2007
This is what I'm getting:<br /><br /><?xml version="1.0".encoding="UTF-8"?><br /><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema" xmlns:IDSP="http://ns.adobe.com/InDesign/soap/"><br /> <SOAP-ENV:Body><br /> <IDSP:RunScriptResult><br /> <errorNumber><br /> 0<br /> </errorNumber><br /> <scriptResult><br /> </scriptResult><br /> </IDSP:RunScriptResult><br /> </SOAP-ENV:Body><br /></SOAP-ENV:Envelope><br /><br />I would like to get actual data returned. On the other InDesign forum it was stated that IDS would return the last command in the script. however I have not seen anything other than the error number returned.
Participating Frequently
January 17, 2007
You should be getting a RunScriptResult in the returned XML packet. Something like...



0

words in story = 3




Are you not seeing this (with a packet sniffer) or is your axis client's deserializer simply not being called? - or are you trying to return something specific, but getting something else? (IDServer packages up, as the return data, the result of the last call in your javascript.)