会话cookie在模拟器上工作,但不是真正的设备

时间:2010-10-15 00:55:50

标签: android session cookies httpclient cookiestore

我正在使用android 2.1开发一个应用程序。

使用会话cookie登录RESTful Web服务时遇到问题。代码在模拟器上工作正常,但是当我在HTC Magic上运行时,cookie逻辑不起作用。我已经确认魔法是通过列出它们在标题中接收cookie(参见附件)。任何人都可以说为什么cookie存储区是空的,即使它们在标题中也是如此?

  public HttpProvider() {
    Scheme http = new Scheme("http", new PlainSocketFactory(), 80);
    SchemeRegistry registry = new SchemeRegistry();
    registry.register(http);

    client = new DefaultHttpClient(new ThreadSafeClientConnManager((new BasicHttpParams()), registry), new BasicHttpParams());
  }

  public void get(Request request) {
    try {
      HttpGet get = new HttpGet(request.url);
      HttpResponse response = client.execute(get);
      debugListHeaders(response, request.ticket);
      debugListCookies();
    } 
  }

  void debugListHeaders(HttpResponse response, int ticket) {
    Header[] headers = response.getAllHeaders();
    Log.d(LOG, "Printing all headers" + " (" + ticket + ")");
    for (Header header : headers) {
      Log.d(LOG, "Header name: " + header.getName() + ", value: " + header.getValue() + " (" + ticket + ")");
    }
    Log.d(LOG, "All headers have been printed" + " (" + ticket + ")");
  }

  void debugListCookies() {
    Log.d(LOG, "List cookies for connection");
    for (Cookie cookie : client.getCookieStore().getCookies()) {
      Log.d(LOG, 
        "Domain: " + cookie.getDomain() + 
        " Name: " + cookie.getName() + 
        " Path: " + cookie.getPath() + 
        " Value: " + cookie.getValue() + 
        " Expires: " + cookie.getExpiryDate().toString() + 
        " IsExpired: " + (cookie.isExpired(new Date()) ? "true" : "false"));
    }
    Log.d(LOG, "All cookies have been listed");
  }

Thru the emulator:
<snipped header list as it's obviously working>
D/SessionProvider(  257): List cookies for connection
D/SessionProvider(  257): Domain:<snip> Name: S Path: / Value: 75XGSMR3BLLGYM0J Expires: Tue Oct 12 20:24:09 America/Barbados 2010
IsExpired: false
D/SessionProvider(  257): Domain: <snip> Name: lang Path: / Value: en Expires: Tue Oct 12 20:24:09 America/Barbados 2010 IsExpired: false
D/SessionProvider(  257): All cookies have been listed


Thru HTC Magic:
D/HttpProvider(  983): Printing all headers (-192275970)
D/HttpProvider(  983): Header name: Date, value: Thu, 14 Oct 2010 22:44:38 GMT (-192275970)
D/HttpProvider(  983): Header name: Server, value: Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.5 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.0 (-192275970)
D/HttpProvider(  983): Header name: Set-Cookie, value: S=S41GM85A675Z8YQU; path=/; expires=Thu, 14-Oct-2010 23:14:38 GMT (-192275970)
D/HttpProvider(  983): Header name: Set-Cookie, value: U=nibor.yarrum%40gmail.com; path=/; expires=Thu, 14-Oct-2010 23:14:38 GMT (-192275970)
D/HttpProvider(  983): Header name: Set-Cookie, value: lang=en; path=/; expires=Thu, 14-Oct-2010 23:14:38 GMT (-192275970)
D/HttpProvider(  983): Header name: Vary, value: Accept-Encoding (-192275970)
D/HttpProvider(  983): Header name: Keep-Alive, value: timeout=15, max=100 (-192275970)
D/HttpProvider(  983): Header name: Connection, value: Keep-Alive (-192275970)
D/HttpProvider(  983): Header name: Transfer-Encoding, value: chunked (-192275970)
D/HttpProvider(  983): Header name: Content-Type, value: text/html (-192275970)
D/HttpProvider(  983): All headers have been printed (-192275970)
I/HttpProvider(  983): Request completed (-192275970)
D/SessionProvider(  983): List cookies for connection
D/SessionProvider(  983): All cookies have been listed

1 个答案:

答案 0 :(得分:2)

嗯,这原来是apache代码中的狩猎探险。它归结为什么是cookie已经过期,所以cookiestore只是扔掉它们没有任何解释。原来手机上没有“使用网络日期/时间”检查设置。我一做到这一点,应用程序运行良好。它仍然令人费解 - 当地时间设置得当(2分钟内)。

来自org.apache.http.impl.client.BasicCookieStore / addCookie:

94   if (!cookie.isExpired(new Date())) {
95     cookies.add(cookie);