Hi,
Is it possible to use this plugin with url like : file://C:\my-wsdl.wsld
instead of using the http protocol ? I mean :
<project>
...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<configuration>
<urls>
<url>file://C:\my-wsdl.wsld</url>
</urls>
...
</project>
instead of :
<project>
...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<configuration>
<urls>
http://host/server/sample.wsdl
</urls>
...
</project> Thanx, Yan.