Android Asynchronous Http Client "Invalid cookie header" Error -


i trying use http post request login, server response ok in log there multiple entries this:

w/responseprocesscookies﹕  invalid cookie header: "set-cookie: _boss_session=2e3aef5b7a0ffc7946127f791223aea6e09dfbcc; version=1;  expires=thu, 21-may-2015 14:42:47 gmt; max-age=525600; path=/". unable parse expires attribute: thu 

my client:

public static void get(string url, requestparams params, asynchttpresponsehandler responsehandler){     mclient.get(getabsoluteurl(url), params, responsehandler); }  public static void post(string url, requestparams params, asynchttpresponsehandler responsehandler){     mclient.post(getabsoluteurl(url), params, responsehandler); }  private static string getabsoluteurl(string relativeurl){     return url + relativeurl; } 

and use client:

client.post("tools/ident/login", new requestparams(loginparams), responsehandler); 

how can solve problem ?


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -