Re: Fw: Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread shree vinayakh
hi, Test Mail the above is my ant task and it works well with the attachment too... i got the same problem with the mime types. i added pop3.jar, smtp.jar, mail.jar, mailapi.jar and activation.jar. once this is done i was able to send emails without any problem using my ant task. regar

Re: Memory Leak on Solaris?

2006-05-09 Thread Ritesh Trivedi
I am starting my app from command line e.g. java [OPTIONS] -jar myjar.jar [my commandline args] I have tried both, with and without Xms and Xmx options. It still leaks. My app basically "executes" ant targets from within the app (cant really mention what app does). I am using the following code

RE: Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread Noel J. Bergman
Unless the Ant project has started using the Mailet API, I don't believe that this has anything to do with the Mailet mailing list. For whatever reason, the server appears to be failing to authenticate the SMTP connection initiated by Ant. --- Noel --

RE: Import Task

2006-05-09 Thread jason heddings
I had missed that point in the manual... Thanks! -Original Message- From: Dominique Devienne [mailto:[EMAIL PROTECTED] Sent: Tuesday, 09 May, 2006 11:22 To: Ant Users List Subject: Re: Import Task > I'm using Ant version 1.6.5 and I'm trying to use the import task. The > manual shows

Re: Import Task

2006-05-09 Thread Dominique Devienne
I'm using Ant version 1.6.5 and I'm trying to use the import task. The manual shows that in the imported file, ant.file.imported should be set, however I'm not seeing this property. http://ant.apache.org/manual/CoreTasks/import.html As written in the manual, the property will be called "ant.fil

Import Task

2006-05-09 Thread jason heddings
Hello- I'm using Ant version 1.6.5 and I'm trying to use the import task. The manual shows that in the imported file, ant.file.imported should be set, however I'm not seeing this property. http://ant.apache.org/manual/CoreTasks/import.html I wrote the attached little task to display the properti

Re: ANT SCP Via a Java App

2006-05-09 Thread Atsuhiko Yamanaka
Hi, 2006/5/9, Gareth Kelly <[EMAIL PROTECTED]>: Works fine when passing in username and password. I set up a trusted connection by creating a public/private key pair and appending the identity.pub to the remote authorized_keys. The internal ssh client can not understand ssh1 public/private key

RE: Problems with property file task

2006-05-09 Thread EJ Ciramella
Never mind again, I was using instead of tolist="${list}". -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 09, 2006 12:12 PM To: Ant Users List Subject: RE: Problems with property file task Better question - how can I mail to a group of people? I too

RE: ANT SCP Via a Java App

2006-05-09 Thread Anderson, Rob (Global Trade)
You need to specify either a password or a passphrase, as the error indicates. If you generated keys with no passphrase, I believe you should specify the passphrase as an empty string. I could be wrong, but give that a try. -Rob A > -Original Message- > From: Gareth Kelly [mailto:[EMAIL P

RE: Problems with property file task

2006-05-09 Thread Srikrishna_Parthasarathy
-Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 09, 2006 11:10 AM To: Ant Users List Subject: Problems with property file task Hey guys, I'm having a bit of an issue with the propertyfile task. I have a build script that captures a date range worth of

RE: Problems with property file task

2006-05-09 Thread EJ Ciramella
Better question - how can I mail to a group of people? I took the tolist and put in a maillinglist.properties file something like this: [EMAIL PROTECTED],[EMAIL PROTECTED] Then in the ant mail task I'm using, I do Tolist="${to.list}" But it doesn't like spaces, commas or sems. Any help would

RE: Problems with property file task

2006-05-09 Thread EJ Ciramella
Nevermind - my close target task is what was goofing it up. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 09, 2006 11:10 AM To: Ant Users List Subject: Problems with property file task Hey guys, I'm having a bit of an issue with the propertyfile task

Problems with property file task

2006-05-09 Thread EJ Ciramella
Hey guys, I'm having a bit of an issue with the propertyfile task. I have a build script that captures a date range worth of changes to a file then use that file as the message body for an email: mailto:[EMAIL PROTECTED]"/> > mailto:[EMAIL PROTECTED]"/

Re: Problem with Junit report with weblogic 8.1 SP3

2006-05-09 Thread Antoine Levy-Lambert
Hello Devaraj, I am aware of this problem. Either remove weblogic.jar from your class path, or see if you can "amputate" it, by removing a META-INF/services directory inside the jar. I suspect there is such a directory, which would tell the system to use the weblogic factories for XML APIs.

Problem with Junit report with weblogic 8.1 SP3

2006-05-09 Thread Devaraj, Geethakrishnan
Hi All, I used junit reports to create reports from xml files.It worked fine in my local environment (Weblogic 8.1 SP4) but failed in Weblogic 8.1 SP3 with the message Could not find a valid processor version implementation from weblogic.xml.jaxp.RegistrySAXTransformerFactory.Any possible work

RE: junitreport error: ClassNotFoundException: redirect

2006-05-09 Thread Dave Rathnow
I was wondering if anyone has any idea what may be causing this and what a possible solution would be. Thanks, Dave. -Original Message- From: Dave Rathnow [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 8:58 AM To: Ant Users List Subject: RE: junitreport error: ClassNotFoundExce

RE: Setting Xalan to junitreport

2006-05-09 Thread Weston, Toby
Thanks, I'll do that - I was looking for an opportunity to contribute so maybe I can help... ta Antoine Levy-Lambert wrote: > > If you want to follow the discussion further, we should do it on the > developer list (dev at ant.apache.org). >

Re: [SPAM-H] - Re: Fw: Ant mail problem SMTPSendFailedException Client was not authenticated - Email has different SMTP TO: and MIME TO: fields in the email addresses

2006-05-09 Thread Devaraj, Geethakrishnan
Thanks Scot, Well to explain about our netwotk setup.. we have 2 networks 172.16.1.0 and 172.16.2.0 .my system is in 172.16.2.0 and we have a DNS server alais as mail.ncmr.co.in pointing the actual mail server(dc2) which is available at 172.16.1.6(1st network).This is how we are currently using o

Re: Setting Xalan to junitreport

2006-05-09 Thread Antoine Levy-Lambert
Hello Toby, it is not 100% straightforward. junitreport normally works by pulling the stylesheets from ant.jar. The task normally only works with plain files as stylesheets. So I will first process a bug report showing how to use a resource as the stylesheet in the task. Afterwards, if th

Re: Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread Scot P. Floess
Geethakrishnan: Make sure your username/password is correct. Also ensure you are using the correct SMTP server (yours is listed as mail.ncmr.co.in )... I was able, using my own email server, to send using your build.xml. Scot Devaraj, Geethakrishnan wrote: Hi All, I got ur id from the a

Re: Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread Antoine Levy-Lambert
Hello Geethakrishnan, Are you sure that your user for mail.ncmr.co.in is geethakrishnan and not [EMAIL PROTECTED] ? The same parameters which work in Outlook or Thunderbird to setup your SMTP parameters should be used in Ant. I have 2 email accounts, and in both case my SMTP user is the same as

Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread Devaraj, Geethakrishnan
Hi All, I got ur id from the ant mailing list.Could u help me with this problem.I am using Ant 1.6.2 to send a mail i have downloaded mail.jar and aactivation.jar .My ant task looks as below. TEST MAIL FROM ANT when i try to run ant -debug m

Re: Fw: Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread Scot P. Floess
I more or less ran your build.xml (well using my password/username and my SMTP server) and it worked for me... Scot P. Floess wrote: Are you sure your user name and/or password are correct? It looks like the SMTP server is complaining about one of them. Also, just to make extra sure (as you

Re: Fw: Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread Scot P. Floess
Are you sure your user name and/or password are correct? It looks like the SMTP server is complaining about one of them. Also, just to make extra sure (as you say you can telnet to the box), is mail.ncmr.co.in your SMTP server or pop server? I ask, because I know at Earthlink I have a pop se

Fw: Ant mail problem SMTPSendFailedException Client was not authenticated

2006-05-09 Thread Devaraj, Geethakrishnan
Hi All, Could u help me with this problem.I am using Ant 1.6.2 to send a mail i have downloaded mail.jar and aactivation.jar and put it in my ANT_HOME/lib.My ant task looks as below. TEST MAIL FROM ANT when i try to run ant -debug mail i get

ANT SCP Via a Java App

2006-05-09 Thread Gareth Kelly
Hi, Not sure if this is the correct mailing list, but hopefully someone can help me. I have been using the ant and ant-jsch.jar in a java app to scp files from one machine to another. Works fine when passing in username and password. I set up a trusted connection by creating a public/private key

Re: trouble with inheritrefs in version 1.5.4

2006-05-09 Thread Grant Lewis
Stefan Bodewig wrote: > On Mon, 08 May 2006, Grant Lewis <[EMAIL PROTECTED]> wrote: > >> In my child project I have the following path definition: >> >> >>

Re: Memory Leak on Solaris?

2006-05-09 Thread Scot P. Floess
How are you starting your java app? Are you using any memory options? What does your app do? Sorta difficult to say for sure without more information. Ritesh Trivedi wrote: Hi, I am using j2sdk 1.4.2_10 and Ant 1.6.5. I am using Ant Java API and calling and executing Ant target from within

RE: Setting Xalan to junitreport

2006-05-09 Thread Weston, Toby
Hi Antoine, Sounds good, do you think it'll be straight forward? Thanks again, Toby Antoine Levy-Lambert wrote: > Hello Toby, > > I am thinking of changing junitreport to make it wrap around ant's > style task. > > Regards, > > Antoine > > Weston, Toby wrote: >> Hi Folks, >> >> I'm having