RE: Ftp task question again

2007-05-01 Thread Robertson, Julie
By using the wildcard character I could build the file name, but how do I specify the server and location of the file, or do I actually do that inside the ftp task? -Original Message- From: Loehr, Ruel [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 01, 2007 1:34 PM To: Ant Users List Subje

RE: Ftp task question again

2007-05-01 Thread Loehr, Ruel
Do you know ahead of time what the filenames might be?If so, then you could do something like this: For one of the files. -Original Message- From: Robertson, Julie [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 01, 2007 1:28 PM To: Ant Users List Subject: Ftp task question again S

Ftp task question again

2007-05-01 Thread Robertson, Julie
Sorry about sending this again, I guess I removed myself from the users list in error, so I wanted to add myself back in and resend this in case someone has an idea to solve my issue. I am trying to copy files using the ftp task and a fileset include which is working just fine. The problem I am h

Reporting build success/failure in /'s output log file?

2007-05-01 Thread Andrew Bayer \(abayer\)
Hi - I'm working on a project that builds a number of subprojects in a dynamically-determined order, based on some information we define in properties. The problem I'm running into is in logging the subprojects - (and therefore ) hardcodes its subproject's build listener as DefaultLogger a

Files exist using ftp task?

2007-05-01 Thread Robertson, Julie
Good day all, I am trying to copy files using the ftp task and a fileset include which is working just fine. The problem I am having is I need to know when 0 files retrieved so that I can send an email if the files are not there. Is there a way to check to see if the files exist using the ftp task

Re: Probable bug found: scp task does not handle correctly directories containing subdirectories

2007-05-01 Thread Jean-Noël Rivasseau
Yes, but there was a bug! The manual example was not working. Actually I finally found the bug: http://issues.apache.org/bugzilla/show_bug.cgi?id=41090 It is due to jsch 0.1.30 On 5/1/07, Martin Gainty <[EMAIL PROTECTED]> wrote: http://ant.apache.org/manual/OptionalTasks/scp.html M

Re: Probable bug found: scp task does not handle correctly directories containing subdirectories

2007-05-01 Thread Martin Gainty
http://ant.apache.org/manual/OptionalTasks/scp.html M-- This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is addressed. If you have received this email message in error, please notify the sende

RE: Re: How to set the next week start date

2007-05-01 Thread cknell
That's fine, but: On what day (for your purposes) does a week start? -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: Satheesh <[EMAIL PROTECTED]> Sent: Tue, 1 May 2007 17:16:50 +0530 To: "Ant Users List" Subject: Re: How to set the next week start

Re: How to set the next week start date

2007-05-01 Thread Satheesh
Thanks Charles, Actually i need the starting date of the next week and last week .. - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Friday, April 27, 2007 7:00 PM Subject: RE: How to set the next week start date > On what day (for your purposes) does a week start? > Will you ta

Re: How to set the next week start date

2007-05-01 Thread Satheesh
Hi, Actually what i need is irrespective of the current date, i need the starting date of the next week and starting date of the last week.. - Original Message - From: "Gilbert Rebhan" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Saturday, April 28, 2007 1:03 AM Subject: Re: How to set

Re: Re: build.xml for running applets

2007-05-01 Thread Prashant Reddy
> I want to know, similarly how to run a compiled applet pgm, using build. > Hope you understood my problem now. Yes, I also addressed this towards the end of my last email. Reproducing here... ANT also has 'exec' task which can execute any commands. So appletviewer command can also be called f

Re: Re: build.xml for running applets

2007-05-01 Thread vimisoman
Thanks for the response but my problem is not about writing applet code... but it is about writing a build.xml for executing the applets.. i wrote a build for compiling and running java stand alone programs.. but now i want to write a build for executing a simple java applet. eg. for running a com

Re: build.xml for running applets

2007-05-01 Thread Prashant Reddy
>From : http://java.sun.com/docs/books/tutorial/deployment/applet/index.html In order to load an applet in a web page, you must specify the applet class with appropriate applet tags. A simple example is below: For development and testing purposes, you can run your appl

Re: Perform a task for every folder from the file.

2007-05-01 Thread mpr
Any suggestions, please? mpr wrote: > > I have one more question connected with a topic as well. > > I use > match="^(~~.+)$" select="\1"/> > but i would like to do operation as fallows: > match="^(${prefix}.+)$" select="\1"/> > where ${prefix} is user defined property > > > How to do th

build.xml for running applets

2007-05-01 Thread vimisoman
hi all!! i am new with ant. For one of my projects, i need to write a simple build.xml for compiling and running java applets.. i am able to compile those applets but don't know how to run those.. can anyone help me in writing the code for running applets.. I searched in net for a sample code for t