本机iOS应用程序使用Worklight API和带有HTTP适配器的JSON解析器进行开发

时间:2015-05-27 10:44:07

标签: objective-c ibm-mobilefirst worklight-adapters worklight-server

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);
}

有人可以为此提供帮助吗?

提前致谢

0 个答案:

没有答案