Re: how do i switch from tdk 2.2 to tdk 2.3 without a mess

2004-10-19 Thread nagendra pal
you stop the machine after some time again start machine then start tomcat. if it is not working then you reinstall tomcat. ...nksingh --- project member <[EMAIL PROTECTED]> wrote: > hi all, > i have tdk 2.2 on my machine ( windows 2000 > ). i had earlier tried to shift to tdk2.3

RE: winning the case for ANT

2004-10-19 Thread Erskine, Chris
If I have a script for a play and I read (execute) first Act 2, Scene 3 and then execute Act 1, Scene 2, is this not a set of targets and are they not executed in a different order. Does this script not do the same as the ant build script. Within a target, I have instructions to be performed (you

RE: winning the case for ANT

2004-10-19 Thread Bill Rich
"[Erskine, Chris] I agree that Ant is a build tool. As a build tool, it requires something to tell it what to do. From http://dictionary.reference.com/search?q=script For computer science, it states "A simple program in a utility language or an application's proprietary language". This describes

RE: winning the case for ANT

2004-10-19 Thread Bill Rich
XML files may suffer somewhat in readibility, but, there is XSL to help with formatting. For example: I found the http://www-106.ibm.com/developerworks/xml/library/x-antxsl/examples/example2 /ant2html.xsl. It does some formatting on an Ant build file and produces an HTML file that is displayable i

Re: Any recommended methods for build and deployment in weblogic and jboss servers?

2004-10-19 Thread Kris Read
We use Ant to package and deploy on Jboss. We deploy exclusively WAR and EAR files created with the respective WAR and EAR ant tasks. Jboss can hot-deploy but we have not found it to always be reliable. On Tue, 19 Oct 2004 13:35:59 -0500, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi all, >

Re: Any recommended methods for build and deployment in weblogic and jboss servers?

2004-10-19 Thread jfuller
[EMAIL PROTECTED] wrote .. > Hi all, > > I know that this is a rather open question. > > Are there any recommended ways of building and deploying application to > weblogic and jboss servers? > > For example, in build, using Ant in only the build server, then create > packages (what type of forma

Any recommended methods for build and deployment in weblogic and jboss servers?

2004-10-19 Thread barry
Hi all, I know that this is a rather open question. Are there any recommended ways of building and deploying application to weblogic and jboss servers? For example, in build, using Ant in only the build server, then create packages (what type of format for weblogic and jboss?) then deliver (rs

, , and order sensitivity problem

2004-10-19 Thread Jacob Kjome
I noticed an issue with , , and where a property specified in an imported file will not exist in an overridden target of the importing file depending on the position of said target in the imported file relative to the position of said property in the imported file. Maybe an example would be more

RE: winning the case for ANT

2004-10-19 Thread Woodchuck
hihi, i would not say ant is an easy-at-first tool to use. you have to install and set it up correctly. then you have to learn ant's syntax and so on. depending on what you want to do, your build script could be done in 5 minutes, or occupy a week's (or more) worth of time to finally get it per

RE: winning the case for ANT

2004-10-19 Thread jfuller
a few additional 1p comments; Ant is a 'disruptive' tool e.g. many developers can quickly get on with their work using the tool whilst the declaritive format makes composition trivial; hands up for those who have spent hours plastering make builds together...PERL and make vie for the low scana

RE: winning the case for ANT

2004-10-19 Thread Erskine, Chris
Please see below. Chris Erskine EDS Consulting Services F5-EDS-001 2424 Garden of the Gods Rd Colorado Springs, CO 80919 Phone: 719-535-6064 Phone: mailto:[EMAIL PROTECTED] > -Original Message- > From: Chappell, Simon P [mailto:[EMAIL PROTECTED] > Sent: Monday, October 18, 2004 9:1

RE: complex arguments and the task

2004-10-19 Thread Amnon Khen
Thanks, Stefan, for your quick response. The 'relative' attribute did the trick. However, since I needed a full path, I had to explicitly add it in the mapper: It worked for me, but I'm afraid that if several filesets with different base directories were used, it wouldn't work. Thanks a

Re: Running Ant from a Windows batch file

2004-10-19 Thread Sebastian Redl
Rhino wrote: I would like to be able to run an Ant (1.6.1) script from a Windows batch file on XP. Unfortunately, my Ant script contains tasks and they are messing me up. Here is my batch file, cond3.bat: rem Batch file to run an Ant script. rem This va

Re: Running Ant from a Windows batch file

2004-10-19 Thread Rhino
MessageI was hoping it would be that simple ;-) Thanks, my batch file now works perfectly! Rhino - Original Message - From: Dick, Brian E. To: Ant Users List Sent: Tuesday, October 19, 2004 10:48 AM Subject: RE: Running Ant from a Windows batch file Since the ant command

RE: Running Ant from a Windows batch file

2004-10-19 Thread Dick, Brian E.
Title: Message Since the ant command on Windows is a batch file, you have to "call" it when you use it from another batch file. Change you batch file to   call ant -f cond3.xml     -Original Message-From: Rhino [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 10:44

Running Ant from a Windows batch file

2004-10-19 Thread Rhino
  I would like to be able to run an Ant (1.6.1) script from a Windows batch file on XP. Unfortunately, my Ant script contains tasks and they are messing me up.   Here is my batch file, cond3.bat: rem Batch file to run an Ant script.   rem This variable is

Re: complex arguments and the task

2004-10-19 Thread Stefan Bodewig
On Tue, 19 Oct 2004, Amnon Khen <[EMAIL PROTECTED]> wrote: > I though that using the mapper to prefix the target file with "-arg" > would do the trick, Yes, definitively a nice idea. > but what actually happens is that Ant prefixes the argument with the > task's working directory. have you trie

complex arguments and the task

2004-10-19 Thread Amnon Khen
Hello Ant folk, I am trying to use the task to apply some tool on a set of files. The problem that the tool accepts its arguments in the format -arg=file (i.e. a single argument without a space between "-arg" and the filename that follows it), and I haven't found a way to generate this type of

OT: jvmargs Xms Xmx

2004-10-19 Thread Mark Lybarger
slightly OT, but i'm using the ant java task, and setting the -Xms and -Xmx parameters t the jvm. i've typically seen the parameters represented as a "power of 2" number, 32, 64, 128, etc. is there any logic/reason to specifying power of 2 numbers, or is using 100, 200, 300 just as good?

Re: Ant 1.6.2 failing to bootstrap

2004-10-19 Thread Sebastian Redl
Laconia Data Systems wrote: Sounds like you have an adapter missing..this solution works when compiling ANT scripts within Eclipse: add the following property before compiling: Martin- No, I've debugged into Ant and it's simply that this statement: Class.forName("com.sun.tools.javac.Main"); thr

Re: Problem Running ANT - getLocationURLs

2004-10-19 Thread Peter Reilly
I can get this to happen if I do not have read permission on a directory that getLocationURLs is getting jars from. (So this is a bug). The launcher code uses getLocationURLs to look for jars in the $ANT_HOME/lib, ~/.ant/lib and in any directories in the $CLASSPATH. This may be your problem? Peter

Re: Question about Mail task

2004-10-19 Thread Ivan Ivanov
I think the error cames from the fact that ant tries to pick up mail.jar and send email via it. If it can't find mail.jar it issues error and fall back of the its own implemenation of mail sending and that is your sending is successful anyway. --- Laconia Data Systems <[EMAIL PROTECTED]> wrote: >

Re: Question about Mail task

2004-10-19 Thread Rhino
Thank you, that solved the problem! The thing I don't understand is why my mail was sent successfully *despite* the error I was getting. I didn't have either mail.jar or activation.jar in my ${ANT_HOME}/lib directory. That suggests that neither jar is actually needed to send email. Did I simply g

Re: Question about Mail task

2004-10-19 Thread Laconia Data Systems
Rhino copy both mail.jar and activation.jar to %ANT_HOME%\lib retry task Martin - Original Message - From: Rhino To: ant-user Sent: Tuesday, October 19, 2004 12:07 AM Subject: Question about Mail task I just tried using Ant's mail task for the first time and found somethin

RE: ANT Checksum

2004-10-19 Thread Gareth Kelly
Just to clarify, One jar looks like this: 0 Mon Oct 18 11:33:14 IST 2004 META-INF/ 103 Mon Oct 18 11:33:12 IST 2004 META-INF/MANIFEST.MF 443 Mon Oct 18 11:33:14 IST 2004 GoodbyeWorld.class 442 Mon Oct 18 11:33:14 IST 2004 HelloWorld.class and the other: 0 Mon Oct 18 11:16:52 I