cxf webservice请求https

Posted 嘻嘻哈哈

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cxf webservice请求https相关的知识,希望对你有一定的参考价值。

本地java请求https接口,不需要添加证书:

只需要修改配置文件applicationContext-soap-client.xml:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:http="http://cxf.apache.org/transports/http/configuration"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/transports/http/configuration
http://cxf.apache.org/schemas/configuration/http-conf.xsd
">

<http:conduit name="*.http-conduit">
<http:tlsClientParameters disableCNCheck="true" />
</http:conduit>

</beans>

注:需要添加如下内容:

 

以上是关于cxf webservice请求https的主要内容,如果未能解决你的问题,请参考以下文章

使用CXF开发WebService客户端

使用CXF开发WebService客户端

WebService 及 CXF 的进阶讲解

彻底了解|利用Apache CXF框架开发WebService

CXF方式搭建本地webservice服务和soap方式调用踩坑

CXF通过拦截器修改请求报文