I use jaxws 2.2.3 and Jboss 5.1 with JDK 6.
When calling ws client, I get
java.util.ServiceConfigurationError: javax.xml.ws.spi.Provider: Provider org.jboss.ws.core.jaxws.spi.ProviderImpl not found (see full stack trace below)
When I remove libs jbossws-native-*.jar from jboss/lib/endorsed everthing works fine. But they must be there.
I tried to tell jboss to use com.sun.xml.ws.spi.ProviderImpl:
- META-INF/services/javax.xml.ws.spi.Provider
- -Djavax.xml.ws.spi.Provider
to read first my libs WEB-INF/jboss-classloading.xml
<classloading xmlns="urn:jboss:classloading:1.0" parent-first="false" domain="DefaultDomain" top-level-classloader="true" parent-domain="Ignored" export-all="NON_EMPTY" import-all="true"> </classloading>
No luck. I spent whole day with this and I have no idea.
Please help me.