Return-Path: Delivered-To: apmail-jakarta-ant-user-archive@jakarta.apache.org Received: (qmail 72494 invoked by uid 500); 27 Apr 2001 17:17:43 -0000 Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: ant-user@jakarta.apache.org Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 72467 invoked from network); 27 Apr 2001 17:17:43 -0000 X-Server-Uuid: 940ca6d6-7d70-11d3-b8a2-00805f859015 From: SimonRichardson2@halifax.co.uk To: ant-user@jakarta.apache.org Subject: RE: Execute another bat file. Date: Fri, 27 Apr 2001 18:16:08 +0100 MIME-Version: 1.0 X-WSS-ID: 16F776E545404-01-02 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Message-ID: <16F776E545404-01@WorldSecure_Server__halifax.co.uk_> X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N J2EE user The fact that your classpath may not be set is not necessarily indicative of the fact your bat file did not execute. I can't say what happens inside ant, but from an NT point of view, if the execution of the bat file was inside another process then you will not see the values set when the process terminates. For this test c:\bea\env.bat contains the following code: @echo off echo hello set testvalue=test echo %testvalue% CASE I - running the bat in another process ------ C:\>cmd /c c:\bea\env.bat hello test C:\>echo %testvalue% %testvalue% CASE II - running the bat in the same process ------- C:\>c:\bea\env.bat hello test C:\>echo %testvalue% test And .. I wonder if this is what you're seeing .. certainly when I run the same batch file using your build script in ant I get the following results: C:\>ant -buildfile c:\temp\build.xml Buildfile: c:\temp\build.xml init: [echo] Begining execution of the bat file [exec] hello [exec] test BUILD SUCCESSFUL Total time: 0 seconds C:\>echo %testfile% %testfile% Try putting some echo statements in your batch file and see if these are printed when you run. Simon -----Original Message----- From: J2EE User [mailto:coolxml@hotmail.com] Sent: 27 April 2001 17:31 To: ant-user@jakarta.apache.org Subject: Re: Execute another bat file. Simon: Even my build was successful. But it does not seem to execute the bat file. env.bat file attempts to set the classpath, but after ant completes the excution, the classpath is still not set. Thanks J2EE User ----- Original Message ----- From: To: Sent: Friday, April 27, 2001 11:50 AM Subject: RE: Execute another bat file. > I had go with your sample code and the env.bat file I created ran! > > The contents of the env.bat: > @echo off > echo "hello" > > I also wrapped your target with the following project definitions: > > > > > > > > > > > I ran if from c:\ but before doing that I set the following environment > variables: > C:\>path=c:\jakarta-ant-1.3\bin;%path% > C:\>set ant_home=c:\jakarta-ant-1.3 > C:\>set java_home=C:\jdk1.3.0_02 > > And I got the following results: > > C:\>ant -buildfile c:\temp\build.xml > Buildfile: c:\temp\build.xml > > init: > [echo] Begining execution of the bat file > [exec] "hello" > > BUILD SUCCESSFUL > > Total time: 0 seconds > C:\> > > I hope there's someting here that may help :-). > > > > Simon > > -----Original Message----- > From: J2EE User [mailto:coolxml@hotmail.com] > Sent: 27 April 2001 16:37 > To: ant-user@jakarta.apache.org > Subject: Execute another bat file. > > > Friends: > I have all my classpath settings and environment variables settings in a > batch file called env.bat > > From build.xml I want to call the env.bat so that I do not have to do the > class path settings in every build.xml file. > > Here is the build.xml file snippet: > > > > > > > > > > When I run ant, it says build successful, but the env.bat is not executed. > Any ideas? > > > Thanks in advance > > -------------------------------------------------------------------------- ---- > Part of the Halifax Group, Halifax plc, Registered in England No. 2367076. Registered Office: Trinity Road, Halifax, West Yorkshire HX1 2RG. Represents only the Halifax Financial Services Marketing Group for the purposes of advising on and selling life assurance, pensions and unit trust business. The Marketing Group is regulated by the Personal Investment Authority. Switchboard 01422 333333. > > > ============================================================================ == > > ------------------------------------------------------------------------------ Part of the Halifax Group, Halifax plc, Registered in England No. 2367076. Registered Office: Trinity Road, Halifax, West Yorkshire HX1 2RG. Represents only the Halifax Financial Services Marketing Group for the purposes of advising on and selling life assurance, pensions and unit trust business. The Marketing Group is regulated by the Personal Investment Authority. Switchboard 01422 333333. ==============================================================================