What's wrong with my Apache CXF client?

后端 未结 2 952
旧时难觅i
旧时难觅i 2021-02-01 05:10

This is part of my pom.xml:


  org.apache.cxf
  

        
相关标签:
2条回答
  • 2021-02-01 05:40

    You likely have a 1.5 (or older) version of wsdl4j coming from someplace else. CXF requires the 1.6.x versions.

    EDIT:

    Also be on the lookout for the Axis version of this jar. You can exclude it like so:

            <exclusions>
                <exclusion>
                    <artifactId>axis-wsdl4j</artifactId>
                    <groupId>axis</groupId>
                </exclusion>
            </exclusions>
    
    0 讨论(0)
  • 2021-02-01 05:47

    This dependency is wsdl4j-1.6.2.jar, it probably does not get transitively resolved with the current set of dependencies you have.

    0 讨论(0)
提交回复
热议问题