1

I have enterprise aplication with JAX-WS 2.1 webservice. During application deployment on WAS (websphere application server) 8.0.0.0 (32-bit) this occurs :

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

What could be wrong ? This exception is quite rare, i need to know real reason for that problem. I am using similar applications also with JAX-WS and without any problems.

dma_k
  • 10,431
  • 16
  • 76
  • 128
Martin85
  • 75
  • 3
  • 10
  • Are those two class files available? i.e. "com.dummy.ws.bean.impl.DummyWSManager" and "com.dummy.ws.bean.DummyWSManagerSei". Are they available in your WEB-INF/classes in the correct folder, or in a jar in WEB-INF/lib? – davidfrancis Feb 17 '12 at 14:39

1 Answers1

2

Your Endpoint interface:

@javax.jws.WebService (endpointInterface="xyz")

is not pointing to its port. Verify where exactly the port file is located and give a complete path of that file as your endpoint interface.

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
Anil
  • 21
  • 2