在android中与httpclient建立安全连接
我的 defaultHttpClient
有问题。
我必须连接到使用 HTTPS 连接的服务器。我发现 HttpClient
默认使用 TLS
安全协议,而我要连接的服务器不支持它。
我无法更改此设置,我被迫更改应用程序中的安全协议!
我该怎么做?
I have a problem with my defaultHttpClient
.
I must do a connection to a server that use an HTTPS connection. I have discovered that HttpClient
use by default the TLS
security protocol and the server where i want to connect does not support it.
I can't change this and I am forced to change my security protocol in my application!
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下这个客户端,它对我有很大帮助。
Try this client it helped me alot once.
这似乎不起作用,但我通过添加方法解决了它:
在创建我的个人
SSLSocket
现在一切似乎都有效!
This does not seems to work, but I have solved it by adding the method:
At the creation of my personal
SSLSocket
Now all seems to work!