Re: i18n Forwards

2002-02-24 Thread Dmitri Valdin
I just don't want to get this thread die especially considering the fact, that beta 1.1 will be released soon. There were several proposals, but there is still no decision how should struts resolve this problem. Or perhaps I have missed something. Dmitri Valdin > > What I was

Profiler

2002-02-24 Thread Dmitri Valdin
w Date())); NDC.pop(); } Now we can start the application and after some time have a look at monitor files. I have attached a sample monitor.log file and a profiler for watching the results. The profiler can be started with java -jar profiler.jar You should open the monitor fi

Re: i18n Forwards

2002-02-25 Thread Dmitri Valdin
I just don't want to get this thread die especially considering the fact, that beta 1.1 will be released soon. There were several proposals, but there is still no decision how should struts resolve this problem. Or perhaps I have missed something. Dmitri Valdin > > What I was

Re: [SUBMIT] LookupDispatchAction - how to handle multiple html:submit buttons

2001-11-18 Thread Dmitri Valdin
ActionServlet (protected Action processActionCreate) and just call it's perform() method. It would be faster for sure. Instead of 'misusing' mappings it might be possible to introduce some additional tag to action config: or Dmitri Valdin -- To unsubscribe, e-mail: &l

RE: Declarative Exception Handling

2001-12-02 Thread Dmitri Valdin
appear beside the field in case the password field contains an exception. It is not always reasonable to show the whole text. 2) it would be not bad to have a chance to specify the list of "must" fields in action configuration (similar to "in role" / "not in role"

Re: Declarative Exception Handling

2001-12-30 Thread Dmitri Valdin
the Struts team and Happy New Year for everybody. Dmitri Valdin changes.zip Description: Zip compressed data -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: i18n Forwards

2002-01-20 Thread Dmitri Valdin
idea. What do you think about introducing a default basis handler for forwards (similar as it is done for exceptions), which can be overridden and specified in config file ? * In order to avoid specifying {locale} in every forward, some kind of global pattern can be introduced: "do/{locale

Re: Throwing exceptions from within Struts tags

2002-01-27 Thread Dmitri Valdin
en we can access the exception just with *exception* variable which is defined on every jsp page. This error page would be a good place to log the exception as well. Please correct me if I am wrong. Dmitri Valdin > I noticed that there are two different ways in which exceptions are thrown >

Re: declarative exception handling/resource bundle access

2002-02-04 Thread Dmitri Valdin
have a corresponding >interface. the struts-config allows you to specify an different exception >handler for each configured exception, but RequestProcessor always casts >whatever you specify here as ExceptionHandler, so if you did override it, >you'd get a ClassCastException. But if