Some PDIs are currently unavailable, and PDI actions are paused. View the latest updates here. Read More

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>
2 REPLIES 2

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>

gurralanavi
Tera Contributor

Hi @VanishreeG ,

I am experiencing the same issue as well. Were you able to resolve it, or do you happen to know the root cause?