首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >使用node-soap在soap请求中创建了重复的名称空间

使用node-soap在soap请求中创建了重复的名称空间
EN

Stack Overflow用户
提问于 2017-11-15 12:15:04
回答 1查看 414关注 0票数 2

我使用node-soap库在节点js中调用soap请求。

请求负载格式如下:

代码语言:javascript
复制
<soapenv:Envelope >
   <soapenv:Header/>
   <soapenv:Body>
      <typ:uploadFileToUcm>
         <typ:document>
            <erp:Content></erp:Content>
            <erp:FileName>?</erp:FileName>
            <!--Optional:-->
            <erp:ContentType>?</erp:ContentType>
            <!--Optional:-->
            <erp:DocumentTitle>?</erp:DocumentTitle>
            <!--Optional:-->
            <erp:DocumentAuthor>?</erp:DocumentAuthor>
            <!--Optional:-->
            <erp:DocumentSecurityGroup>?</erp:DocumentSecurityGroup>
            <!--Optional:-->
            <erp:DocumentAccount>?</erp:DocumentAccount>
            <!--Optional:-->
            <erp:DocumentName>?</erp:DocumentName>
            <!--Optional:-->
            <erp:DocumentId>?</erp:DocumentId>
         </typ:document>
      </typ:uploadFileToUcm>
   </soapenv:Body>
</soapenv:Envelope>

为此,我创建了如下参数:

代码语言:javascript
复制
var args = {
  document : {
    Content: byteArray, //create byte array to assign content
    FileName: 'Abc12341',
    ContentType: 'zip',
    DocumentTitle: 'Abc12341',
    DocumentAuthor: 'Abc12341',
    DocumentSecurityGroup: 'abc',
    DocumentAccount: 'c/c/c',
    DocumentName: 'Abc12341'
    //DocumentId :    //no data available in java file
  }
}

并将其作为:

代码语言:javascript
复制
client.method(args, function (err, result) {

});

但在打印client.lastrequest时,有效负载具有重复的名称空间,如下所示:

代码语言:javascript
复制
<soap:Body>
<types:uploadFileToUcm 
    xmlns:types="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/types/" 
    xmlns="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/types/">
    <types:document>
        <ns0:Content xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">UEsDBBQAAAAIAAuEaEue7VBfgQAAAGoBAAAcAAAASW52VHJhbnNhY3Rpb25zSW50ZXJmYWNlLmNzdvPMK0vNK8kvqlTwL0pXCA021AEBIBlgYGBsYGQK5ASXJnnmlcGkMICljmsikDIyMDTXNzTUNzBWMDCwAiMdHd/M4uTUnJzEvNT80mKFoNTk1MyCEuzG6OhYgAhfN3cdI3NLc2MDQ0MdY1MDIwMzM0McNiMBYx0jhLZBB1z9XHi5AFBLAQIUABQAAAAIAAuEaEue7VBfgQAAAGoBAAAcAAAAAAAAAAEAIAAAAAAAAABJbnZUcmFuc2FjdGlvbnNJbnRlcmZhY2UuY3N2UEsFBgAAAAABAAEASgAAALsAAAAAAA==</ns0:Content>
        <ns0:FileName 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/" 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">Abc12341</ns0:FileName>
        <ns0:ContentType 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/" 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">zip</ns0:ContentType>
        <ns0:DocumentTitle 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/" 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">Abc12341</ns0:DocumentTitle>
        <ns0:DocumentAuthor 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/" 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">Abc12341</ns0:DocumentAuthor>
        <ns0:DocumentSecurityGroup 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/" 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">FAFusionImportExport</ns0:DocumentSecurityGroup>
        <ns0:DocumentAccount 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/" 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">scm/inventoryTransaction/import</ns0:DocumentAccount>
        <ns0:DocumentName 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/" 
            xmlns:ns0="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">Abc12341</ns0:DocumentName>
    </types:document>
    </types:uploadFileToUcm>
</soap:Body>

在这里,ns0在每个参数中都在重复。

问题可能出在我传递参数的方式上。

如何解决这个问题?

EN

回答 1

Stack Overflow用户

发布于 2018-01-13 11:20:20

我用node-soap也遇到了同样的问题,所以我使用了不同的节点库,它工作得很好。尝试使用strong-soap,它基于node-soap,但显然是完全重写的,并且具有许多相同的贡献者:https://github.com/strongloop/strong-soap

代码语言:javascript
复制
npm install strong-soap

调用Oracle erp集成SOAP API (importBulkData、uploadFileToUcm等)的代码。除了授权之外,基本相同,如下所示。

代码语言:javascript
复制
var soap = require('strong-soap').soap;

var data = {};
//code to build base64 zip file goes here

var url = 'https://<host>/publicFinancialCommonErpIntegration/ErpIntegrationService?WSDL';
var args = {
    "document": {
        "Content": data,
        "FileName": "glBudgetData.zip",
        "ContentType": "zip",
        "DocumentTitle": "glBudgetData.zip",
        "DocumentAuthor": "casey.brown",
        "DocumentSecurityGroup": "FAFusionImportExport",
        "DocumentAccount": "fin$/budgetBalance$/import$",
        "DocumentName": "UCM91004"
    }
};

var options = {};

soap.createClient(url, options, function(err, client) {
    client.setSecurity(new soap.BasicAuthSecurity('casey.brown', '<your password here>'));
    client.uploadFileToUcm(args, function(err, result) {
        console.log(result);
 });

在命令行中运行,输出为:{ result:'2047316‘},这是导入文件的UCM文档Id。

祝好运!

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/47299272

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档