如何在Web应用程序中部署JbossWS CXF

时间:2010-11-24 13:15:03

标签: java web-services cxf jbossws

当我在JBoss app-server上部署我的webapplication时,它无法部署webservice。我正在使用自上而下的方法,并使用wsconsume.bat从我的wsdl-和xsd-files生成必要的文件。然后,我将必要的anottations添加到webservice实现类。但这几乎就是我所知,用户指南中的文档未能描述我应该如何继续。

我在jbossws-cxf.xml和web.xml中尝试了不同的设置。但是webserive无法正确部署。

任何人都可以提出一些观点或指向我描述我的用例的参考实现吗?

1 个答案:

答案 0 :(得分:4)

所以我终于开始工作了。

诀窍是删除jbossws-cxf.xml文件。在web.xml中,应该有一个到webservice实现类的servlet映射。然后自动生成Jbossws-cxf.xml文件并将其存储在tmp目录中。我建议检查这个文件,然后创建jbossws-cxf.xml,以便可以应用自定义。

简而言之,这是最简单形式的配置应如下所示:

WEB-INF / web.xml中:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet>
  <servlet-name>ws-name</servlet-name>
  <servlet-class>org.company.WebServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
  <servlet-name>ws-name</servlet-name>
  <url-pattern>/webservice/endpoint</url-pattern>
</servlet-mapping>
</web-app>

WEB-INF /将JBossWS-cxf.xml:

<beans xmlns='http://www.springframework.org/schema/beans' 
        xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' 
        xmlns:beans='http://www.springframework.org/schema/beans' 
        xmlns:jaxws='http://cxf.apache.org/jaxws' 
        xmlns:soap='http://cxf.apache.org/bindings/soap' 
        xsi:schemaLocation='http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd 
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd'>
    <jaxws:endpoint id='ws-name' 
            address='http://127.0.0.1:8180/webservice/endpoint' 
            implementor='org.company.WebServiceImpl'>
        <jaxws:invoker>
            <bean class='org.jboss.wsf.stack.cxf.InvokerJSE'/>
        </jaxws:invoker>
    </jaxws:endpoint>
</beans>
相关问题