0

我们有数据服务设置,我们想在我们的 jaggery 应用程序中调用这个数据服务。

这是我们的 Jaggery 代码:

function invokeWS() {
var ws = require("ws");
var ds = ws.WSRequest();
var options = new Array();
options.useSOAP = 1.2;
options.action = "urn:VerifyUserSession";
var payload = '<p:VerifyUserSession xmlns:p="http://..."><!--Exactly 1 occurrence--> <xs:SESSIONID xmlns:xs="http://...">fb9ecf05-751b-4eff-b454-11a9bee44be1</xs:SESSIONID> </p:VerifyUserSession>';
log.info(payload);
var result;
try {
    ds.open(options, 'http://localhost:9765/services/accountManagementDS', false);
    ds.send(payload);
    result = ds;
}
catch (e){
    return 'error';
}

return result.responseText;

}

以下是“TryIt”服务中数据服务的样子:

<body>
   <p:VerifyUserSession xmlns:p="http://...">
      <!--Exactly 1 occurrence-->
      <xs:SESSIONID xmlns:xs="http://...">?</xs:SESSIONID>
   </p:VerifyUserSession>
</body>

我做错什么了吗?ds.open() 似乎会引发错误

4

1 回答 1

1

您必须将 WSRequest 初始化为,

var ds = new ws.WSRequest();
于 2013-06-15T03:19:58.490 回答