Re: Forms and getting the ActionServlet from the form

2003-01-30 Thread bkafka
eta I have or in my configuration. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 30, 2003 3:24 PM Subject: RE: Forms and getting the ActionServlet from the form > I prefer your workaround. It is simply not good idea to me to t

RE: Forms and getting the ActionServlet from the form

2003-01-30 Thread pqin
kafka [mailto:[EMAIL PROTECTED]] Sent: January 30, 2003 5:12 PM To: Struts Users Mailing List Subject: Re: Forms and getting the ActionServlet from the form I am trying to get a property passed from a plugin to initialize a List. I have a workaround, which is getting it from the Action and then putting

Re: Forms and getting the ActionServlet from the form

2003-01-30 Thread bkafka
t;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 30, 2003 2:46 PM Subject: RE: Forms and getting the ActionServlet from the form > What do you need to get the ActionServlet in your ActionForm? > > Regards, > > > PQ > > "This Guy Thinks He Knows E

RE: Forms and getting the ActionServlet from the form

2003-01-30 Thread pqin
s Users Mailing List Subject: Re: Forms and getting the ActionServlet from the form The HttpServletRequest is not available from something extending ActionForm. I do use that when I'm in an Action. - Original Message - From: "David Graham" <[EMAIL PROTECTED]> To: <

Re: Forms and getting the ActionServlet from the form

2003-01-30 Thread bkafka
3 12:33 PM Subject: Re: Forms and getting the ActionServlet from the form > You could use the HttpServletRequest to get the HttpSession to get the > ServletContext. > > David > > > > > > > >From: "bkafka" <[EMAIL PROTECTED]> > >Reply-To

Re: Forms and getting the ActionServlet from the form

2003-01-30 Thread David Graham
You could use the HttpServletRequest to get the HttpSession to get the ServletContext. David From: "bkafka" <[EMAIL PROTECTED]> Reply-To: "bkafka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Forms and getting the ActionServlet from the form

Forms and getting the ActionServlet from the form

2003-01-30 Thread bkafka
Hi, I have a Form which extends ActionForm and need to get the ActionServlet instance. When I attempt to do this using this.getServlet() method I am returned a null reference. My actual goal is to get the ServletContext which I should be able to get from the ActionServlet instance. Anybody