In your build.xml you can overwrite auto-generated targets from your 
build-impl.xml.
Just copy the wsimport-init target to the build.xml file and change it to have 
the classpath ${javac.classpath}:

  | <target name="wsimport-init" depends="init">
  |         <mkdir dir="${build.generated.dir}/wsimport/client"/>
  |         <mkdir dir="${build.generated.dir}/wsimport/binaries"/>
  |         <mkdir dir="${classes.dir}"/>
  |         <taskdef name="wsimport" classname="com.sun.tools.ws.ant.WsImport">
  |             <classpath path="${javac.classpath}"/>
  |         </taskdef>
  | </target>
  | 
You probably have to add the JAX-WS libraries to the project Libs.

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

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

Reply via email to