Re: classpath issues??

2002-02-06 Thread Jacky Cheung
You can put allsrc.jar under WEB-INF/lib of your webapp. Or you can put the jar in ear and add an entry Class-Path: allsrc.jar in the manifest file of the ear. Best regards, Jacky - Original Message - From: Dan Ascheman [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent:

Re: Servlet JDBC character conversion problem

2001-10-15 Thread Jacky Cheung
In Oracle, you can use UTF-8 to store data to avoid conversion problem. Jacky - Original Message - From: Eduardo San Martin B. [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, October 16, 2001 8:36 AM Subject: Re: Servlet JDBC character conversion problem Gustavo:

Re: help jsession problem -urgent

2001-05-25 Thread Jacky Cheung
Kesav, It seems that your are using url rewriting to track sessions. According to the Servlet specification, for session tracking using URL rewriting, a path parameter should be added. I think the url should be... http://localhost/vms/servlet/Logout;JSESSIONID=x?fileName=blah You can find