Reputation: 1804
I am trying to create a web app using Node.js. I want to use socket.io to stream data that I pull from a soap service. I am having trouble finding any information about this. what would be the best option for this situation.
right now:
What I would like to do:
I am not sure if this setup is possible and I have not found and good documentation on this. would this be possible ? if so, what would be the best method or is there a tutorial for this?
Upvotes: 1
Views: 1747
Reputation: 1237
There is excellent node.js module called 'soap', you may get it via npm install soap
. Also see the docs at https://github.com/milewise/node-soap.
Upvotes: 1