Return-Path: Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 91905 invoked from network); 20 Jan 2001 06:22:15 -0000 Received: from mta02.mail.au.uu.net (HELO mta02.mail.mel.aone.net.au) (203.2.192.82) by h31.sny.collab.net with SMTP; 20 Jan 2001 06:22:15 -0000 Received: from cognetnt ([63.34.196.66]) by mta02.mail.mel.aone.net.au with SMTP id <20010120062223.CSRF26092.mta02.mail.mel.aone.net.au@cognetnt> for ; Sat, 20 Jan 2001 17:22:23 +1100 Message-ID: <029501c082aa$37f44360$80dc1fcb@cognetnt> From: "Conor MacNeill" To: References: Subject: Re: understanding ant tasks:EJBC Date: Sat, 20 Jan 2001 17:13:38 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Patrick, Have you looked at the documentation for these tasks. Check here http://jakarta.apache.org/ant/jakarta-ant/docs/ejb.html You will notice that applies only to WL451 and so probably not of much interest to you. The task is what you want to use. There are a few examples in there to get you started. If that doesn't help, post again with more info. Conor ----- Original Message ----- From: "Patrick Moylan" > Hey, > I am currently trying to convert a test project into ant. I now use > Makefiles and do the following to create a entitybean.jar > 1. compile classes to $(buildtemp) > 2. mkdir $(buildtemp)\META-INF > 3. copy *.xml to $(buildtemp) > 4. from $(buildtemp), jar -cvf tmp.jar MYPACKAGE META-INF > 5. java -classpath WEBLOGICCLASSPATH -Dweblogichome weblogic.ejbc tmp.jar > entitybean.jar > > I have been trying to convert this to ant but am having problems. I got it > to create a jar, but it only contained the compiled entitybean classes and > not the xml, nor did it run weblogic. How does the built in ant tasks EJBC > and EJBJAR break up the work? > > any help would be great. > > thanks > > > >