views:

145

answers:

2

I can't seem to find any examples on this. I see a listing on github for Node that says "Newspaper Club – Uses node.js for wrapping a nasty SOAP interface to InDesign Server.", but I don't see any code.

Thank you.

EDIT: I'm guessing that I could just find any javascript/SOAP kit and port it to Node. Any suggestions on a good one?

+2  A: 

After spending some time researching this, the consensus seems to be that you don't want to do SOAP with Node.js. What you want to do is make Node.js listen for events and make your non-Node services push data at Node using Http.

wizlb
Question: but if you still want to use SOAP to talk to other services?
graffic
+1  A: 

The problem is that if you have a SOAP service you need to interact with what should you do?

Zachary K