Hi, I have used the method described by Jean-Baptiste.
It works fine. With this plug-in you can create all the beans, the interface
and the stub of your service.
Jean-Baptiste Onofre wrote:
>
> 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
>
>
--
View this message in context:
http://www.nabble.com/wsgen-and-generateServerStubs-tp25645181p25649116.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.