如何使用 ksoap 维护会话状态?我需要一种从 asp.net Web 服务接收和发送唯一 SessionID 的方法。
所以我写了一个简单的网络服务,但结果总是 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 应用程序拨打电话