我正在尝试在 WSO2 AS 5.1.0 中创建混搭。我已经成功地创建了一个简单的 HelloWorld 服务,但是当我尝试将其他服务集成到其中时,我得到了一个错误。
这是我的 HelloWorld 服务:
this.documentation = "This is a test Hello World service";
system.include("HelloStub.js");
hello.documentation = "say hello"
hello.inputTypes = {"user": "string"}
hello.outputType = "string";
function hello(user){
try{
var response = services["admin/testmashup"].operations["sayMyName"](user);
}catch(e){
return "Danger, Robinson! " + e.toString()
}
return "Hello, there! " + response;
}
function whoAreYou(){
try{
var response = services["admin/testmashup"].operations["toString"]();
}catch(e){
return "Danger, Robinson! " + e.toString()
}
return "Hello! " + response;
}
这就是admin/testmashup
服务
this.serviceName = "testmashup";
this.documentation = "Test mashup service" ;
toString.documentation = "say something" ;
toString.inputTypes = { /* no arguments */ };
toString.outputType = "string";
function toString()
{
return "Hi, my name is testmashup";
}
sayMyName.documentation = "Make me feel happy";
sayMyName.inputTypes = {"myName":"string"};
sayMyName.outputType = "string";
function sayMyName(myName){
return "Your very beautiful name is " + myName;
}
我必须注意,当我调用该admin/testmashup
服务时,它按预期工作。
该文件HelloStub.js
是由 WSO2 申请者服务器生成的 Javascript (E4X) 存根。
当我测试whoAreYou
没有参数的操作时,我得到以下响应:
<ws:whoAreYouResponse xmlns:ws="http://services.mashup.wso2.org/helloWorld?xsd">
<return xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:js="http://www.wso2.org/ns/jstype" js:type="string" xsi:type="xs:string">Hello! <ws:toStringResponse xmlns:ws="http://services.mashup.wso2.org/testmashup?xsd"><return>Hi, my name is testmashup</return></ws:toStringResponse></return>
</ws:whoAreYouResponse>
我可以看到Hi, my name is testmashup
编码响应中的文本。但是当我尝试hello
使用以下 xml 调用时:
<body>
<p:hello xmlns:p="http://services.mashup.wso2.org/helloWorld?xsd">
<!--Exactly 1 occurrence-->
<user>John</user>
</p:hello>
</body>
我收到以下错误:
<ws:helloResponse xmlns:ws="http://services.mashup.wso2.org/helloWorld?xsd">
<return>Danger, Robinson! org.wso2.carbon.CarbonException: Invalid input for the payload in WSRequest Hostobject : John</return>
</ws:helloResponse>
在过去的几天里,我试图完成这项工作,并在整个地方搜索了一个答案,但我似乎找不到它。官方文档没有提供使用具有一个或多个参数的操作的外部 Web 服务存根的示例。
另外,如果可能的话,我想知道如何从 javascript 混搭中使用 REST-JSON 服务。
有任何想法吗?