Re: How to get a reference to an Action instance

2003-01-01 Thread Lirian Ostrovica
that the action operates on the request before the JSP... Quoting Martin Cooper [EMAIL PROTECTED]: On Sun, 29 Dec 2002, Lirian Ostrovica wrote: Hi, I need to access an Action instance (I have its class name) while writting a Tag. I have seen that ActionServlet stores Action

How to get a reference to an Action instance

2002-12-29 Thread Lirian Ostrovica
Hi, I need to access an Action instance (I have its class name) while writting a Tag. I have seen that ActionServlet stores Action instances in a 'protected' variable (FastHashMap), and so far the only way I can see, is to extend ActionServlet and write my own 'public' method to do the job. But

Re: How to get a reference to an Action instance

2002-12-29 Thread Lirian Ostrovica
methods. Of course, using the pooled instances maintained by struts would be better performance wise. Taylor - Original Message - From: Lirian Ostrovica [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, December 29, 2002 11:09 AM Subject: How