Re: mailer javax/mail/Authenticator

2005-06-21 Thread TroyGeek
Do you also need mail.jar (in addition to activation.jar) in your classpath? On 6/21/05, Lorenzo Sicilia <[EMAIL PROTECTED]> wrote: > Hi to all, > > I use tag mailer with jrun4 and all works fine. > Now, I want switch from jrun to tomcat 5. > > I have fix some bugs but the tag mailer return an

mailer javax/mail/Authenticator

2005-06-21 Thread Lorenzo Sicilia
Hi to all, I use tag mailer with jrun4 and all works fine. Now, I want switch from jrun to tomcat 5. I have fix some bugs but the tag mailer return an exception: javax.servlet.ServletException: javax/mail/Authenticator org.apache.jasper.servlet.JspServlet.service(JspServlet.java:244)

Re: Problem with SQL Dates since MySQL Upgrade

2005-06-21 Thread TroyGeek
But shouldn't JSTL be doing all of that for me? I'm not dealing with any java scriplet...just JSTL tags. I'm using , , to print out the data. Maybe the combination of the new database version and old driver returned a byte array where it should have been returning a string? Either way, after upgra

Re: Problem with SQL Dates since MySQL Upgrade

2005-06-21 Thread Dima Gutzeit
That problem was that you were getting byte array instead of String, you could bypass it by creating new String object from this byte array. - Original Message - From: "TroyGeek" <[EMAIL PROTECTED]> To: Sent: Tuesday, June 21, 2005 1:42 PM Subject: Re: Problem with SQL Dates since My

Re: Problem with SQL Dates since MySQL Upgrade

2005-06-21 Thread TroyGeek
I figured out the problem on my own. I upgraded my JDBC driver for MySQL from 3.1.6 to 3.1.8 and now everything works fine. thank you. On 6/18/05, TroyGeek <[EMAIL PROTECTED]> wrote: > Hello, > I'm using Tomcat 5.0.28. I think I might be using JSTL 1.0. I'm using > Java 1.4.2_05. > I develop a sm