axis2 maven example
Posted
by larrycai
on Stack Overflow
See other posts from Stack Overflow
or by larrycai
Published on 2010-05-22T14:22:41Z
Indexed on
2010/05/22
14:30 UTC
Read the original article
Hit count: 429
I try to use axis2 (1.5.1) version to generate java codes from wsdl files, but I can't figure out what is the correct pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-wsdl2code-maven-plugin</artifactId>
<version>1.5.1</version>
<executions>
<execution>
<goals>
<goal>wsdl2code</goal>
</goals>
<configuration>
<wsdlFile>src/main/resources/wsdl/stockquote.wsdl</wsdlFile>
<databindingName>xmlbeans</databindingName>
<packageName>a.bc</packageName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2</artifactId>
<version>1.5.1</version>
</dependency>
</dependencies>
when I type mvn compile, it complains the
Retrieving document at 'src/main/resources/wsdl/stockquote.wsdl'.
java.lang.ClassNotFoundException: org.apache.xml.serializer.TreeWalker
And if i try to find the TreeWalker, it is a mess to find a suitable jar files.
can u someone give me a hints ? or give me correct pom.xml
© Stack Overflow or respective owner