You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Eric Mckenna <er...@brainbench.com> on 2003/09/24 20:59:25 UTC

Can filesets be used with the axis Ant tasks?

When generating more than one service, do you have to use a java2wsdl
axis-ant task for each service?  For example:
<java2wsdl
	classname="webservices.ServiceOne"
      implclass="webservices.ServiceOneSoapBindingImpl"
	output="${ws.dir}/generated/ServiceOne.wsdl"            
      ...
/>

<java2wsdl
      classname="webservices.ServiceTwo"
      implclass="webservices.ServiceTwoSoapBindingImpl"
	output="${ws.dir}/generated/ServiceTwo.wsdl"            
      ...
/>
<java2wsdl
      classname="webservices.ServiceThree"
      implclass="webservices.ServiceThreeSoapBindingImpl"
	output="${ws.dir}/generated/ServiceThree.wsdl"            
      ...
/>

Or is there some way to use filesets?  I also have the same question about
the wsdl 2 Java axis-ant task with the different wsdl files.

thanks,
eric.