web-dev-qa-db-ja.com

Node.js:SOAP XML Webサービスの使用方法

Node.jsでSOAP XML Webサービスを使用する最良の方法は何でしょうか

ありがとう!

86
WHITECOLOR

それほど多くのオプションはありません。

次のいずれかを使用することをお勧めします。

75
Juicy Scripter

代替手段は次のようになると思います:

  • soapUI( http://www.soapui.org )などのツールを使用して、入力および出力xmlメッセージを記録します
  • ノードリクエスト( https://github.com/mikeal/request )を使用して、入力xmlメッセージを形成し、Webサービスにリクエストを送信(POST)します(ejs( http://embeddedjs.com/ )または口ひげ( https://github.com/janl/mustache.js )はここであなたを助けることができます)そして最後に
  • xMLパーサーを使用して、応答データをJavaScriptオブジェクトにデシリアライズします

はい、これはかなり汚れた低レベルのアプローチですが、問題なく動作するはずです

30
tmanolatos

node-soapが機能しない場合は、noderequestモジュールを使用し、必要に応じてxmlをjsonに変換します。

私のリクエストはnode-soapで機能していませんでした。また、私のモジュールを超えた有料サポート以外のモジュールのサポートはありません。だから私は次のことをしました:

  1. linuxマシンで SoapUI をダウンロードしました。
  2. wSDL xmlをローカルファイルにコピーしました
    curl http://192.168.0.28:10005/MainService/WindowsService?wsdl > wsdl_file.xml
  3. SoapUIでFile > New Soap projectにアクセスし、wsdl_file.xmlをアップロードしました。
  4. ナビゲーターでサービスの1つを展開し、リクエストを右クリックしてShow Request Editorをクリックしました。

そこからリクエストを送信し、それが機能することを確認し、RawまたはHTMLデータを使用して外部リクエストを作成することもできます。

私のリクエストのためのSoapUIから生

POST http://192.168.0.28:10005/MainService/WindowsService HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: "http://Main.Service/AUserService/GetUsers"
Content-Length: 303
Host: 192.168.0.28:10005
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.1.1 (Java 1.5)

SoapUIからのXML

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:qtre="http://Main.Service">
   <soapenv:Header/>
   <soapenv:Body>
      <qtre:GetUsers>
         <qtre:sSearchText></qtre:sSearchText>
      </qtre:GetUsers>
   </soapenv:Body>
</soapenv:Envelope> 

上記を使用して、次のnoderequestを作成しました。

var request = require('request');
let xml =
`<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:qtre="http://Main.Service">
   <soapenv:Header/>
   <soapenv:Body>
      <qtre:GetUsers>
         <qtre:sSearchText></qtre:sSearchText>
      </qtre:GetUsers>
   </soapenv:Body>
</soapenv:Envelope>`

var options = {
  url: 'http://192.168.0.28:10005/MainService/WindowsService?wsdl',
  method: 'POST',
  body: xml,
  headers: {
    'Content-Type':'text/xml;charset=utf-8',
    'Accept-Encoding': 'gzip,deflate',
    'Content-Length':xml.length,
    'SOAPAction':"http://Main.Service/AUserService/GetUsers"
  }
};

let callback = (error, response, body) => {
  if (!error && response.statusCode == 200) {
    console.log('Raw result', body);
    var xml2js = require('xml2js');
    var parser = new xml2js.Parser({explicitArray: false, trim: true});
    parser.parseString(body, (err, result) => {
      console.log('JSON result', result);
    });
  };
  console.log('E', response.statusCode, response.statusMessage);  
};
request(options, callback);
16
jtlindsey

Node.jsを使用して生のXMLをSOAPサービスに送信する最も簡単な方法は、Node.js http実装を使用することです。こんな感じです。

var http = require('http');
var http_options = {
  hostname: 'localhost',
  port: 80,
  path: '/LocationOfSOAPServer/',
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded',
    'Content-Length': xml.length
  }
}

var req = http.request(http_options, (res) => {
  console.log(`STATUS: ${res.statusCode}`);
  console.log(`HEADERS: ${JSON.stringify(res.headers)}`);
  res.setEncoding('utf8');
  res.on('data', (chunk) => {
    console.log(`BODY: ${chunk}`);
  });

  res.on('end', () => {
    console.log('No more data in response.')
  })
});

req.on('error', (e) => {
  console.log(`problem with request: ${e.message}`);
});

// write data to request body
req.write(xml); // xml would have been set somewhere to a complete xml document in the form of a string
req.end();

Xml変数は、文字列形式の生のxmlとして定義します。

ただし、Node.jsを介してSOAPサービスと対話し、生のxmlを送信するのではなく、通常のSOAP呼び出しを行う場合は、Node.jsライブラリのいずれかを使用します。 node-soap が好きです。

14
Halfstop

Soap、wsdlおよびNode.jsを使用することができました。npm install soapでsoapをインストールする必要があります

リモートクライアントが使用するsoapサービスを定義するserver.jsというノードサーバーを作成します。この石鹸サービスは、体重(kg)と身長(m)に基づいてボディマスインデックスを計算します。

const soap = require('soap');
const express = require('express');
const app = express();
/**
 * this is remote service defined in this file, that can be accessed by clients, who will supply args
 * response is returned to the calling client
 * our service calculates bmi by dividing weight in kilograms by square of height in metres
 */
const service = {
  BMI_Service: {
    BMI_Port: {
      calculateBMI(args) {
        //console.log(Date().getFullYear())
        const year = new Date().getFullYear();
        const n = args.weight / (args.height * args.height);
        console.log(n);
        return { bmi: n };
      }
    }
  }
};
// xml data is extracted from wsdl file created
const xml = require('fs').readFileSync('./bmicalculator.wsdl', 'utf8');
//create an express server and pass it to a soap server
const server = app.listen(3030, function() {
  const Host = '127.0.0.1';
  const port = server.address().port;
});
soap.listen(server, '/bmicalculator', service, xml);

次に、client.jsで定義されたsoapサービスを使用するserver.jsファイルを作成します。このファイルは、SOAPサービスの引数を提供し、SOAPのサービスポートとエンドポイントでURLを呼び出します。

const express = require('express');
const soap = require('soap');
const url = 'http://localhost:3030/bmicalculator?wsdl';
const args = { weight: 65.7, height: 1.63 };
soap.createClient(url, function(err, client) {
  if (err) console.error(err);
  else {
    client.calculateBMI(args, function(err, response) {
      if (err) console.error(err);
      else {
        console.log(response);
        res.send(response);
      }
    });
  }
});

Wsdlファイルは、リモートWebサービスへのアクセス方法を定義するデータ交換用のxmlベースのプロトコルです。 wsdlファイルを呼び出しますbmicalculator.wsdl

<definitions name="HelloService" targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl" 
  xmlns="http://schemas.xmlsoap.org/wsdl/" 
  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
  xmlns:tns="http://www.examples.com/wsdl/HelloService.wsdl" 
  xmlns:xsd="http://www.w3.org/2001/XMLSchema">

  <message name="getBMIRequest">
    <part name="weight" type="xsd:float"/>
    <part name="height" type="xsd:float"/>
  </message>

  <message name="getBMIResponse">
    <part name="bmi" type="xsd:float"/>
  </message>

  <portType name="Hello_PortType">
    <operation name="calculateBMI">
      <input message="tns:getBMIRequest"/>
      <output message="tns:getBMIResponse"/>
    </operation>
  </portType>

  <binding name="Hello_Binding" type="tns:Hello_PortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="calculateBMI">
      <soap:operation soapAction="calculateBMI"/>
      <input>
        <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:examples:helloservice" use="encoded"/>
      </input>
      <output>
        <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:examples:helloservice" use="encoded"/>
      </output>
    </operation>
  </binding>

  <service name="BMI_Service">
    <documentation>WSDL File for HelloService</documentation>
    <port binding="tns:Hello_Binding" name="BMI_Port">
      <soap:address location="http://localhost:3030/bmicalculator/" />
    </port>
  </service>
</definitions>

それが役に立てば幸い

13
Kim .J

必要なエンドポイントの数によっては、手動で行う方が簡単な場合があります。

私は10個のライブラリ「soap nodejs」を試しましたが、最終的に手動で行います。

9
dam1

10個以上のトラッキングWebApi(Tradetracker、Bbelboon、Affilinet、Webgainsなど)で「soap」パッケージ( https://www.npmjs.com/package/soap )を使用しました。

問題は通常、プログラマーが接続または認証するためにリモートAPIが必要とするものについてあまり調査していないという事実から生じます。

たとえば、PHPはHTTPヘッダーから自動的にCookieを再送信しますが、 'node'パッケージを使用する場合は、明示的に設定する必要があります(たとえば 'soap-cookie'パッケージによって)...

8
smentek

ノードネットモジュールを使用して、Webサービスへのソケットを開きました。

/* on Login request */
socket.on('login', function(credentials /* {username} {password} */){   
    if( !_this.netConnected ){
        _this.net.connect(8081, '127.0.0.1', function() {
            logger.gps('('+socket.id + ') '+credentials.username+' connected to: 127.0.0.1:8081');
            _this.netConnected = true;
            _this.username = credentials.username;
            _this.password = credentials.password;
            _this.m_RequestId = 1;
            /* make SOAP Login request */
            soapGps('', _this, 'login', credentials.username);              
        });         
    } else {
        /* make SOAP Login request */
        _this.m_RequestId = _this.m_RequestId +1;
        soapGps('', _this, 'login', credentials.username);          
    }
});

SOAPリクエストを送信する

/* SOAP request func */
module.exports = function soapGps(xmlResponse, client, header, data) {
    /* send Login request */
    if(header == 'login'){
        var SOAP_Headers =  "POST /soap/gps/login HTTP/1.1\r\nHost: soap.example.com\r\nUser-Agent: SOAP-client/SecurityCenter3.0\r\n" +
                            "Content-Type: application/soap+xml; charset=\"utf-8\"";        
        var SOAP_Envelope=  "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
                            "<env:Envelope xmlns:env=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:SOAP-ENC=\"http://www.w3.org/2003/05/soap-encoding\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:n=\"http://www.example.com\"><env:Header><n:Request>" +
                            "Login" +
                            "</n:Request></env:Header><env:Body>" +
                            "<n:RequestLogin xmlns:n=\"http://www.example.com.com/gps/soap\">" +
                            "<n:Name>"+data+"</n:Name>" +
                            "<n:OrgID>0</n:OrgID>" +                                        
                            "<n:LoginEntityType>admin</n:LoginEntityType>" +
                            "<n:AuthType>simple</n:AuthType>" +
                            "</n:RequestLogin></env:Body></env:Envelope>";

        client.net.write(SOAP_Headers + "\r\nContent-Length:" + SOAP_Envelope.length.toString() + "\r\n\r\n");
        client.net.write(SOAP_Envelope);
        return;
    }

SOAP応答の解析、モジュールを使用-xml2js

var parser = new xml2js.Parser({
    normalize: true,
    trim: true,
    explicitArray: false
});
//client.net.setEncoding('utf8');

client.net.on('data', function(response) {
    parser.parseString(response);
});

parser.addListener('end', function( xmlResponse ) {
    var response = xmlResponse['env:Envelope']['env:Header']['n:Response']._;
    /* handle Login response */
    if (response == 'Login'){
        /* make SOAP LoginContinue request */
        soapGps(xmlResponse, client, '');
    }
    /* handle LoginContinue response */
    if (response == 'LoginContinue') {
        if(xmlResponse['env:Envelope']['env:Body']['n:ResponseLoginContinue']['n:ErrCode'] == "ok") {           
            var nTimeMsecServer = xmlResponse['env:Envelope']['env:Body']['n:ResponseLoginContinue']['n:CurrentTime'];
            var nTimeMsecOur = new Date().getTime();
        } else {
            /* Unsuccessful login */
            io.to(client.id).emit('Error', "invalid login");
            client.net.destroy();
        }
    }
});

それが誰かを助けることを願って

5
Vince Lowe
5
euroblaze

Kim .J's solution :に追加すると、ホワイトスペースエラーを回避するためにpreserveWhitespace=trueを追加できます。このような:

soap.CreateClient(url,preserveWhitespace=true,function(...){
0
J.Aliaga

Wsdlrdrも使用できます。 EasySoapは基本的にwsdlrdrをいくつかの追加メソッドで書き直したものです。 easysoapには、wsdlrdrで利用可能なgetNamespaceメソッドがないことに注意してください。

0
user10152282

SOAPが初めてで、簡単な説明とガイドが必要な場合は、この素晴らしいメディア 記事 を強くお勧めします。

node-soappackage を使用して、この単純な tutorial を使用することもできます。

0
MajidJafari