Get a first look at what's coming. The Developer Passport Australia Release Preview kicks off March 12. Dive in! 

After testing the Soap message function for workday integration, getting below error

VanishreeG
Tera Contributor
<?xml version="1.0" encoding="utf-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wd="urn:com.workday/bsvc"><faultcode>SOAP-ENV:Client.validationError</faultcode><faultstring>Invalid request</faultstring></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
1 REPLY 1

JerryJ071847183
Tera Sage

This error indicates a client-side error, typically due to invalid structure, content, or missing/incorrect data in the request

 

Sample request just for reference:

 

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:bsvc="urn:com.workday/bsvc">
<soapenv:Header>
<wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/07/secext">
<!-- Security tokens -->
</wsse:Security>
</soapenv:Header>
<soapenv:Body>
<bsvc:Get_Workers_Request>
<bsvc:Request_Criteria>
<!-- valid criteria -->
</bsvc:Request_Criteria>
</bsvc:Get_Workers_Request>
</soapenv:Body>
</soapenv:Envelope>