ksoap会话Web服务

时间:2012-09-30 20:27:13

标签: android android-ksoap2

如何使用kso​​ap维护会话状态?我需要一种从asp.net Web服务接收和发送唯一SessionID的方法。

所以我写了一个简单的Web服务,但结果总是1 ....

[ScriptMethod]
[WebMethod(EnableSession = true)]
public string Calculate()
{
    if (Session["example"] == null) { Session["example"] = 0; }
    int r = Convert.ToInt32(Session["example"]);
    r = r + 1;
    Session["example"] = r;
    return Session["example"].ToString();   
}

我知道我需要从服务器发送回来的Cookie中的SessionID,并在每次调用该服务时使用它,但不知道该怎么做。我正在从Android应用程序拨打电话

0 个答案:

没有答案