Reputation: 6271
Can anybody now hoe to get the wsdl file from the endpoint URL.
When I try to hit the endpoint from the browser, I am getting the below error.
URL: http://****.com/MyBenefits/webservices
Error:
SOAP RPC Router
Sorry, I don't speak via HTTP GET- you have to use HTTP POST to talk to me.
When I try the same with SOAP UI I got the below error message.
Intial WSDL/WADL: http://******.com/MyBenefits/webservices?WSDL
Error:
Can I know any way to get the wsdl file from the endpoint URL.
Upvotes: 0
Views: 14444
Reputation: 31
I had the same issue, but my url is: http://*****/soap/ps/servlet/rpcroute
Try SoapUI!
Now, the Request 1 window is open, change Media Type to text/xml, paste your XMl Request and click en Play (green button) My XMl request is:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns="urn:YourEndPoint" >
<soapenv:Header/>
<soapenv:Body>
<YourOperationName>
<YourParams>
</YourParams>
</YourOperationName>
</soapenv:Body>
</soapenv:Envelope>
Good luck!
Upvotes: 1