Calling a SOAP service in a REST service

I want to encode a REST service using a Restlet environment that wraps a third-party SOAP service with some XML data. Therefore, whenever I call the REST service with some XML data, the REST service internally calls this third-party SOAP service with the XML data provided by me, and the response is sent from this third-party SOAP API to the REST API and from the REST API to me. I reviewed these issues;

Call a SOAP service using a REST service

Jersey SOAP Challenge

But it didn’t help me, so it would be great if someone provided me with links or tutorials where I can get any help. Thanks.

+4
source share

Source: https://habr.com/ru/post/1613959/


All Articles