I am using https://github.com/vpulim/node-soap a soap client and server for node.js
I have created my own SOAP server. The client can execute methods on the SOAP server and the server sends a response to the client which match the appropriate client…
I am trying to call a web service that requires authetication via X509 certificate. I'm using Node.js and node-soap module, getting successfully the WSDL.
But when I try to build the SOAP envelope with the Signature tag inside, I get the following…
I'm trying to make a soap request using the method as described here: https://www.npmjs.com/package/soap#example-with-xml-string-for-the-args.
I want to input a xml string instead of a JSON object since i can't achieve the required syntax in…
Is there an easy way of setting up timeouts and keep-alive for node-soap clients?
It would be useful to setup:
socket connection timeout;
socket read timeout;
request timeout;
keep-alive (enable/disable);
keep-alive heartbeat interval.
For rest apis, there are libraries like swagger-stats and prometheus-api-metrics to support api metrics / telemetry. I am using node-soap, is there a library that supports web services metrics / telemetry?
I've tried searching npmjs.com but couldn't…
In node-soap client, I have to remove xmlns:xsi and override xmlns:tns with xmlns:ser
I have tried a lot but unable to do so. Need Help
const url = 'http://host:9001/xyz/abc/something?wsdl';
var wsdlOptions = {
"overrideRootElement": {
…
I'm trying to fetch utf-8 characters (accents) using node-soap but i'm getting strange chars (printed in console as '?'). I'm able to see accents in Soap UI.
soap.createClient('https://example.com/data.php?wsdl',options, (err, client) => {
if…
I'm trying to call a simple method created within my SOAP service that returns "Hello, World!". I've been able to successfully call this method using SoapUI, so I know it works.
Currently, all that's being printed out is an empty object. I have hit…
I am writing a service with node.js' node-soap package. The service seem to run okay when I do "node myService.js". Now, how do I get the url that would be given to the client? If you want my wsdl file, "myservice.wsdl" as per the code below please…
I wanted to get the status code of the soap response in the client getRoleListOfUser function in the nodejs app.
return new Promise((resolve, reject) => {
soap.createClient(url, function(err, client) {
if (err){
…
I am writing a Node JS SOAP client using Node-Soap module to send a file to a remote SharePoint based Web Services.
The machine client requires a proxy to access Internet and the SharePoint WS requires an account (user, pwd). Below are the code…
i'm using node-soap to consume laposte web service which is suppose to send me a response with a PDF attachment.
But what I get is not a file but a href such as the following
href: 'cid:c482ea77-cc5b-406f-8596-295470ce8049-100134@cxf.apache.org'
In…
I haven't used soap until now. I'm using node-soap library (https://github.com/vpulim/node-soap).
I want to communicate with soap server. To maintain the session the server sends me set-cookie response header: 'ASP.NET_SessionID=55....hrc; path/;…
For an API I need the possibility to create a byte array from a local pdf file.
I've already checked StackOverflow, but the existing solutions do not work. Whenever I try to execute the code I get a bad request from the soap API. If I send zero…