java - Maven jaxb2 plugin not generating operations -


when generate java classes wsdl file found here : http://wsdl-bug.s3.amazonaws.com/magento.xml, generates classes no operations.

it generates classes types , generates classes requests/responses parameters not generate method operations.

here's 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> 


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

c# - Retrieve google contact -

javascript - How to insert selected radio button value into table cell -