Java JAX-WS 2.1验证错误:找不到WS端点指定的SEI

Java JAX-WS 2.1验证错误:找不到WS端点指定的SEI,java,web-services,deployment,websphere,jax-ws,Java,Web Services,Deployment,Websphere,Jax Ws,我有JAX-WS2.1WebService的企业应用程序。在WAS(websphere application server)8.0.0.0(32位)上部署应用程序期间,会发生以下情况: 2/17/12 14:46:38:857 CET 000004b8 WSModuleDescr E WSWS7027E: **JAX-WS Service Descriptions could not be correctly built because of the following error: jav

我有JAX-WS2.1WebService的企业应用程序。在WAS(websphere application server)8.0.0.0(32位)上部署应用程序期间,会发生以下情况:

2/17/12 14:46:38:857 CET 000004b8 WSModuleDescr E WSWS7027E:
**JAX-WS Service  Descriptions could not be correctly built because of the following error:
javax.xml.ws.WebServiceException: Validation error: cannot find SEI specified by the WebService.endpointInterface.**
Implementation class: com.dummy.ws.bean.impl.DummyWSManager; EndpointInterface: com.dummy.ws.bean.DummyWSManagerSei

EndpointEnabler configuration :
    verbose = true
    http.enableRouterSecurity = false
    dummy-ejb.http.contextRoot = /dummyrouter
    dummy-ejb.DummyWSManager.http.urlPattern = /DummyWSManager

可能有什么问题?这个异常非常罕见,我需要知道这个问题的真正原因。我也在JAX-WS中使用类似的应用程序,没有任何问题。

您的端点接口:

@javax.jws.WebService (endpointInterface="xyz")
未指向其端口。
验证端口文件的确切位置,并提供该文件作为端点接口的完整路径。

这两个类文件可用吗?i、 例如“com.dummy.ws.bean.impl.DummyWSManager”和“com.dummy.ws.bean.DummyWSManagerSei”。它们是否在正确文件夹中的WEB-INF/classes中可用,或者在WEB-INF/lib中的jar中可用?