HTTP tasks

2005-07-01 Thread Ivan Ivanov
Dear Colleagues, I am looking for an Ant task that implements HTTP PUT method so that I can upload files to a web server. Is there such a task or should I write it myself? Also, while I was googling for it, I noticed that there is a proposal in Ant for http tasks, located at [1], that claim they

junit timeout bug

2005-07-01 Thread Brian Fitzpatrick
When a timeout occurs, the formatter log files do not contain the logs of the test, though if you use "showoutput=true" the logs are visible on the console. This seems to be a bug to me, but I wanted to confirm it before reporting it. If I have a formatter set up for the task and a timeout occur

Re: Need to know if a file is newer than a particular date

2005-07-01 Thread Matt Benson
You're on the right track. You'll need a fileset for the selector; supply pathconvert with this, setting setonempty="false" and your property will remain unset if no files match. HTH, Matt --- Ninju Bohra <[EMAIL PROTECTED]> wrote: > Hello all, > > I have been looking around the ANT help and c

Need to know if a file is newer than a particular date

2005-07-01 Thread Ninju Bohra
Hello all, I have been looking around the ANT help and can not find a concise way to do this so I thought would see anybody has a quick way to do this: I need to determine if a given file (I know its path and name) is newer than a given date. I want to set a property if the file is newer. Any q

Re: AntServer and RemoteAnt problems

2005-07-01 Thread Chad Armstrong
Nice- that was the problem. Thanks so much. Chad On 7/1/05, Ninju Bohra <[EMAIL PROTECTED]> wrote: > If I read the build files correctly the problem is > that your Windows XP build file is trying to execute a > task on the remote ANT (on the linux) that does not > exist. > > The WinXP target nam

Re: AntServer and RemoteAnt problems

2005-07-01 Thread Ninju Bohra
If I read the build files correctly the problem is that your Windows XP build file is trying to execute a task on the remote ANT (on the linux) that does not exist. The WinXP target named = "exec.task.on.remote.ant.server" is trying to run the target named = "task.on.remote.machine" but I don't se