What's the minimum classpath for an Axis2 client?

后端 未结 9 918
清歌不尽
清歌不尽 2021-02-01 15:24

I want to build an Axis2 client (I\'m only accessing a remote web service, I\'m not implementing one!) with Maven2 and I don\'t want to add 21MB of JARs to my project.

9条回答
  •  粉色の甜心
    2021-02-01 16:10

    (Note: This response was provided by Aaron Digulla himself. What follows is the exact text of his own answer.)

    In maven2, the minimum dependency set to make an ADB client work ("ADB" as in the way you created the Java classes from the WSDL) is this:

        
                org.apache.axis2
                axis2-kernel
                1.4.1
        
        
                org.apache.axis2
                axis2-adb
                1.4.1
        
    

    Hmmm... it seems I can't flag that as the correct answer. Can someone please copy this so I can flag his post?

提交回复
热议问题