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

I wrote a Client that uses a Webservice. Works well in a seperate project. But when I try to use it in my maven project, it fails. The dependencies are correct:

    <dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-frontend-jaxws</artifactId>
    <version>2.2.8</version>
</dependency>
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-transports-http</artifactId>
    <version>2.2.8</version>
</dependency>
    <!-- Jetty is needed if you're are not using the CXFServlet -->
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-transports-http-jetty</artifactId>
    <version>2.2.8</version>
</dependency>

But the error seems to occur calling this method:

JaxWsProxyFactoryBean.create();

This is what I get:

    10.06.2010 12:50:59 org.apache.cxf.service.factory.ReflectionServiceFactoryBean buildServiceFromClass
INFO: Creating Service {http://tempuri.org/}BMWebServiceSoapService from class net.myClassPath.BMWebServiceSoap
2010-06-10 12:51:00.992::WARN:  Nested in org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.lang.NoClassDefFoundError: javax/wsdl/extensions/soap12/SOAP12Address:
java.lang.NoClassDefFoundError: javax/wsdl/extensions/soap12/SOAP12Address

Does anyone have a clue? Thanks!

share|improve this question

1 Answer

up vote 2 down vote accepted

Do a maven dependncy:tree or similar. It LOOKS like you are picking up an old or bad version of wsdl4j.

Dan

share|improve this answer
This is what I get: (wsdl4j:wsdl4j:jar:1.6.2:compile - omitted for conflict with 1.5.1) Don't really know what that means though :-/ – tzippy Jun 10 '10 at 12:03
1  
Just figured it out. Had to exclude the 1.5.1 to make it use 1.6.2 Thanks! – tzippy Jun 10 '10 at 13:08

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.