06-30-2017 06:52 AM
Any help much appreciated in this regard in terms of sample envelopes you can share or validated WSDL, currently using v28.1 which doesn’t validate in XMLSpy although it seems to work with SOAPUI
Yours,
Adrian
06-30-2017 07:22 AM
Does it not validate in Soap Execute snap?
06-30-2017 07:41 AM
Not sure I follow, the snap passes validation but fails during execution.
06-30-2017 08:14 AM
Which API are you referring to any particular?
06-30-2017 09:54 AM
Adrian, I’ve used the Soap Execute successfully with Workday in several pipelines. I would have several questions or clarifications to help troubleshoot. To start:
Here is a sample SOAP request for the Get_References operation of the Integrations web service. This should return all time zones from your tenant:
<soapenv:Envelope xmlns:soapenv=“http://schemas.xmlsoap.org/soap/envelope/” xmlns:bsvc=“urn:com.workday/bsvc”>
<soapenv:Header />
<soapenv:Body>
<bsvc:Get_References_Request bsvc:version=“v28.1”>
<bsvc:Request_Criteria>
<bsvc:Reference_ID_Type>Time_Zone_ID</bsvc:Reference_ID_Type>
<bsvc:Include_Defaulted_Values_Only>0</bsvc:Include_Defaulted_Values_Only>
</bsvc:Request_Criteria>
</bsvc:Get_References_Request>
</soapenv:Body>
</soapenv:Envelope>