我用eclipse生成了一个cxf webservice客户端。当服务通过http(wsdl url = http://example.com:8080/services/myservice.wsdl)提供时,它工作正常,但当我尝试将其移动到https(wsdl url = https://example.com/services/myservice.wsdl)时,我的连接超时。
当我查看堆栈跟踪时,我可以看到客户端仍在尝试通过端口8080连接http:
Caused by: java.net.ConnectException: ConnectException invoking **http://example.com:8080/services/myservice.wsdl**: Connection timed out: connect
我有什么特别的配置来调用https的网络服务?知道为什么它一直试图在端口8080上连接http?
由于