Re: Jakarta Struts Initial Installed

2004-05-12 Thread Manfred Wolff (neusta)
Andre. javax.servlet.ServletException: Missing message for key welcome.title Thats the reason. You have to put your message keys into a directory that is containing to the classpath. Look your entry in the struts-config.xml (Message-Resources). Manfred Bussie, Andre D wrote: I recently

Re: concurrency in struts

2004-05-10 Thread Manfred Wolff (neusta)
There are two concepts you have to understand: thread-safe and reentrant. A method is reentrant, if many threads can enter the method as the same time without conflicting. For that you only have to act on parameters and local variables. Threads only share the data- and the code-segment of an

Re: Fwd: RE: Problem with LookupDispatchAction and parameter operation

2004-04-13 Thread Manfred Wolff (neusta)
Don't forget the message resource bundle, where the keys button.consult and button.search are defined! Manfred Struts Framework wrote: I hava already this solution, but without sucess. - Segue mensagem encaminhada - De: Sanoj, Antony (IE10) [EMAIL PROTECTED] Data:

Re: can not retrieve action mapping?

2004-04-13 Thread Manfred Wolff (neusta)
Mu. don't define that.do but only /that and evrything will work fine. Be care, that you have described a servlet extension mapping in your web.xml. Manfred Mu Mike wrote: I have this.jsp under the dir /this, it has a form defined like the below form action=/that/that.do ... /form while