Do Reply

2006-02-09 Thread Shweta Bodade
Hi am here again :-) How to copy a complete folder from one location to another Suppose foleder is test I want to copy it from C: to D: Then what should be the command The folder contains folder and files inside it.. Thanks in advance Regards Shweta

RE: Hello all

2006-02-09 Thread Shweta Bodade
Hey I got the solution you know what was happening There was already a file jade.war in e:jade\ folder so the command Was giving the error. Thanks a lot for help I will surely need your help again for deployment in Web Sphere As that will be very different for me... -

RE: Hello all

2006-02-09 Thread pritesh.saharey
Hi Shweta, Please give the snip of your code in build.xml BUILD FAILED: E:\workspace2\Hello\src\build.xml:9: --Pritesh -Original Message- From: Shweta Bodade [mailto:[EMAIL PROTECTED] Sent: Friday, February 10, 2006 11:02 AM To: 'Ant Users List' Subject: Hello all Hello all

Hello all

2006-02-09 Thread Shweta Bodade
Hello all a very good morning Can u help me with this error I am a new bee to ant. [delete] Deleting directory C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\jade [mkdir] Created dir: C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\jade [mkdir] Cre

Re: Usage of JBlanket

2006-02-09 Thread Stefan Bodewig
On Thu, 9 Feb 2006, Thomas SMETS <[EMAIL PROTECTED]> wrote: > classname="csdl.jblanket.ant.JBlanketModifyTask"> > > > > BUILD FAILED /home/tsmets/workspace/CodeCoverage/JBlanket.xml:24: > The type doesn't support the nested "path" element. The element's name is , no

RE: Usage of JBlanket

2006-02-09 Thread Stephen McConnell
> -Original Message- > From: Thomas SMETS [mailto:[EMAIL PROTECTED] > Sent: Friday, 10 February 2006 11:01 AM > To: Ant Users > Subject: Usage of JBlanket > > > Dear, > > I would like to define a target to use JBlanket but the > default install advises to copy the needed jars in t

Re: Question on error

2006-02-09 Thread Stefan Bodewig
On Thu, 9 Feb 2006, Carlton Brown <[EMAIL PROTECTED]> wrote: > "The class (ClassA) in file (file) is out of date due to > (ClassfileA) but has not been deleted because its source file could > not be determined." I know this warning message from some historical Java files that use multiple classes

Re: Delete task failed to remove French file name

2006-02-09 Thread Stefan Bodewig
On Thu, 9 Feb 2006, Noel Sebastien <[EMAIL PROTECTED]> wrote: > I use Ant 1.6.5 on Unix and the task fails > saying : Unable to delete file > /export/home/wasapps/src/BD_Mod?le.sql at > org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:594) at > org.apache.tools.ant.taskdefs.Delete.remov

Re: Problem making a build.xml using javah

2006-02-09 Thread Stefan Bodewig
On Thu, 9 Feb 2006, Xar <[EMAIL PROTECTED]> wrote: > Eeem, no one knows the answer to my question or my mails didn't > arrive? Maybe you should subscribe to the mailing list if you want to see the answers? I answered your post about a week ago

Usage of JBlanket

2006-02-09 Thread Thomas SMETS
Dear, I would like to define a target to use JBlanket but the default install advises to copy the needed jars in the ${ANT_HOME}/lib while I would prefere to place the jar's in a external directory like "wrongly" shown herebelow with 2 different configs :

Re: keep going after error

2006-02-09 Thread simon
On Mit, 2006-02-08 at 14:33 +, Steve Loughran wrote: > simon wrote: > > hello list > > > > i have a target for a cruisecontrol test. > > > > > > Starting Lenya.. > > > executable="start-lenya.sh" spawn="true"/> > > > > > > > > > > > > >

Re: Displaying the value in a Java class?

2006-02-09 Thread Matt Benson
I thought the manual was wrong at first too, but using a class file is correct. What is not as obvious is that you need BCEL to make it work. This is documented in install.html#librarydependencies from the manual. HTH, Matt --- Rhino <[EMAIL PROTECTED]> wrote: > The classcontents filterreader

Re: Displaying the value in a Java class?

2006-02-09 Thread Rhino
The classcontents filterreader might very well be exactly what I want - if I could understand how to use it! I've just tried several experiments and nothing works for me; nothing at all. I must be misunderstanding some of the concepts. For instance, it _looks_ as if I should be able to read

Re: Displaying the value in a Java class?

2006-02-09 Thread Matt Benson
Would the classconstants filterreader help? See concepts and types, filterchains and filterreaders. -Matt --- Rhino <[EMAIL PROTECTED]> wrote: > I'm trying to figure out a simple, elegant way to do > something in Java and > Ant but I keep coming up with complicated ways of > doing it. I feel a

Displaying the value in a Java class?

2006-02-09 Thread Rhino
I'm trying to figure out a simple, elegant way to do something in Java and Ant but I keep coming up with complicated ways of doing it. I feel as if a simple way is easily achievable but I'm blanking out so I hope someone here can tell me what I'm not seeing so that I can kick myself for overlook

RE: Question on error

2006-02-09 Thread Stephen McConnell
> -Original Message- > From: Brown, Carlton [mailto:[EMAIL PROTECTED] > Sent: Friday, 10 February 2006 6:18 AM > To: Ant Users List > Subject: Question on error > > Trying to understand some things about this error here... I > don't believe I should be getting it, yet I am. > > >

RE: zip files, upload to ftp, unzip files

2006-02-09 Thread Andrus, Brooks
Awesome stuff--thanks for the responses! Brooks -Original Message- From: Nicolas Vervelle [mailto:[EMAIL PROTECTED] Sent: Thursday, February 09, 2006 3:30 PM To: Ant Users List Subject: Re: zip files, upload to ftp, unzip files I use TAR+GZ to archieve, SCP to copy, SSH to execute comma

Re: zip files, upload to ftp, unzip files

2006-02-09 Thread Nicolas Vervelle
I use TAR+GZ to archieve, SCP to copy, SSH to execute commands remotely. You can check: http://cvs.sourceforge.net/viewcvs.py/jmol/Jmol-web/build-deploy.xml?view=markup De: "Alexey N. Solofnenko" <[EMAIL PROTECTED]> > Usually FTP is the worst option you have (at least SCP is secure). > It is >

Re: zip files, upload to ftp, unzip files

2006-02-09 Thread Alexey N. Solofnenko
Usually FTP is the worst option you have (at least SCP is secure). It is much better to mount destination directory locally and use simple or . If it is impossible, you can run rsync or unison with normal files without zipping them (they work incrementally, so next update will only copy update

Re: zip files, upload to ftp, unzip files

2006-02-09 Thread Geoffrey Mitchell
sshexec? Andrus, Brooks wrote: Hey, I'm an Ant noob, so I apologize in advance. I've created a simple build file which zips up a project and uploads it to an ftp site. The missing piece of the puzzle for me is how I can go about unzipping the file once its been uploaded. I'm not seeing anyth

zip files, upload to ftp, unzip files

2006-02-09 Thread Andrus, Brooks
Hey, I'm an Ant noob, so I apologize in advance. I've created a simple build file which zips up a project and uploads it to an ftp site. The missing piece of the puzzle for me is how I can go about unzipping the file once its been uploaded. I'm not seeing anything in the ftp task that seems to

Question on error

2006-02-09 Thread Brown, Carlton
Trying to understand some things about this error here... I don't believe I should be getting it, yet I am. "The class (ClassA) in file (file) is out of date due to (ClassfileA) but has not been deleted because its source file could not be determined." I have a few issues here... 1) The s

Re: Antwort: RE: Delete task failed to remove French file name

2006-02-09 Thread Thomas Burdairon
sorry i can't reproduce You probably checked it before, but did you verify that you have the authorisation to delete it? did you try to delete it with success with an rm /path/to/your_file ? On Feb 9, 2006, at 4:44 PM, Noel Sebastien (BIL) wrote: ant -version Apache Ant version 1.6.5 co

Re: Antwort: RE: Delete task failed to remove French file name

2006-02-09 Thread ar
I tried the same tag on my Linux system and it works for me. deletes the src directory and all the files in it (with or without é, è, à, ù) My environment variable $LANG=fr_FR.fr AR Le Thu, 09 Feb 2006 16:44:01 +0100, Noel Sebastien (BIL) <[EMAIL PROTECTED]> a écrit: ant -version A

Re: Docmentation

2006-02-09 Thread Steve Loughran
Mark Russell wrote: First of all I'm sorry if this is the wrong list to ask this question on. Is the documentation of ant handled via some kind of transformation process? no, but only for historical reasons What I mean is ant documentation written in some kind of standard meta language an

RE: Antwort: RE: Delete task failed to remove French file name

2006-02-09 Thread Noel Sebastien (BIL)
ant -version Apache Ant version 1.6.5 compiled on June 2 2005 java -version java version "1.4.1_06" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01) Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode) As said in the question, I use and not explicitly the filename.

Antwort: RE: Delete task failed to remove French file name

2006-02-09 Thread dvholten
do you try to delete the file with the name explicitly given in the build.xml? or is it somewhere in a filetree and some pattern find's it and fails to delete? what's your JRE-version ? ant-version ? dvholten

RE: Delete task failed to remove French file name

2006-02-09 Thread Bhatia Saurabh \(CHA\)
I think you should change the filename itself coz on many systems these characters cause problems. -Message d'origine- De : Noel Sebastien (BIL) [mailto:[EMAIL PROTECTED] Envoyé : jeudi, 9. février 2006 16:18 À : Ant Users List Objet : RE: Delete task failed to remove French file name

RE: Delete task failed to remove French file name

2006-02-09 Thread Noel Sebastien (BIL)
Thank you, I tried but it failed. The right answer is probably something relating to the charset (or encoding), you are right. But the mailto:[EMAIL PROTECTED] Sent: jeudi 9 février 2006 16:02 To: Ant Users List Subject: Re: Delete task failed to remove French file name Hi What's the encoding s

Re: Delete task failed to remove French file name

2006-02-09 Thread ar
Hi What's the encoding specified in your build.xml file ? If it's UTF-8, you should try with ISO-8859-1 AR Le Thu, 09 Feb 2006 15:27:52 +0100, Noel Sebastien (BIL) <[EMAIL PROTECTED]> a écrit: Hi all, As you know, french language includes some stressed characters like é, à, etc

Docmentation

2006-02-09 Thread Mark Russell
First of all I'm sorry if this is the wrong list to ask this question on. Is the documentation of ant handled via some kind of transformation process? What I mean is ant documentation written in some kind of standard meta language and then translated into HTML. I'm trying to figure out the b

Delete task failed to remove French file name

2006-02-09 Thread Noel Sebastien (BIL)
Hi all, As you know, french language includes some stressed characters like é, à, etc I have a file called "BD_Modèle.sql" in a "src" folder. I use Ant 1.6.5 on Unix and the task fails saying : Unable to delete file /export/home/wasapps/src/BD_Mod?le.sql at org.apache.tools.ant.taskdefs.Delete.r

Re: Problem making a build.xml using javah

2006-02-09 Thread Steve Loughran
Xar wrote: 2006/2/1, Xar <[EMAIL PROTECTED]>: Hello. I am starting a project that combines both java and C code and I need it to be compiled through ant (because the main aplicattion uses it). I readed the webpage and what's my surprise to see that only version 1.4supports jni (it's that

Re: Problem making a build.xml using javah

2006-02-09 Thread Thomas Burdairon
try cpptasks from ant contrib which works great for jni. Thomas On Feb 9, 2006, at 10:45 AM, Xar wrote: Eeem, no one knows the answer to my question or my mails didn't arrive? 2006/2/1, Xar <[EMAIL PROTECTED]>: Hello. I am starting a project that combines both java and C code and I nee

Re: Problem making a build.xml using javah

2006-02-09 Thread Xar
Eeem, no one knows the answer to my question or my mails didn't arrive? 2006/2/1, Xar <[EMAIL PROTECTED]>: > > Hello. > > I am starting a project that combines both java and C code and I need it > to be compiled through ant (because the main aplicattion uses it). > > I readed the webpage and what'