node-soap 将命名空间添加到信封

问题描述 投票:0回答:3

我正在尝试使用此肥皂服务:http://testws.truckstop.com:8080/v13/Posting/LoadPosting.svc?singleWsdl与节点肥皂,但客户端正在破坏命名空间,我无法找到可行的解决方案。

我相信答案是要么向肥皂信封添加命名空间,要么覆盖肥皂信封。

使用

Soap UI
,请求应如下所示:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:v11="http://webservices.truckstop.com/v11" 
xmlns:web="http://schemas.datacontract.org/2004/07/WebServices">
   <soapenv:Header/>
   <soapenv:Body>
      <v11:GetLoads>
         <v11:listRequest>
            <web:IntegrationId>integrationId</web:IntegrationId>
            <web:Password>password</web:Password>
            <web:UserName>username</web:UserName>
         </v11:listRequest>
      </v11:GetLoads>
   </soapenv:Body>
</soapenv:Envelope>

但是,当我这样做时:

client = soap.createClient(url);
let query = {
        listRequest: {
            Password: password,
            UserName: username,
            IntegrationId: integrationId
        }
    };
let results = client.GetLoads(query);

客户端生成这个xml:

<?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
        xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" 
        xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" 
        xmlns:tns="http://webservices.truckstop.com/v11" 
        xmlns:q1="http://schemas.datacontract.org/2004/07/WebServices.Posting" 
        xmlns:q2="http://schemas.datacontract.org/2004/07/WebServices.Objects" 
        xmlns:q3="http://schemas.datacontract.org/2004/07/WebServices.Posting" 
        xmlns:q4="http://schemas.datacontract.org/2004/07/WebServices.Objects" 
        xmlns:q5="http://schemas.datacontract.org/2004/07/WebServices.Posting" 
        xmlns:q6="http://schemas.datacontract.org/2004/07/WebServices.Objects" 
        xmlns:q7="http://schemas.datacontract.org/2004/07/WebServices.Posting" 
        xmlns:q8="http://schemas.datacontract.org/2004/07/WebServices.Objects" 
        xmlns:q9="http://schemas.datacontract.org/2004/07/WebServices.Posting" 
        xmlns:q10="http://schemas.datacontract.org/2004/07/WebServices.Objects" 
        xmlns:q11="http://schemas.datacontract.org/2004/07/WebServices.Posting" 
        xmlns:q12="http://schemas.datacontract.org/2004/07/WebServices.Objects">
        <soap:Body>
            <GetLoads xmlns="http://webservices.truckstop.com/v11">
                <listRequest>
                    <ns1:IntegrationId>integrationId</ns1:IntegrationId>
                    <ns1:Password>password</ns1:Password>
                    <ns1:UserName>usernam</ns1:UserName>
                </listRequest>
            </GetLoads>
        </soap:Body>
    </soap:Envelope>

此操作失败,因为

IntegrationId
Password
UserName
需要
http://schemas.datacontract.org/2004/07/WebServices
,但信封中未引用命名空间。

我尝试更新客户端以添加命名空间,如此处建议

client.wsdl.definitions.xmlns.ns1 = "http://schemas.datacontract.org/2004/07/WebServices";
client.wsdl.xmlnInEnvelope = client.wsdl._xmlnsMap();

我可以在

client.wsdl.xmlnInEnvelope
中看到命名空间,但它似乎并没有改变实际生成的xml。

是否还需要执行其他步骤来刷新客户端以使用更新后的信封?

我还尝试了覆盖根元素,如下所示

        var wsdlOptions = {
            //namespaceArrayElements: "xmlns:ns1=http://schemas.datacontract.org/2004/07/WebServices"

            "overrideRootElement": {
                "namespace": "xmlns:tns",
                "xmlnsAttributes": [{
                    "name": "xmlns:tns",
                    "value": "http://webservices.truckstop.com/v11"
                }, {
                    "name": "xmlns:ns1",
                    "value": "http://schemas.datacontract.org/2004/07/WebServices"
                }]
            }
        };
        this.loadPostClient = soap.createClient(this.tsConfig.loadPostUrl, wsdlOptions);

