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的主要内容,如果未能解决你的问题,请参考以下文章
彻底了解|利用Apache CXF框架开发WebService