Have you make a try using directly CXF ?
You can use something like:
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/wsdl/myService.wsdl</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
Maybe I haven't right understood your request.
Regards
JB
A.H wrote:
Hi,
i have the same problem like marco.
i m currently doing a servicemix project inw hich i had to generate
skeletons for couple of webservices i am using
url of the tutorial is here
http://servicemix.apache.org/orchestration-with-jsr181.html
i have following pom (only relevant part)
<plugin>
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>xfire-maven-plugin</artifactId>
<version>${servicemix-version}</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>wsgen</goal>
</goals>
<configuration>
<generateServerStubs>false</generateServerStubs>
<wsdls>
<wsdl>src/main/resources/service.wsdl</wsdl>
<wsdl>src/main/resources/uszip.wsdl</wsdl>
<wsdl>src/main/resources/LocalTime.wsdl</wsdl>
</wsdls>
<outputDirectory>target/generated-sources</outputDirectory>
<profile>org.codehaus.xfire.jaxws.gen.JAXWSProfile</profile>
</configuration>
</execution>
</executions>
</plugin>
and i want to avoid the generation of skeleton stubs.....that's why i have
set the property
<generateServerStubs>false</generateServerStubs>
but it seems not to work.....
anyone could help me out?
thanks and regarfds