Re: Problems using URL tasks

2012-09-14 Thread Harold Putman
fileName=c:/Users/marvin/Documents/B2Development/LINF-test.war&clean=true&available=true On Fri, Sep 14, 2012 at 3:09 PM, Rob Tanner wrote: > Hi, > > I have a project where I need to do a specific GET request to a server to > let it know that a new application has been copied to a mounted partit

Problems using URL tasks

2012-09-14 Thread Rob Tanner
Hi, I have a project where I need to do a specific GET request to a server to let it know that a new application has been copied to a mounted partition and needs to be installed (I was doing this manually, but would like to automate it). If I to the GET without any parameters, the request works

RE: problem trying to set individual tests timeout

2012-09-14 Thread Martin Gainty
Be careful NOT to set forkMode to anything but 'never' a OS that can take >2048 byte character assignment for the Task would cut off the command buffer at 2048 e.g. "java -classpath fu.jar;bar.jar 2050 bytes later... fubar.jar MyTest.class" expect this command to FAIL on any OS that cut of

Re: problem trying to set individual tests timeout

2012-09-14 Thread Laura Dean
As I read it, that's the expected behavior: When running multiple tests inside the same Java VM (see forkMode), timeout applies to the time that all tests use together, not to an individual test. http://ant.apache.org/manual/Tasks/junit.html You have forkMode set to once, which means