关于部署:JAX-WS 部署错误LocatableWebService 异常:在运行时描述符中找不到类

JAX-WS Deployement error + LocatableWebServiceException: class not found in runtime descriptor

我已经在 Tomcat 中部署了 JAX-WS Web 服务,并且在我重新启动 Tomcat 服务器时。我在控制台上收到此错误。

我已按照此链接中给出的指南将条目放入 web.xml 和 sun-jaxws.xml -
http://www.jroller.com/eldaaran/entry/using_jax_ws_2_0

请指教。

1
2
3
4
5
6
7
8
SEVERE: WSSERVLET11: failed to parse runtime descriptor: com.sun.xml.ws.util.exception.LocatableWebServiceException: class not found in runtime descriptor: webservices.jaxws.Math
at line 6 of jndi:/localhost/jaxws/WEB-INF/sun-jaxws.xml

com.sun.xml.ws.util.exception.LocatableWebServiceException: class not found in runtime descriptor: webservices.jaxws.Math at line 6 of jndi:/localhost/jaxws/WEB-INF/sun-jaxws.xml
        at com.sun.xml.ws.transport.http.DeploymentDescriptorParser.getImplementorClass(DeploymentDescriptorParser.java:525)
        at com.sun.xml.ws.transport.http.DeploymentDescriptorParser.parseAdapters(DeploymentDescriptorParser.java:201)
        at com.sun.xml.ws.transport.http.DeploymentDescriptorParser.parse(DeploymentDescriptorParser.java:132)
        at com.sun.xml.ws.transport.http.servlet.WSServletContextListener.contextInitialized(WSServletContextListener.java:93)


好像找不到类 webservices.jaxws.Math。

我在网上找不到对这个类的任何引用,所以我只能假设它是一个自定义类,或者使用了错误的命名空间。

webservices/jaxws/Math.class 文件吗?


在 sun-jaxws.xml 中是否引用了 Math?我认为 java.lang.Math 被错误命名的可能性略高于 webservices.jaxws.Math 类(我在我的 jax-ws 版本中没有看到副本)。


webservices.jaxws.Math 似乎是您的端点实现类。这个类是否被很好地打包和部署?你确定它在类路径中吗?