xfire实现的webservice+spring实例

我需要一个xfire框架实现的一个webservice和spring集成的详细实例,今天弄了半天,老报BUG,哪位高手有,给我共享一下,感激不尽!!在线等... 我需要一个xfire框架实现的一个webservice和spring集成的详细实例,今天弄了半天,老报BUG,哪位高手有,给我共享一下,感激不尽!! 在线等 展开
 我来答
匿名用户
2013-09-14
展开全部
首先要配置好web.xml<servlet>
<servlet-name>remoting</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>4</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>remoting</servlet-name>
<url-pattern>/remoting/*</url-pattern>
</servlet-mapping>还要在web.xml中加载xfire<context-param>
<param-name>contextConfigLocation</param-name>
<param-value> classpath:org/codehaus/xfire/spring/xfire.xml
</param-value>
</context-param>然后要配置remoting-servlet.xml<bean name="/werbservice接口名"
class="org.codehaus.xfire.spring.remoting.XFireExporter">
<property name="serviceFactory">
<ref bean="xfire.serviceFactory" />
</property>
<property name="xfire">
<ref bean="xfire" />
</property>
<property name="serviceBean">
<ref bean="webservice接口类名" />
</property>
<property name="serviceClass">
<value>webservice接口类地址</value>
</property>
</bean>配置好之后,基本上就没问题了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式