Node.js 使用 soap 模塊請求 WebService 服務接口

項目開發中須要請求webservice服務,前端主要使用node.js 做爲運行環境,所以能夠使用soap進行請求。前端

使用SOAP請求webservice服務的流程以下:node

一、進入項目目錄,安裝 soap 模塊web

> npm install soap --save-devnpm

二、在項目的 node_modules 目錄下找到soap模塊下的 lib > client.js,segmentfault

修改代碼:ui

soapAction = ((ns.lastIndexOf("/") !== ns.length - 1) ? ns + "/" : ns) + name;

爲:url

soapAction = method.soapAction || (((ns.lastIndexOf('/') !== ns.length - 1) ? ns + '/': ns) + name);

 三、請求代碼spa

 1   var soap = require('soap');
 2   var url = 'http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl';
 3   var args = { byProvinceName: '浙江'};
 4   soap.createClient(url, function(err, client) {
 5     client.getSupportCity(args, function(err, result) {
 6       if (err) {
 7         console.log(err);
 8       }else {
 9         console.log(result);
10       }  
11     });
12   });

四、運行代碼,在命令行窗口查看結果.net

 

除了soap模塊,還有strong-soap, easysoap 等模塊均可以請求webservice服務。使用方法相似。命令行

關於webservice、SOAP、WSDL的相關知識,能夠查看如下連接:

http://blog.csdn.net/u014511737/article/details/46986389

http://www.jianshu.com/p/5443f90e36de

https://segmentfault.com/a/1190000006807566

http://download.csdn.net/detail/zxktxj/8643733

相關文章
相關標籤/搜索