3

我正在尝试让 JAX-WS 与嵌入式 tomcat 7.0 一起使用。
我遵循了一些关于标准 Tomcat 的教程(例如http://www.mkyong.com/webservices/jax-ws/deploy-jax-ws-web-services-on-tomcat/),但我无法找到一个特定的Tomcat embedded。

我确实成功地在服务器上运行了我自己的 servlet,但是当尝试使用包含所有 JAX-WS 注释的类启动它时(以及所有其他注释:web.xml 中的 WSServletContextListener + WSServlet,WEB-INF 中的 sun-jaxws.xml) ,我收到以下错误:

INFO: Initializing ProtocolHandler ["http-bio-80"]
2 oct. 2012 14:48:20 org.apache.catalina.core.StandardService startInternal
INFO: Starting service Tomcat
2 oct. 2012 14:48:20 org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.27
2 oct. 2012 14:48:21 org.apache.catalina.startup.ContextConfig getDefaultWebXmlFragment
INFO: No global web.xml found
2 oct. 2012 14:48:28 com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12 : initialisation du processus découte de contexte JAX-WS
2 oct. 2012 14:48:28 com.sun.xml.ws.transport.http.servlet.WSServletContextListener parseAdaptersAndCreateDelegate
SEVERE: WSSERVLET11 : fail analyzing descriptor : javax.xml.ws.WebServiceException: execution descriptor  "/WEB-INF/sun-jaxws.xml" is missing
javax.xml.ws.WebServiceException: Le descripteur d'exécution "/WEB-INF/sun-jaxws.xml" is missing
at com.sun.xml.ws.transport.http.servlet.WSServletContextListener.parseAdaptersAndCreateDelegate(WSServletContextListener.java:125)
at com.sun.xml.ws.transport.http.servlet.WSServletContextListener.contextInitialized(WSServletContextListener.java:152)

它看起来像一个路径问题,但我不明白缺少什么,因为同一文件夹 WEB-INF 文件夹中的 web.xml 已正确加载...这是我的应用程序的启动代码:尝试 {

        Tomcat tomcat = new Tomcat();
        tomcat.setBaseDir(".");
        tomcat.setPort(80);

        tomcat.getHost().setAppBase("src/main/webapp");
        Context context = tomcat.addWebapp("/Test", ".");
        File configFile = new File(tomcat.getHost().getAppBase() + "/META-INF/context.xml");
        context.setConfigFile(configFile.toURI().toURL());

        tomcat.enableNaming();

        StandardServer server = (StandardServer)tomcat.getServer();
        AprLifecycleListener listener = new AprLifecycleListener();
        server.addLifecycleListener(listener);

        tomcat.start();
        tomcat.getServer().await();

    } catch (Exception e) {

        e.printStackTrace();
    }

感谢您的帮助或建议...

4

0 回答 0