Exception
NoSuchMethodError: javax.xml.ws.WebFault.messageName()Ljava/lang/String
Solution
You are most probably using jdk6 or earlier versions of Java if you encounter this exception. You can fix this exception using the following steps
a) Download the latest jax-ws
b) Place the downloaded jar inside jre/lib/endorsed folder
OR
c) Please the download jar file inside the web server lib endorsed folder like
if using JBoss then place it inside jboss\lib\endorsed
if using Tomcat then place it inside tomcat\lib\endorsed
Comments
Post a Comment