这会更改根主体元素:

<soap:Body>
    <xmlns:tns:GetLoads 
        xmlns:tns="http://webservices.truckstop.com/v11" 
        xmlns:ns1="http://schemas.datacontract.org/2004/07/WebServices">
        <listRequest>
            <ns1:IntegrationId>integrationId</ns1:IntegrationId>
            <ns1:Password>password</ns1:Password>
            <ns1:UserName>username</ns1:UserName>
        </listRequest>
    </xmlns:tns:GetLoads>
</soap:Body>

但是远程服务器不理解。

感谢您的阅读!

soap node-soap
3个回答
4
投票

这个答案一直都是正确的

由于自动完成和类似字段,它对我不起作用

client.wsdl.xmlnInEnvelope = client.wsdl._xmlnsMap();

应该是:

client.wsdl.xmlnsInEnvelope = client.wsdl._xmlnsMap();

我遗漏了一个

s
并设置了 xmlnInEnvelope 而不是 xmlnsInEvelope


1
投票

已经过去几年了,但我遇到了向肥皂信封添加自定义属性的类似需求,并想提供替代方案。

在撰写本文时,

_xmlnsMap()
是 WSDL 类上的私有方法,因此您可以自行承担使用它的风险。我总是将私有方法视为开发人员可以更改的对象,而不会通知图书馆消费者,因此我想找到另一种方法,结果证明它是可能的。

TL;DR - 创建您自己的 WSDL 类实例并将其传递给您自己的 Client 类实例。

  • 使用 open_wsdl 方法引入您的 WSDL
  • 使用回调在连接字符串中构建您自己的自定义属性。
  • 将属性分配给公共
    xmlnsInEnvelope
    属性。
  • 返回更新后的 WSDL 实例(我使用了 Promise)。
const fetchWSDL = new Promise<WSDL>((resolve, reject) => {
      // method that returns a WSDL instance from a url/file path
      open_wsdl(this.wsdl, (err: any, wsdl?: WSDL) => {
        // Build custom attributes
        if (wsdl && wsdl.definitions.xmlns) {
          const xmlns: { [key: string]: string } = {
           [your namespaces]: 'values',
          };

          // turn your custom attributes map into a single concatenated string 
          let str = '';
          for (const alias in xmlns) {
            const ns = xmlns[alias];
            str += ' xmlns:' + alias + '="' + ns + '"';
          }

          // Leverage public attribute on WSDL instance to apply our custom attributes
          wsdl.xmlnsInEnvelope = str;

          resolve(wsdl);
        }
        reject(err);
      });
    });

使用更新的 WSDL 实例创建您自己的客户端。
注意:

createClient
方法只是一个方便的包装器,用于创建 WSDL 实例并返回新的 Client 实例。

const ModifiedWSDL = await fetchWSDL;

// Create client with our modified WSDL instance
this.client = new Client(ModifiedWSDL)

// adjust your Client instance as needed

比OP多一点代码,但希望更符合

node-soap
类型,并且如果您计划升级,使用起来更安全。


0
投票

我能够在 Node Soap v1.0.0 中执行此操作,如下所示:

if (!soapClient['wsdl'].xmlnsInEnvelope.includes('xmlns:ns1=')) {
  soapClient['wsdl'].xmlnsInEnvelope += 'xmlns:ns1="http://schemas.datacontract.org/2004/07/WebServices"';
}

为什么采用这种方法?接受的答案给出了此错误:“属性‘_xmlnsMap’是私有的,只能在类‘WSDL’.ts(2341)内访问”,如前所述。

我不知道这种方法与涉及编写您自己的 WSDL 类的其他答案相比的优缺点。我确实知道这很快就能实现,并且似乎适合我的用例。

© www.soinside.com 2019 - 2024. All rights reserved.