【发布时间】:2012-02-26 11:51:57
【问题描述】:
我在基于 springMVC 的应用程序中使用基于 jax-ws (cxf) 的 SOAP1.1 api。我在我的应用程序 applicationContext.xml 中导入了以下 cxf 文件
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
并通过将其添加到我的项目 applicationContext.xml 来公开我的服务
<jaxws:endpoint id="proxyService" implementor="#proxy" address="/proxyService" />
<bean id="proxy" class="com.aqif.service.ProxyServiceImpl" />
<bean id="ClassModelDAO" class="com.aqif.dao.ClassModelDAOImpl"/>
请告诉我,从 SOAP1.1 升级到 SOAP1.2 需要进行哪些更改
我使用的是 Spring 3.0.5
【问题讨论】:
标签: java soap spring-mvc jax-ws cxf