The relevant build.xml fragment is

  |     <path id="class.path">
  |             <fileset dir=".">
  |                     <include name="jbossws-client.jar"/>
  |                     <include name="getopt.jar"/>
  |                     <include name="jbossws-wsconsume-impl.jar"/>
  |                     <include name="jaxb-xjc.jar"/>
  |                     <include name="jaxb-impl.jar"/>
  |             </fileset>
  |     </path>
  | 
  |     <target name="wsgenerate" description="">
  |             <taskdef
  |                     name="wsconsume"
  |                     classname="org.jboss.ws.tools.jaxws.ant.wsconsume"
  |                     classpathref="class.path"
  |             />
  |             <wsconsume
  |                     fork="true"
  |                     verbose="true"
  |                     destdir="bin"
  |                     sourcedestdir="src"
  |                     keep="true"
  |                     wsdllocation="META-INF/wsdl/MyService.wsdl"
  |                     wsdl="MyService.wsdl"
  |                     package="my.ws">
  |                     <binding dir="." includes="bindings.xml"/>
  |             </wsconsume>
  |     </target>
  | 

When I add tools.jar to the classpath, this works OK. But why can't it find 
tools.jar anyway as its being executed by the jvm anyway?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4053036#4053036

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4053036
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to