Re: Obtaining valid ModuleConfig.

2003-02-05 Thread Andrew Kuzmin
Hi ! ModuleConfig config = org.apache.struts.util.RequestUtils.getModuleConfig(pageContext); // since 1.1b3 -- Andrew Kuzmin - Original Message - From: "Zheng, Gang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 7:48 PM Subjec

RE: Obtaining valid ModuleConfig.

2003-02-04 Thread Zheng, Gang
Hi, I just subscribe to the mailing list and this is exactly what I got from the example code. The ModuleConfig is actually stored in the ServletContext (application context) rather than request context. So you have to modify the code to: ModuleConfig config = (ModuleConfig) pageContext.getServl

RE: Obtaining valid ModuleConfig.

2003-01-29 Thread Jörg Maurer
Is it really in request context? sounds more for application context! -Original Message- From: James Nord [mailto:[EMAIL PROTECTED]] Sent: Mittwoch, 29. Jänner 2003 15:13 To: [EMAIL PROTECTED] Subject: Obtaining valid ModuleConfig. Hi, I'm using the following snippet in taglib code but