method not found error while accessing web service using asihttprequest

发布于 2022-09-06 13:50:03 字数 2199 浏览 13 评论 0

I've created SOAP web service that would be accessible from Objective-C environment with ASIHTTPRequest library using JSON-RPC bridge . When I tested it from JavaScript everything where OK. But from Objective-C I got an error

 {"id":2,"error":{"code":591,"msg":"method not found (session may have timed out)"}}

Web Service:

@WebService() 
public class UserWS {

/**
 * User data list - id, first name, last name, service number, username
 */
/**
 * Provides web service to get current user with waiter role data.
 */
@WebMethod(operationName = "getUsers")
public String[][] getUsers() {
    String[][] userDara = null;
    try {
        Context context = POSNamingService.getContext();
        Users us = (Users) context.lookup("business.Users");
        List<User> users = us.getWaiterUsers();
        userDara = new String[users.size()][5];
        for (int i = 0; i < userDara.length; i++) {
            User user = users.get(i);
            userDara[i][0] = String.valueOf(user.getUserNo());
            userDara[i][1] = user.getFirstName();
            userDara[i][2] = user.getLastName();
            userDara[i][3] = user.getServiceNo();
            userDara[i][4] = user.getLogin();
        }
    } catch (NamingException ex) {
        Logger.getLogger(UserWS.class.getName()).log(Level.SEVERE, null, ex);
    }
    return userDara;
}

Bridge class:

public class Bridge {

private UserWS userWS = new UserWS();

public String[][] getUsers(int i) {
    return userWS.getUsers();
}

Objecitive-C side:

(IBAction)clickDownloadButton:(id)sender {
NSURL *url = [NSURL URLWithString:@"http://10.200.0.24:1445/TestRPC-war/JSONRPC"];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
NSString *sendData = [NSString stringWithFormat:@"{\"method\": \"getUsers\"}"];
request appendPostData:[sendData dataUsingEncoding:NSUTF8StringEncoding]];
[request setRequestMethod:@"GET"];
[request setDelegate:self];
[request setDidFailSelector:@selector(requestWentWrong:)];
[request setTimeOutSeconds:60]; 
[request startAsynchronous];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲鸠 2022-09-13 13:50:03

Your ASIHTTPRequest instance request is autoreleased. That means that it will be deallocated pretty much as soon as your -clickDownloadButton: method ends, which is probably terminating your session early.

Instead, you should make request an instance variable, allocate it within your method here (but don't autorelease it), then release it when the request has completed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文