Hi,
I am working on the timeline or jsr181 Orchestration tutorial.
My servicemix is version 3.3 running and my maven2 is version 2.0.9.
The question I have with regard to this tutorial is how to ask the maven to
generate source for the two external webservices.
In the tutorial is ask to change the DOM to something like that:
<wsgen outputDirectory="${basedir}/target/generated-sources"
explicitAnnotation="true"
profile="org.codehaus.xfire.jaxws.gen.JAXWSProfile"
wsdl="${basedir}/src/main/resources/service.wsdl"></wsgen>
<wsgen outputDirectory="${basedir}/target/generated-sources"
explicitAnnotation="true"
profile="org.codehaus.xfire.jaxws.gen.JAXWSProfile"
wsdl="${basedir}/src/main/resources/LocalTime.wsdl"></wsgen>
<wsgen outputDirectory="${basedir}/target/generated-sources"
explicitAnnotation="true"
profile="org.codehaus.xfire.jaxws.gen.JAXWSProfile"
wsdl="${basedir}/src/main/resources/uszip.wsdl"></wsgen>
But if I looked at my DOM, the existing code is like that :
<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>
<wsdls>
<wsdl>${basedir}/src/main/resources/service.wsdl</wsdl>
</wsdls>
<outputDirectory>target/generated-sources</outputDirectory>
<profile>org.codehaus.xfire.jaxws.gen.JAXWSProfile</profile>
</configuration>
</execution>
</executions>
</plugin>
So I don't know how to change it as the format of the DOM has changed.
I wonder how do I stick in the source generation command for the Localtime
and Uszip services.
Any help would be very much appreciated. Or any pointers to where I can find
my own solution.
Thanks,
wai yung
--
View this message in context:
http://www.nabble.com/CityTime-Tutorial-Question-tp23322577p23322577.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.