Hello. I am trying to build a client that will send POST commands to Adobe InDesign Server. InDesign Server does not support GET requests, only POST. Is there a why to send a POST only request to a url?
My goal is to send a POST request to Indesign Server and instruct it to run an Adobe script. I can do this with Postman by:
1. Sending POST request to a url
2. Add body info (the body info is below)
<soapenv:Envelope xmlns:soapenv="Please login to see this link." xmlns:soap="Please login to see this link.">
<soapenv:Body>
<soap:RunScript>
<runScriptParameters>
<scriptLanguage>javascript</scriptLanguage>
<scriptFile>C:\temp\INDDserverImport4.jsx</scriptFile>
<scriptArgs>
<name>templateName</name>
<value >Pocket Book</value>
</scriptArgs>
<scriptArgs>
<name>appAction</name>
<value>import</value>
</scriptArgs>
<scriptArgs>
<name>myAsset</name>
<value>""/c/temp/BK90079833.docx""</value>
</scriptArgs>
</runScriptParameters>
</soap:RunScript>
</soapenv:Body>
</soapenv:Envelope>
Any suggestions would be appreciated. Thanks!