如何在Grails,Groovy或Java中通过https使用Web服务。我有以下代码在PHP中连接。我有wsdl和.pem文件。
$client = new SoapClient(
"http://localhost:8081/axis2/services/SomeWebService?wsdl",
array(
"local_cert" => "C:\ws\MyProject\php\cert.pem",
"trace" => 1));
Java中是否有一种方法可以在SOAP客户端中指定.pem文件?