[jboss-user] [JBoss and NetBeans] - Re: JAXWSJBoss

salex do-not-reply at jboss.com
Wed Dec 20 07:08:48 EST 2006


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



More information about the jboss-user mailing list