我使用wsdlc ANT任务从wsdl创建了一个JAXWS Web服务,并将其部署在Weblogic 10.3.0中.而且我们有一个Sun Java Server 7.0,其中安装了Verisign Server证书并将其配置为将Web服务请求转发到weblogic.
I created a JAXWS webservice from wsdl using wsdlc ANT task and deployed in Weblogic 10.3.0. And we have Sun one Java Server 7.0 where Verisign Server certificate is installed and configured to forward the webservice requests to weblogic.
我使用wsimport ant任务创建了一个JAXWS客户端,以调用Web服务.使用https URL运行客户端时,我可以在weblogic中看到xml请求,并且webservice已成功处理.但是我无法在xml请求/响应中找到任何x509证书的证据.除了使用wsimport生成存根之外,我是否还需要在客户端做任何事情?仅供参考,当通过浏览器查看wsdl时,我可以通过浏览器查看证书详细信息.
I created a JAXWS client using wsimport ant task to invoke the webservice. When running the client using https URL I can see xml request in weblogic and webservice is processed successfully. But I couldnt able to find any evidence of x509 certificate in the xml request/response. Do I need to do anything on the client side apart from generating the stubs using wsimport? FYI when viewing the wsdl through the browser I can see the certificate details through the browser.