Hi
I'm trying to generate wsdl file from my java code so I did:
-----------
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<configuration>
<sourceDirectory>
src/main/resources/META-INF/wsdl
</sourceDirectory>
<testCases>true</testCases>
<serverSide>false</serverSide>
<implClass>
com.bs.proteo.notifications.service.NotificationsPortSoapBindingImpl
</implClass>
<location>http://dummy-url</location>
<namespace>
urn:com:bs:proteo:notifications
</namespace>
<typeMappingVersion>1.2</typeMappingVersion>
<servicePortName>NotificationsPort</servicePortName>
<filename>notifications.wsdl</filename>
</configuration>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
---------------
But when I run the task I got:
[INFO] [axistools:wsdl2java]
[INFO] about to add compile source root
[INFO] Nothing to generate. All WSDL files are up to date.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8 seconds
[INFO] Finished at: Mon Oct 09 13:48:03 CEST 2006
[INFO] Final Memory: 3M/6M
[INFO] ------------------------------------------------------------------------
But no wsdl file was generated !!!
I noticed that parameters in docs are not explained so, may be I'm
asuming a parameter use in a wrong way.
I've no idea about how to use required parameters "filename" and
"project" and wich parameter allow me to say which is my webservice
interface.
Thanks in advance
J
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]