How to get The FAQ

2007-09-14 Thread Varuna Seneviratna
The ezmlm program says to mail to [EMAIL PROTECTED] to get the list of FAQ.But the reply I got after mailing is that such a FAQ list does not exist.How will I be able to get the FAQ vauna

What should be downloaded

2007-09-14 Thread Varuna Seneviratna
Hi I am new to Ant.Can you please tell me what to download.In the main distribution directory the list is: [image: [DIR]] Parent Directory - [image: [ ]] KEYS 01-Sep-2006 20:29 47K [image: [TXT]] RE

Addendum RELO available 4 Staff SCM position-Mt. View

2007-09-14 Thread Cox, Chris
Hey all forgive me for sending this out again, but I have confirmed we offer relo for the Staff SCM Engineer position here at Intuit in Mt. View. If you recommend any folks who might be interested I'd love to chat w/ them. Thanks again!! Chris Cox Candidate Generation Recruiter 415/681-366

RE: clientgen error: Could not find ejbjar for component

2007-09-14 Thread Walter Moore
ok, I found the error. I needed an application.xml describing the ear file: === http://java.sun.com/dtd/application_1_3.dtd'> MyToolsWeb.war mytools MyToolsEJB.jar === and I needed to add a target to put the application.xml int

RE: war inlcude problem

2007-09-14 Thread Barry Pape
If I understand correctly, adding the prefix attribute should do the trick: Regards, Barry -Original Message- From: Mitja B. [mailto:[EMAIL PROTECTED] Sent: Fri

Re: When using ExecuteJava in other class, JVM don't allow to create streams.

2007-09-14 Thread Alexey Mel'nikoff
Any one can help me? I try to extend Java task, and I get same error. Class which I try to execute cannot get output and input streams. This my code: package com.reksoft.documentum.tools.ant.taskdefs.dai; import java.io.File; import java.util.ArrayList; import java.util.Collection; import org.

Re: AW: Import build files from a jar?

2007-09-14 Thread Scot P. Floess
Peter: Ah... Point well taken :) Thanks! Scot Peter Reilly wrote: Hi Scot, this is a feature that may get into ant 1.8.0. There is a bugzilla issue associated with it: http://issues.apache.org/bugzilla/show_bug.cgi?id=29251 The main problem at the moment is - what does "ant.file.<>" mean an

Re: When using ExecuteJava in other class, JVM don't allow to create streams.

2007-09-14 Thread Alexey Mel'nikoff
Any one can help me? I try to extend Java task, and I get same error. Class which I try to execute cannot get output and input streams. This my code: package com.reksoft.documentum.tools.ant.taskdefs.dai; import java.io.File; import java.util.ArrayList; import java.util.Collection; import org.

Re: AW: Import build files from a jar?

2007-09-14 Thread Peter Reilly
Hi Scot, this is a feature that may get into ant 1.8.0. There is a bugzilla issue associated with it: http://issues.apache.org/bugzilla/show_bug.cgi?id=29251 The main problem at the moment is - what does "ant.file.<>" mean and how to do relative importing. Peter On 9/14/07, Scot P. Floess <[EMA

Synchronizing processes in ant

2007-09-14 Thread Derek Alexander
Hi, Need to ensure that the same ant task can't be run multiple times concurrently by the same user. Having checked the docs, googled and searched the list archives am surprised not to have found any convenient way to do this. Am starting to look at combining the waitfor task with java.nio.channe

Re: AW: Import build files from a jar?

2007-09-14 Thread Scot P. Floess
Jan: Thanks for the reply! Yeah, I know I can unzip or unjar... Really, this isn't functionality I need per say... I had been thinking of a way to package up my build environment for others to use in conjunction with Ivy... As my environment contains a number of reusable things - such as X

Re: AW: AW: Need to add one generic get/set attribute in Project API

2007-09-14 Thread aatankwadi aatankwadi
Thanks, it worked thing is that I was using Project project = getProject(); project.addReference(str,obj) and project.getReference(str) I replaced it to getProject().addReference(str,obj) and getProject().getReference(str) and it worked. Can you please

war inlcude problem

2007-09-14 Thread Mitja B.
i want to create war file, but i have problem with including lib files into lib folder I have lib files in different lib dirs. How can i include it? This does not work thx

AW: AW: Need to add one generic get/set attribute in Project API

2007-09-14 Thread Jan.Materne
What does not work? I did a little test and its ok import java.util.Date; public class MyTask extends org.apache.tools.ant.Task { public void execute() { log("Date is: " + getDate()); } private Date getDate() { Date date = (Date)getProject().getReference("date");

Re: AW: Need to add one generic get/set attribute in Project API

2007-09-14 Thread aatankwadi aatankwadi
Hi, I am adding reference through java code project.addReference("conn",conn) where conn is my connection object, but I m getting Null Pointer exception here The code for addReference in Project class is public void addReference(String referenceName, Object value) {

RE: Xms memory limit problem

2007-09-14 Thread Rebhan, Gilbert
Hi, -Original Message- From: PHILIPPE Johan [mailto:[EMAIL PROTECTED] Sent: Friday, September 14, 2007 10:21 AM To: Ant Users List Subject: RE: Xms memory limit problem /* I don't know which ant version you are using, but the java task from ANT 1.7.0 does not have any such attribute.

Re: AW: Need to add one generic get/set attribute in Project API

2007-09-14 Thread aatankwadi aatankwadi
I already Used it but it is not working [EMAIL PROTECTED] wrote: Use set/getReference ;-) Jan >-Ursprüngliche Nachricht- >Von: aatankwadi aatankwadi [mailto:[EMAIL PROTECTED] >Gesendet: Freitag, 14. September 2007 09:18 >An: Ant Users List >Betreff: Need to add one generic get/set att

AW: Need to add one generic get/set attribute in Project API

2007-09-14 Thread Jan.Materne
Use set/getReference ;-) Jan >-Ursprüngliche Nachricht- >Von: aatankwadi aatankwadi [mailto:[EMAIL PROTECTED] >Gesendet: Freitag, 14. September 2007 09:18 >An: Ant Users List >Betreff: Need to add one generic get/set attribute in Project API > >Hi, > > I m facing a problem, I want t

RE: Xms memory limit problem

2007-09-14 Thread PHILIPPE Johan
I don't know which ant version you are using, but the java task from ANT 1.7.0 does not have any such attribute. > -Original Message- > From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] > Sent: vrijdag 14 september 2007 8:49 > To: Ant Users List; Mitja B. > Subject: RE: Xms memory limit pro

Need to add one generic get/set attribute in Project API

2007-09-14 Thread aatankwadi aatankwadi
Hi, I m facing a problem, I want to persist one object through out my project, so I want to put it in some name/value pair, so that I can access it anywhere in my project. I am developing a custom sql task that can reuse the connection object created once, rather then using current s

When using ExecuteJava in other class, JVM don't allow to create streams.

2007-09-14 Thread Alexey Melnikoff
I try to create ant task which launch java in separate VM with specified paramaters. I try to execute class, which creates output and input streams. When I did it in task, all works, but when I try to use it in my task, streams are not created. And class from lib can't work with files and user in