AJay
AJay

Reputation: 143

How to create a 'traditional' Web Service with Node.js

I hope someone can give me point in the right direction. I want to replace a 'legacy' web service, that has defined contract, using Node.js. I plan to use Node.js moving forward and transition to more RESTful calls, but I still need to support a legacy app. that needs to make a traditional WS call. What's the best way to do this?... which modules are the best choice? Thanks for any pointers in the right direction.

Upvotes: 0

Views: 710

Answers (1)

Golo Roden
Golo Roden

Reputation: 150852

The only module I know of that provides at least some support for SOAP / WSDL is node-soap.

It allows you to write SOAP clients as well as SOAP servers. Maybe it is a starting point.

Upvotes: 1

Related Questions