我正在开发一个android应用程序来与需要ssl连接的web服务通信。为此,我想使用httpstranportse,但找不到关于如何使用该类的教程。
我正在尝试构建一个新实例,但我不知道必须传递给构造函数的确切信息。
我的一行代码:
httpstransportse httpstransport=新的httpstransporte(“地址”,端口,????,超时);
应该在哪根弦上????地点?
如果我换了?????by“”或null,发生ioexception。
我想?????应该是客户证书。对吗?
有人有关于httpstranportse的教程吗?有什么有用的链接吗?
最佳答案
httpstranportse中的此代码应该有助于:
public HttpsTransportSE (String host, int port, String file, int timeout) {
super(HttpsTransportSE.PROTOCOL + "://" + host + ":" + port + file);
this.host = host;
this.port = port;
this.file = file;
this.timeout = timeout;
}
所以要达到https://MyServer:8080/MyService
你呼叫:
HttpsTransportSE("MyServer", 8080, "/MyService", timeout);