RE: Ant Diagnostic

2008-06-15 Thread Shawn Castrianni
You have your JAVA_HOME set to a JRE (Java Runtime Environment) instead of a JDK (Java Development Kit). Download the JDK instead of the JRE and set your JAVA_HOME to point to the JDK and it should work. --- Shawn Castrianni From: Chakradhar Jalkam [mailto:[EMAIL PROTECTED] Sent: Sunday, June

Ant Diagnostic

2008-06-15 Thread Chakradhar Jalkam
Hello, Would you please let me know where the problem that I am unable to install the ANT, for this I have attached the ant diagnostic in a text file. I really appreciate for your suggestions. Thanks Chakra _ Search that pays

Re: problem

2008-06-15 Thread Henning Bredel
On Sunday 15 June 2008 09:43:54 Guy Catz wrote: > Hi. > > I want to run an exec and I want its output to be directed to /dev/null. > But, when I run "myexec -r -a > /dev/null" I get an error saying that > the engine tried to run 3 lines - myexec -r -a > > > /dev/null > > and not all in one line. >

increase heap size

2008-06-15 Thread Henning Bredel
hi, I receive a Java Heap space error when executing the Deploy task from the catalina-ant.jar. Referring to Environment Variables at ant.apache.org/manual/running.html it is said "ANT_OPTS - command-line arguments that should be passed to the JVM. For example, you can define system pr

RE: native2ascii in build.xml

2008-06-15 Thread Raghuveer
1. converting the Application resource file in struts by native2ascii tool, In this process all polish special characters are converted to Unicode. After i enter and save your properties in UTF-8 format, I then use native2ascii to covert that into ASCII. the converted ASCII file will

RE: native2ascii in build.xml

2008-06-15 Thread Raghuveer
I am working on multilingual JSP Struts application. I need to convert the polish characters in my "messages.properties" file to Unicode by native2ascci from command prompt before running ant. Instead of this 2 step process I have planned to make it in single step. Please advice?

problem

2008-06-15 Thread Guy Catz
Hi. I want to run an exec and I want its output to be directed to /dev/null. But, when I run "myexec -r -a > /dev/null" I get an error saying that the engine tried to run 3 lines - myexec -r -a > /dev/null and not all in one line. How can I make it happened? I'm using the task. Thanks.