Having problem with finding any good resource(see tutorial/example) of how to utilize SOAP MTOM with Node.js There is some libraries(soap-node), but not for SOAP MTOM. As SOAP is pretty common and already bit old web service, I thought that is already done many times. Is there any suggestion of how to create SOAP call with attachment and receive answer with attachment as well in Node.js. Some tutorial or example?
Asked
Active
Viewed 1,586 times
1
-
https://github.com/yaronn/ws.js – qballer Aug 21 '16 at 22:19
-
I had look at this one as well, is there anything else than that? Something like soap-node but with MTOM supported, any experience? – Stepan Severin Aug 21 '16 at 22:32
-
https://www.example-code.com/nodejs/mtom_xop_attachment.asp – qballer Aug 21 '16 at 22:38
-
This one has some mystery Chilkat license, and using it in own projects will be questionable. But thanks any way. I just wondering is there some mature solutions for such pretty common thing? – Stepan Severin Aug 21 '16 at 22:50
-
Google is your friend. – qballer Aug 21 '16 at 22:55
-
Hi, did you manage to use MTOM with node in the end ? ws.js documentation isn't cristal clear and the Chilkat thing definitely seems weird. – Eric Burel Dec 20 '16 at 17:27
-
Yes, in the end I end up using this github.com/yaronn/ws.js Yaron approach, but sure I was taking it as reference and create on this base some peace of software that fulfill my needs. So just take it and spend some time with debugger, then grab soapUI and create samples with working messages, after that you will have to create some modifications and it should work just fine. – Stepan Severin May 22 '18 at 11:17
-
See here https://stackoverflow.com/a/61761150/948938 – Juan Ignacio Barisich May 12 '20 at 20:27