Questions tagged [node-soap]

noad-soap is a SOAP client and server for node.js.

node-soap is a SOAP client and server for node.js.

https://github.com/vpulim/node-soap

152 questions
1
vote
0 answers

signing SOAP XML using node-js using private key

Am trying to sign the XML using my private key, and using SOAPUI it gives the proper success response. to generate the request am using below code var Authorization = 'Basic ' + new Buffer((sapConfig.sap.username + ':' + sapConfig.sap.password) ||…
1
vote
1 answer

node-soap wssecuritycert with private root certificate authority

Background information. My company requires certs to access soap services. They require me to submit a csr to them and they sign it with their root CA. they then send back the signed certificate with their root ca certificate. Portacle I've got…
1
vote
1 answer

how to deal with and in node-soap?

I'm developing a SOAP client that needs to call a SOAP method which is defined as follows: The documentation for that method expects the following structure for the "geraet" items: How should I call my node-soap method so that the correct SOAP…
Udo G
  • 12,572
  • 13
  • 56
  • 89
1
vote
2 answers

Nodejs Node-SOAP ETIMEDOUT after a few successful calls

i get an ETIMEDOUT error after a few successful calls... Here is the Code: soap.createClient("./WSDL/test.wsdl", function (err, soapClient) { if (err) { throw new Error(err) }; bpData.forEach(function (elementOfArray) …
1
vote
3 answers

Cannot parse response error while consuming SOAP service with node.js

I am trying to consume a SOAP web service using node-soap module. However, I get 'Cannot parse response' error while calling one of the method of the web service. Here is the implementation: var soap = require('soap'); var url =…
katronai
  • 540
  • 1
  • 8
  • 25
1
vote
0 answers

Understanding the input data and arguments in node-soap

I'm using the node-soap module, which lets you connect to web services using SOAP. I've already tested the communication with the Soap-Server(Web Service) via SoapUI and it works great. Currently i can display the input data for a method. In this…
Shan Ratnam
  • 69
  • 1
  • 8
1
vote
0 answers

Cannot read property 'myOperation' found in wsdl - issue while using NodeJs and soap client

In few words, there are around 100 soap web services and I need to expose them as rest via NodeJs. I mean, for each soap service there will a single rest service playing the role of a facade. I install "npm install soap" as explained in…
DemeCarvO
  • 487
  • 4
  • 16
  • 28
1
vote
0 answers

How to pass the OptionSetValue parameter value using soap in Node.js?

We are using soap package to consume SOAP services in Node.js. To invoke method we are using args object to pass the values. var soap = require('soap'); var url = 'http://example.com/wsdl?wsdl'; var args = {name: 'value'}; …
vvsanil
  • 65
  • 1
  • 10
1
vote
0 answers

node-soap how to response a mesage(from server) using soap version 1.2

I'm using node-soap library. my project working with soap version 1.2 from the server side. The problem is when im response a message to the client. I made a debugging in node-soap library and i saw that the namespace of soap was built hard…
1
vote
1 answer

Async functions in meteor server

I'm using vpulim:node-soap to have a soap server running. My meteor server startup contains this amongst various other code: authRequestOperation: function(args,cb,headers,req) { console.log(args); var authResponceObject = {}; …
blueren
  • 2,730
  • 4
  • 30
  • 47
1
vote
0 answers

I would like my QuickBooks WebConnector (QBWC) to connect to my dev server node-soap

There are two servers, my development server and the server Quick Books is currently installed on. This is my .QWC file that is saved on the Quick Books server.
jonhill13
  • 11
  • 2
1
vote
0 answers

Getting error: "Unexpected wrapper element found" when trying to call a webservice function where webservice uses WSSecurityCert

I am using meteor.js. I am trying to call a function of a webservice that uses WSSecurityCert. I created a signed key pair using openssl and sent the public key to the sever administrator so that they include it in their keystore, which they say…
yusha uzumo
  • 211
  • 1
  • 4
  • 15
1
vote
1 answer

SOAP API request works with Boomerang, but not with node-soap

I am trying to access the SOAP API which I am able to do using Boomerang easily. Here is the format of the request:
Samarth Agarwal
  • 2,044
  • 8
  • 39
  • 79
1
vote
1 answer

Is it possible to access Microsoft Dynamics NAV Web service from NodeJS?

I am using node-soap lib to create a soap client. On NAV side, Credential Type is Windows. When I am trying to access NAV Soap Web Service from NodeJS, It is giving me Error:401 (Access Denied). Here is the code what I am using in my…
Pritam
  • 685
  • 1
  • 14
  • 29
1
vote
0 answers

Problems Consuming a WSDL with Node-soap

See below for TL;DR! Having trouble consuming a WSDL with node-soap. I've tried with other WSDLs (examples found online) and they work just fine - with this particular one, however, I run in to a myriad of problems. I'm using soap-as-promised, which…
Ryan Spicer
  • 501
  • 3
  • 18