使用 https 与 .net Web 服务通信
我有一个 Android 应用程序,它使用自签名服务器证书通过 TLS 上的 http 与 .net Web 服务进行通信。现在我试图弄清楚如何在 Blackberry 手机中完成类似的事情(将服务器证书导入应用程序并使用 http get 协议与 .net Web 服务对话)。
阅读文章 Blackberry 对 HTTPS 的支持,我的印象是它可能比 Android 更复杂(例如,在电话和 Web 服务器之间拥有企业服务器和 MDS)。我可以使用直接 TCP 连接吗?
I have an Android app that talks to .net web service via http over TLS using self-signed server certificate. Now I am trying to figure out how I can accomplish the similar things (Import server certificate into the app and use http get protocol to talk to .net web service) in Blackberry phone.
Reading an article Blackberry support for HTTPS, my impression was that it might be more complex than in Android (for example, having Enterprise server and MDS between a phone and web server). Can I use Direct TCP Connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
HttpsConnection cons=(HttpsConnection) Connector.open("https://xyz.com");
You can use
HttpsConnection cons=(HttpsConnection) Connector.open("https://xyz.com");