SSL HttpClient连接中的会话过期错误

堆垛

我正在将网站转换为android应用程序。

相同的代码可用于http URL,并且我可以重复使用相同的会话ID。

但是在https我得到会话过期错误。

               HttpPost get3 = new HttpPost(titleURL);
               entity = new StringEntity("{\"jsonrpc\":\"2.0\",\"method\":\"call\",\"params\":{\"model\":\"job.order\",\"fields\":[\"job_code\",\"sale_order_id\",\"partner_id\",\"ins_postcode\",\"client_order_ref\",\"cust_po_ref_blanket\",\"engineer_id\",\"appointment\",\"state\"],\"domain\":[[\"state\",\"=\",[\"draft\",\"confirmed\",\"installed\",\"onhold\",\"reject\",\"accepted\"]]],\"context\":{\"lang\":\"en_US\",\"tz\":false,\"uid\":1,\"search_default_open_job\":1,\"bin_size\":true},\"offset\":0,\"limit\":80,\"sort\":\"\",\"session_id\":\"3dcfe71efba0403ba454cef4d390f1fb\"},\"id\":\"r105\"}");
               get3.setHeader("Content-Type", "application/json");
               get3.setHeader("Cookie:","session_id=3dcfe71efba0403ba454cef4d390f1fb");
               get3.setEntity(entity);
               trustAll();
               HttpClient client = new DefaultHttpClient();

               responseBody3 = client.execute(get3, responseHandler);

我的logcat错误,

增加 SessionExpiredException(\"Session expired\")\nSessionExpiredException: Session expired\n", "type": "client_exception"}}}

注意:我的登录URL可以正确执行,但是我不能将会话ID重复用于其他URL。

有人帮助我吗?

Vibhor乔普拉

我这样做是为了从https url下载apk文件,您可以根据需要进行修改

步骤1:建立连接后,在第一个Activity中创建DefaultHttpClient的实例。

public static DefaultHttpClient httpClient;

步骤2:首次连接

URL url=new URL(urlToHit);
LoginScreen.httpClient = new DefaultHttpClient();

HttpPost httppost = new HttpPost(url.toString());
HttpResponse response = LoginScreen.httpClient.execute(httppost); 

xr.parse(new InputSource(url.openStream()));

步骤3:现在,对于所有其他连接,使用相同的httpClient例如,在下一个活动中:

URL url=new URL(urlToHit);

HttpPost httppost = new HttpPost(url.toString());
HttpResponse response = LoginScreen.httpClient.execute(httppost); 


HttpEntity entity = response.getEntity();

InputStream instream = null;

if (entity != null) {
instream = entity.getContent();
}
xr.parse(new InputSource(instream)); //SAX parsing

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章