I'm using JDK 1.5 in my web project and using maven for compile.
I was facing this:
WebServiceException ("javax.xml.ws.WebServiceException: Provider com.sun.xml.ws.spi.ProviderImpl not found")
in my project. To fix that I used two approaches:
- First, I add jaxws-rt-2.1.4 in my class path.(Also made entry in POM.xml)
- Second, Added jar in jre/lib folder
But after this I am facing this:
java.lang.NoClassDefFoundError:javax/xml/bind/JAXBContext
Does anyone have any idea that could help me?