RE: Applet sharing utility class with Servlet - Solution..

2006-05-02 Thread Andrew Bubnic
the servlet, was able to retrieve the class from the applet codebase area. There you go. Too bad I've already modified my design. -Original Message- From: Andrew Bubnic [mailto:[EMAIL PROTECTED] Sent: Tuesday, 02 May 2006 01:48 PM To: Tomcat Users List Subject: RE: Applet sharing utility class

Re: Applet sharing utility class with Servlet

2006-05-01 Thread Jess Holle
This is a feature of the servlet spec. To use a class from both client and server you're forced to have multiple copies of it in your web app -- or alternatively to do non-standard adjustments to the web app loader / classpath. If you don't have too many of these copy cases, I advise just

RE: Applet sharing utility class with Servlet

2006-05-01 Thread Andrew Bubnic
Thanks for the quick reply. Looks like I'm keeping two copies.. serves me right for making my own storage objects for niceness. -Original Message- From: Jess Holle [mailto:[EMAIL PROTECTED] Sent: Tuesday, 02 May 2006 12:06 PM To: Tomcat Users List Subject: Re: Applet sharing utility