0

我正在使用 IBM worklight,并希望使用 http 适配器来使用 .NET Web 服务。得到错误:“错误”:[“运行时:运行时:Http请求失败:java.net.UnknownHostException:

xml 中的域将其完整键入为 [http://localhost/Service/Service1.asmx]

function HelloWorld() { var input = { method : 'get', returnedContentType : 'xml', path : "HelloWorld", transformation : { type : 'xslFile', xslFile : 'filtered.xsl' } }; 返回 WL.Server.invokeHttp(输入); }

4

2 回答 2

0

In adapter's XML

<protocol>http</protocol>

<host>localhost</host>

<port>80</port>

In adapters JS use path:"Service/Service1.asmx"

Also, make sure that your service returns XML and your filtered.xsl contains a valid transformation for returned XML (otherwise just remote transformation property).

于 2013-04-26T15:06:30.050 回答
0

我认为您正在犯与几分钟前相同的错误。您的 HelloWorld 函数不完整。我建议您是否根据以下问题参考客户端构建消息的方式:IBM Worklight HTTP Adapter SOAP response: XSL transformation failed

于 2014-07-26T23:35:22.153 回答