I get the following error when trying to deploy a JAX-WS Maven project to JBOSS6.0.0.
17:45:03,451 ERROR [[/isp]] Error configuring application listener of class com sun.xml.ws.transport.http.servlet.WSServletContextListener: java.lang.NoClassDe FoundError: javax/servlet/ServletContextAttributeListener at java.lang.ClassLoader.findBootstrapClass(Native Method) [:1.6.0_24] at java.lang.ClassLoader.findBootstrapClassOrNull(ClassLoader.java:927) [:1.6.0_24] ...
My Pom file has the following dependency:
<dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-rt</artifactId> <version>2.1.4</version> <scope>provided</scope> </dependency>
I tried to put the jar file in the general / lib, / lib or / lib / but still get the same.
Many people had these problems, and there was quite some kind of answer, but I did not find anything and did not try to work.
Update
So, I tried putting lib in WEB-INF / lib instead. And this takes away the previous error. However, a new error now appears. Here's the stack trace:
09:00:46,353 ALLVARLIG [http] WSSERVLET11: failed to parse runtime descriptor: j ava.lang.NoClassDefFoundError: com/sun/xml/stream/buffer/XMLStreamBuffer: java.l ang.NoClassDefFoundError: com/sun/xml/stream/buffer/XMLStreamBuffer at com.sun.xml.ws.server.EndpointFactory.generateWSDL(EndpointFactory.ja va:424) [:2.1.4] at com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory. java:196) [:2.1.4] at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:467) [:2.
user373455
source share