When I generate Java classes from the WSDL file found here : http://wsdl-bug.s3.amazonaws.com/magento.xml, it successfully generates classes but no operations.
It generates the classes for the types and it generates classes for requests/responses parameters but it does not generate any method for the operations.
Here's my maven plugin configuration :
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.12.3</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaLanguage>WSDL</schemaLanguage>
<generatePackage>magento.wsdl</generatePackage>
<schemas>
<schema>
<url>http://wsdl-bug.s3.amazonaws.com/magento.xml</url>
</schema>
</schemas>
</configuration>
</plugin>