Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently using JBoss6.0 and have an webapplication deployed that makes use of an WebService on a remote system. Now after deploying and when trying to call a method on the webservice, I get the following error.

java.lang.ClassCastException: org.apache.axis2.receivers.RawXMLINOnlyMessageReceiver cannot be cast to org.apache.axis2.engine.MessageReceiver

Can any one please help me out in solving this issue?

Thanks in Advance.

share|improve this question

1 Answer

The error occurs when the Axis2 jar files are located in multiple locations within the classpath (perhaps even with different versions) of the JBoss server.

If you use maven you can add <scope>provided</scope> to the Axis2 dependencies of your project to ensure the libs exist only in one single location within the classpath.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.