WLProcedureInvocationData *myInvocationData = [[WLProcedureInvocationData alloc] initWithAdapterName:@"myRESTAdapter" procedureName:@"getAgents"];
MyInvokeListener *invokeListener = [[MyInvokeListener alloc] initWithController: self];
[[WLClient sharedInstance] invokeProcedure:myInvocationData withDelegate:invokeListener];
[__ NSDictionaryI WLJSONRepresentation]:无法识别的选择器发送到 实例
我正在尝试使用Worklight中的HTTP适配器使用JSON服务获取响应。当我部署API并继续进行时,我得到上述异常..
注意:该服务仅用于获取任何参数解析的详细信息...
适配器代码:
function getAgents() {
var input = {
method : 'get',
returnedContentType : 'json',
path : 'myApp/agents'
};
return WL.Server.invokeHttp(input);
}
有人可以为此提供帮助吗?
提前致谢