What's the minimum classpath for an Axis2 client?

后端 未结 9 916
清歌不尽
清歌不尽 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 15:51

    Had to add the transports, too

    
        org.apache.axis2
        axis2-adb
        1.5.4
    
    
        org.apache.axis2
        axis2-transport-local
        1.5.4
    
    
        org.apache.axis2
        axis2-transport-http
        1.5.4
    
    

提交回复
热议问题