Hi Guys,
How can we check if a particular web-service is REST or SOAP?
Thanks in advance
Murugavel S
Hi Guys,
How can we check if a particular web-service is REST or SOAP?
Thanks in advance
Murugavel S
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sachin SinghPosted Jan 29, 2023, 9:08 AM
SOAP web service contains WSDL file and only supports XML format whereas REST doesn't contain WSDL file and supports XML, JSON, Most often Json only.
So if you service has a WSDL file then it is SOAP, if it gives JSON response then it is Rest.
Aravind GovindarajPosted Jan 29, 2023, 9:45 PM
In soap you can able to generate proxy, however not the same in rest API...
On end of the uel if you add ? Wsdl you can see the schemas in soap service and the same is not applicable for rest...
Soap required contract or proxy before consuming in client app...