Hello all,
Does everyone have information/samples about the IDO web services? Especially on how to create the SOAP envelopes. I tried to remove a PO line using the web service (idowebservice.asmx?wsdl) in the custom app. However, I am struggle with the SOAP envelopes XML syntax schema. If you do please forward me the information. Greatly appreciate it.
Rookie
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="www.w3.org/.../XMLSchema-instance" xmlns:xsd="www.w3.org/.../XMLSchema" xmlns:soap12="www.w3.org/.../soap-envelope">
<soap12:Body>
<SaveDataSet xmlns="frontstep.com/IDOWebService">
<strSessionToken>string</strSessionToken>
<updateDataSet>
<xsd:schema>schema</xsd:schema>xml</updateDataSet>
<refreshAfterSave>boolean</refreshAfterSave>
<strCustomInsert>string</strCustomInsert>
<strCustomUpdate>string</strCustomUpdate>
<strCustomDelete>string</strCustomDelete>
</SaveDataSet>
</soap12:Body>
</soap12:Envelope>