You can use Netbeans to create a WebServiceClient. It would have everything you need. Then you can create your war file to deploy on the client. See Sang's WebServices course for details
On Aug 26, 1:11 am, "Rick Fencl" <[EMAIL PROTECTED]> wrote: > Hi Saumil, > I suggest you read the ant manual. > You will find it at the following URI:http://ant.apache.org/manual/index.html > > All of the information you need is there. > > Unfortunately Ant is not obvious but it is really simple once you get the > hang of it. > > Here is the jar task from one of my projects. > The values in the ${} are loaded in a property file. > Look up each of the tags in the documentation > <copy> > <fileset> > etc. to get the idea of how this works. > > <target name="jar" description="create ofa.jar" depends="compile"> > <!-- copy lib/classpath to build/classpath, getting everything, and > expanding defaults --> > <copy todir="${build.classpath.dir}"> > <fileset dir="${lib.dir}/classpath" excludes="**/*.default"/> > </copy> > <copy todir="${build.classpath.dir}" overwrite="true"> > <fileset dir="${lib.dir}/classpath" includes="**/*.default"/> > <mapper type="glob" from="*.default" to="*"/> > <filterchain><expandproperties/></filterchain> > </copy> > <!-- create jar file. For autodeployment --> > <jar destfile="${ofa.jar}"> > <fileset dir="${build.classes.dir}"/> > <fileset dir="${build.classpath.dir}"/> > </jar> > <!-- We want this for release --> > <jar destfile="${ago.jar}"> > <fileset dir="${build.classes.dir}" excludes="**/ofa/**"/> > </jar> > </target> > > On Mon, Aug 25, 2008 at 10:41 PM, SAUMIL MEHTA <[EMAIL PROTECTED]>wrote: > > > > > Hi, > > > I want to create a new ant target called "create.webclient-api.jar" that > > causes a > > webclient-api.jar to be created that contains all the necessary .class > > files that comprise the specification of the webclient interface. > > > I need to make it so there is a new build target in the build.xml > > called "create.webclient-api.jar" that creates > > WEBCLIENT_DIST\webclient_2_0_ > > >> a9\netbeans\target\webclient-api.jar that > >> contains only the .class files needed for the webclient implementation. > > > What the procedure I need to follow? Can anybody guide me? > > > Regards > > SAUMIL MEHTA- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to this group, send email to java-ee-j2ee-programming-with-passion@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en -~----------~----~----~----~------~----~------~--~---