Axis2 quick start guide-client code

#developing in win system

1)download zip file from axis2 website

2)uncompress axis2.1.6.4-bin.zip,axis-1.6.4.war.zip,and must be download tomcat 7 or even later

3)put the unzip file axis2.war into tomcat directorys webapps.,and start tomcat server

call the link  :http://localhost:8080/axis2/

4)genercate client code

cd axis2/bin,type the command

wsdl2java.bat -uri http://localhost:8080/axis2/services/Version?wsdl -o Test

5.)config client code

create a maven project

How to config the axis dependences

copy axis2 example project "axis2-1.6.4\samples\transport\https-sample" pom dependences

and axis2-1.6.4\samples\jaxws-samples\ pom file dependences

<dependencies>
        <dependency>
            <groupId>org.mongodb</groupId>
            <artifactId>mongo-java-driver</artifactId>
            <version>3.2.0</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.3</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-kernel</artifactId>
            <version>1.6.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-jaxws</artifactId>
            <version>1.6.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-codegen</artifactId>
            <version>1.6.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-adb</artifactId>
            <version>1.6.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>addressing</artifactId>
            <version>1.6.4</version>
            <type>mar</type>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-transport-http</artifactId>
            <version>1.6.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-transport-local</artifactId>
            <version>1.6.4</version>
        </dependency>


6)  invoke menthod



你可能感兴趣的:(axis2)