Re: Configuration for Action

2001-06-22 Thread Yuriy Zubarev
(with accessor methods getParameter() and setParameter()) that you can use for this purpose. Third, there is a way to store Action-specific configuration information in struts-config.xml. It's a little involved, but goes basically like this: * Write your own subclass of ActionMapping

Re: Configuration for Action

2001-06-22 Thread Craig R. McClanahan
parameter (with accessor methods getParameter() and setParameter()) that you can use for this purpose. Third, there is a way to store Action-specific configuration information in struts-config.xml. It's a little involved, but goes basically like this: * Write your own subclass

Configuration for Action

2001-06-21 Thread Yuriy Zubarev
Hello everybody, While working directly with servlets, in configuration file you can specify initial valus of parameters for a servlet in the following way: init-param param-name parameter /param-name param-value value /param-value /init-param And you can easily get those

Re: Configuration for Action

2001-06-21 Thread Mike Thompson
) { //uh oh, error } - Original Message - From: Yuriy Zubarev [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 21, 2001 2:09 PM Subject: Configuration for Action Hello everybody, While working directly with servlets, in configuration file you can specify initial valus

Re: Configuration for Action

2001-06-21 Thread Yuriy Zubarev
Subject: Configuration for Action Hello everybody, While working directly with servlets, in configuration file you can specify initial valus of parameters for a servlet in the following way: init-param param-name parameter /param-name param-value value

Re: Configuration for Action

2001-06-21 Thread Craig R. McClanahan
of an ActionMapping called parameter (with accessor methods getParameter() and setParameter()) that you can use for this purpose. Third, there is a way to store Action-specific configuration information in struts-config.xml. It's a little involved, but goes basically like this: * Write your own