Re: [email] JavaMail works Commons Email does not

2012-01-10 Thread Siegfried Goeschl
Hi folks, it is also useful to call Mail.setDebug(true) which turns on the debugging of the mail session. Having said that some stepping though the code might provide some insight ... :-) Cheers, Siegfried Goeschl On 10.01.12 12:06, Christian Grobmeier wrote: On Tue, Jan 10, 2012 at 11:54

Re: Track progress of a file copy?

2012-01-10 Thread Smig
Thanks for pointing me to the right direction! I got it to work now. 2012/1/9 sebb-2-2 [via Apache Commons] < ml-node+s680414n4279799...@n4.nabble.com> > On 9 January 2012 18:27, Gary Gregory <[hidden > email]> > wrote: > > I've wanted to do

[dbcp] BasicDataSource.createConnectionFactory() fails

2012-01-10 Thread GMail - Ugo Gagliardelli
I'm trying to use BasicDataSource 1.3 (latest release downloaded just now) using a custom classloader. In other words I set a ClassLoader with setDriverClassLoader method. When I try to create a connection, I get an SQL Exception from createConnectionFactory(). Looking at source code, I see that

Re: [email] JavaMail works Commons Email does not

2012-01-10 Thread Christian Grobmeier
On Tue, Jan 10, 2012 at 11:54 AM, Frank Sullivan wrote: > Nothing happens.  No exceptions.  No logging (I set logging for > "org.apache.commons.mail" to TRACE).  Nothing. Thats weird. Have you tried to debug and look if all properties are set or if the code is actually called? Cheers > Thanks,

RE: [email] JavaMail works Commons Email does not

2012-01-10 Thread Frank Sullivan
Nothing happens. No exceptions. No logging (I set logging for "org.apache.commons.mail" to TRACE). Nothing. Thanks, Frank -Original Message- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Tuesday, January 10, 2012 5:37 AM To: Commons Users List Subject: Re: [email] J

Re: [email] JavaMail works Commons Email does not

2012-01-10 Thread Konstantin Kolinko
2012/1/10 Frank Sullivan : > I have a web application (Flex, Spring, Hibernate) that has a simple email > module that uses Common Email.  Currently it only sends plain text messages. > Here is basically what happens: > > HtmlEmail email = new HtmlEmail(); > email.setHostName(smtpHost); > email.se

[email] JavaMail works Commons Email does not

2012-01-10 Thread Frank Sullivan
I have a web application (Flex, Spring, Hibernate) that has a simple email module that uses Common Email. Currently it only sends plain text messages. Here is basically what happens: HtmlEmail email = new HtmlEmail(); email.setHostName(smtpHost); email.setAuthentication(smtpUser, smtpPassword);