RE: html:img questions

2001-07-21 Thread Jake Thompson
Ok, followup on my own question. I have Tomcat 3.2.3 running with Apache. If I go to tomcat directly (port 8080) that is, it handles everything fine. It seems that Apache flubs up on the images encoded with the session. Has anyone else experienced this and is there an easy solution? Thanks,

Re: XML question

2001-07-21 Thread Robert Egan
Hi Domingo, These notes may or may not help with your problem. ** = Release Notes = $Id:

Re: Struts with Oracle 9i Application Server and Jdeveloper....

2001-07-21 Thread SRadford
I (and others) have had problems with OC4J and it's ApplicationContextClassLoader. Not a struts specific issue but has ocurred in all web-apps deployed into OC4J. Orion seem to be ignoring this bug report (#389). Regards, Sean -- Dr Sean

Re: web application initialization

2001-07-21 Thread Fabien Le Floc'h
Thank you for the tip, this is definitely working and is not too ugly. However I still find a little bit stupid we have to create a new Servlet just to use its init method. Or maybe not if your Log4j servlet allows you to modify the logging / the log4j properties remotely (but that is another

RE: web application initialization

2001-07-21 Thread Martin, Margaret
I've had success with this, but I only overrode initApplication(), rather than all of init(). is your web.xml pointing to your new subclass? -Original Message- From: Fabien Le Floc'h [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 11:06 PM To: [EMAIL PROTECTED]; [EMAIL

code reuse

2001-07-21 Thread Steve LeClair
Our firm is has been using the struts framework to build our application demos. Now that we are shifting into a development cycle for a production release, we'd like to know more about how to build the struts side of our codebase with reuse in mind. Has anyone collected threads on reuse

Re: web application initialization

2001-07-21 Thread Fabien Le Floc'h
ok you are right (don't know what I did in my previous test) but extending ActionServlet works fine :). Thank you Fabien Martin, Margaret [EMAIL PROTECTED] writes: I've had success with this, but I only overrode initApplication(), rather than all of init(). is your web.xml pointing to your

Re: web application initialization

2001-07-21 Thread Calvin Yu
Another thing you can do is use the ServiceManager extension that's under the contrib directory in CVS. I've just started to look at it myself. Its seems to be a fairly new contributions, so documentation is pretty scarse. Calvin 19 Jul 2001 21:05:32 -0700, Fabien Le Floc'h wrote: Thank