Thanks for the help Frank, got it working now. Todd
-----Original Message----- From: Frank Wierzbicki [mailto:[EMAIL PROTECTED] Sent: Monday, April 16, 2001 12:47 PM To: [EMAIL PROTECTED] Subject: Re: EJB Compilation with ant Todd, The ejbjar task allows you to include a <weblogic> element that will run weblogic ejbc. The resulting ejbjar task should look something like this where ${dest} is the root directory of already compiled java classes to be used by ejbjar: <ejbjar srcdir="${dest}" destdir="${dest}" <include name="**/*-ejb-jar.xml"/> <exclude name="**/*-weblogic*.xml"/> <dtd publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN" location="${weblogic}/classes/weblogic/ejb/deployment/xml/ejb-jar.dtd"/> <dtd publicId="-//BEA Systems, Inc.//DTD WebLogic 5.1.0 EJB//EN" location="${weblogic}/classes/weblogic/ejb/deployment/xml/weblogic-ejb-jar.d td"/> <weblogic destdir="${dest}" args=" -d ${dest} " /> </ejbjar> --- T J Morgan <[EMAIL PROTECTED]> wrote: > Im a newbe to ant and I know it is possible, but I don't know how to compile > EJBs with ant. Im using WL5.1. Any help is greatly appreciated. > > Todd Morgan > __________________________________________________ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
