如何使用ksoap维护会话状态?我需要一种从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应用程序拨打电话