Re: Qustion about property prefix...

2006-05-03 Thread Dominique Devienne
On 5/3/06, Trent Ohannessian <[EMAIL PROTECTED]> wrote: Thank you all for your replies. This Ant script is actually running Canoo WebTest. It's testing the small GUI portion of our application. The entire application uses several properties files, but there is just one file per subsystem and th

Re: Qustion about property prefix...

2006-05-03 Thread Trent Ohannessian
Thank you all for your replies. This Ant script is actually running Canoo WebTest. It's testing the small GUI portion of our application. The entire application uses several properties files, but there is just one file per subsystem and the server designations are made by adding a localhost.what

Re: Qustion about property prefix...

2006-05-02 Thread Steve Loughran
Trent Ohannessian wrote: Hello. I'm trying to use the task with a prefix. Here is the code I'm using: -- -- And here is the properties file I'm trying to load: --

Re: Qustion about property prefix...

2006-05-02 Thread Rhino
;fredg"/> addproperty="password" defaultvalue="fredgpw"/> password="${password}" remotedir="${server.resume.dir}" description="Delete all files under resume directory at any level."> addproperty="u

Re: Qustion about property prefix...

2006-05-02 Thread Matt Benson
Looks like you've got prefix backwards. When you set env to localhost and load this file, you should end up with property settings: localhost.localhost.host=localhost localhost.qa.host=qatest.domain.com Ordinarily you would probably set up localhost.properties and qa.properties files, and use yo

Qustion about property prefix...

2006-05-02 Thread Trent Ohannessian
Hello. I'm trying to use the task with a prefix. Here is the code I'm using: -- -- And here is the properties file I'm trying to load: -- localhost.host=localhost q