Re: Class not found in taskdef

2006-08-21 Thread Thierry Rietsch
ups, yes that's another failure :-) thanks a lot. Antoine Levy-Lambert wrote: > > Hello Thierry, > > you are taskdefing the wrong class, the class you are entering in your > taskdef does not exist or cannot be used as an ant task (no execute method) > > a short search in google tells me this :

Re: Class not found in taskdef

2006-08-21 Thread Thierry Rietsch
Thanks, the refid was the solution! Rainer Noack wrote: > see below. > > cheers > > rainer > >> -Original Message- >> From: Thierry Rietsch [mailto:[EMAIL PROTECTED] >> Sent: Sunday, August 20, 2006 4:52 PM >> To: user@ant.apache.org >> Subject: Class not found in taskdef >> >> >> Hi a

RE: Help Reqd: Testing Automation through Ant

2006-08-21 Thread Row M, Vishal
Hi Sriram You can try with Grinder its good Vishal -Original Message- From: Sriram [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 22, 2006 12:03 PM To: Ant Users List Subject: Help Reqd: Testing Automation through Ant Hi, We are into the Engg. Application develoment. We use the C+

Help Reqd: Testing Automation through Ant

2006-08-21 Thread Sriram
Hi, We are into the Engg. Application develoment. We use the C++/VC++ for application development. The session is in Python. The session and automation of the tasks are done through Python/Python COM This way the tool is open to the third party through Python. We are now in phase to set up a u

Re: ant, rsync and ssh passphrase

2006-08-21 Thread Michael Bauroth
Thank you Antoine! Regards Michael Antoine Levy-Lambert wrote: Hi, if the implementation of rsync asks for the passphrase on the console and not from stdin (programs like su or login do this for their query of password) there is no way you can give the passphrase when starting rsync using

RE: Class not found in taskdef

2006-08-21 Thread Rainer Noack
see below. cheers rainer > -Original Message- > From: Thierry Rietsch [mailto:[EMAIL PROTECTED] > Sent: Sunday, August 20, 2006 4:52 PM > To: user@ant.apache.org > Subject: Class not found in taskdef > > > Hi all > > I like to run the com.sun.tools.ws.WsGen tool from the > build.xml

Re: Class not found in taskdef

2006-08-21 Thread Antoine Levy-Lambert
Hello Thierry, you are taskdefing the wrong class, the class you are entering in your taskdef does not exist or cannot be used as an ant task (no execute method) a short search in google tells me this : Regards, Antoine On Aug 20, 2006, at 5:52 PM, Thierry Rietsch wrote:

Re: ant, rsync and ssh passphrase

2006-08-21 Thread Antoine Levy-Lambert
Hi, if the implementation of rsync asks for the passphrase on the console and not from stdin (programs like su or login do this for their query of password) there is no way you can give the passphrase when starting rsync using the ant task exec. interacts with executables the same way as a

Re: java.lang.NoSuchMethodError: org.mozilla.javascript.Context.getDebuggableEngine()Lorg/mozilla/javascript/debug/DebuggableEngine;

2006-08-21 Thread Antoine Levy-Lambert
Hello Jack, not sure, maybe rhino.jar ? no, actually, this does not mean that a jar is missing, but rather that you do not have the right versions of bsf.jar, js.jar, rhino.jar (meaning matching versions containing each the function calls that work together). our docu says this : js.jar

Re: Class not found in taskdef

2006-08-21 Thread Antoine Levy-Lambert
Hello Thierry, you are taskdefing the wrong class, the class you are entering in your taskdef does not exist or cannot be used as an ant task (no execute method) a short search in google tells me this : Regards, Antoine On Aug 20, 2006, at 5:52 PM, Thierry Rietsch wrote:

Re: example which shows how to use the External Javac Compiler

2006-08-21 Thread Antoine Levy-Lambert
Hi, when you use the external compiler setting of ant, you have to set the attribute executable to be the full path of the compiler. I hope that it works for you. If not email this list again. Might end up into a bug report. By the way, what is the J9 compiler ? Regards, Antoine On Aug

java.lang.NoSuchMethodError: org.mozilla.javascript.Context.getDebuggableEngine()Lorg/mozilla/javascript/debug/DebuggableEngine;

2006-08-21 Thread Jack J. Woehr
Going a little blind from looking at this. Know I'm missing a dependency jar, but which one? Here's the error: /Users/jjw/Work/jaxjava/SoftWoehr/com/SoftWoehr/macros.xml:39: java.lang.NoSuchMethodError: org.mozilla.javascript.Context.getDebuggableEngine()Lorg/mozilla/ javascript/debug/Deb

RE: How to fail if macro attribute is not set

2006-08-21 Thread Master, Tariq \(Abbeywood\)
Scott, Cheers, Smart dude! To reflect my sillyness Ant by default shows the error: required attribute idea not set -Original Message- From: Scot P. Floess [mailto:[EMAIL PROTECTED] Sent: 21 August 2006 16:47 To: Ant Users List Subject: Re: How to fail if macro attribute is not

Re: How to fail if macro attribute is not set

2006-08-21 Thread Scot P. Floess
Here: I think in your example the attribute idea will be required. Is your question more like, "how do I ensure the attribute idea is not empty?" If so, the above should solve your problem... I didn't run the above...so t

How to fail if macro attribute is not set

2006-08-21 Thread Master, Tariq \(Abbeywood\)
I would like my macro definition to fail if an attribute is not. Example: The fail in the above case always fails as the attribute isn't recognised as a property. Unless I'm incorrect. Ideas or potential idea for Ant 1.7+ ? Tariq --

Re: Task processing a DirSet one by one?

2006-08-21 Thread Mathieu Champlon
Chaudhuri, Hiran a écrit : Hi there. I have a directory with several subdirectories. Each subdirectory shall be zipped up in its own file. As the number of subdirectories can vary, I do not want to code each zip task explicitly but rather use a loop with a DirectorySet. Which Ant task can proce

Task processing a DirSet one by one?

2006-08-21 Thread Chaudhuri, Hiran
Hi there. I have a directory with several subdirectories. Each subdirectory shall be zipped up in its own file. As the number of subdirectories can vary, I do not want to code each zip task explicitly but rather use a loop with a DirectorySet. Which Ant task can process a Directory/FileSet and ca