After testing the Soap message function for workday integration, getting below error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2025 04:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2025 05:31 AM
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>