Marcin Szymczak
Marcin Szymczak

Reputation: 11453

How to convert SOAP web service to REST web service in Mule

I would like to convert SOAP ws to REST. Is there any elegant solution to this problem?

REST should take input in json format.

{key:value}

This json should be put inside Body/Order/data tags:

<soapenv:Body>
  <myApp:Order>
    <data>{key:value}</data>
  </myApp:Order>
</soapenv:Body>

Upvotes: 3

Views: 35715

Answers (4)

ispostback
ispostback

Reputation: 412

For asp.net/ Visual Studio, you need to do File --> New Project --> Select Online from the left panel --> You will find Soap to Rest Converter

I hope that will work.enter image description here

Upvotes: 1

Vinod S Pattar
Vinod S Pattar

Reputation: 91

It may be too late to answer this question but it worth to have look on strongloop and its loopback-soap-connector. Check This out this article Soap into apis with loopback-node-js. You can Extend a model to wrap/mediate SOAP operations. It works like a charm and with very reliable performance!

Upvotes: 2

Mika&#235;l DELSOL
Mika&#235;l DELSOL

Reputation: 760

If you wish to call a SOAP Web service using a REST web service, please read this article at https://www.wsdltophp.com/Blog/Call-any-SOAP-Web-service-using-a-REST-Web-service

Upvotes: 0

user1760178
user1760178

Reputation: 6697

I guess Mule ESB should be best in doing this.

Step 1 : You can expose a rest service via http endpoint which should accept your JSON.

Step 2: Then a Custom Transformer can be used to prepare the SOAP request for the SOAP service which needs to be called.

Step 3: OutBound Call to SOAP Web-Service

Step 4: Transformer to convert your SOAP Response from previous out-bound call to JSON response.

The response will be sent back to the client which calle dthe Rest Endpoint.

Hope this helps :)

Upvotes: 3

Related Questions