[ANN] MD4J J2EE Code Generator

2006-12-30 Thread Manos Batsis
MD4J is an extensible J2EE webapp generator. Currently only Hibernate 3 mappings are supported as input. The project allowes pluggable generators, with the existing set supporting EJB 2.1, Struts 1.x and JSP 2.0 as output for CRUD and Search operations. An Ant task is included for your builds. T

[OT] Will you install VISTA?

2006-12-30 Thread Leon Rosenberg
Hi, I don't want to start a flame war on microsoft or something, but I stubbled on this article and was quite shocked what vista really is... Maybe you will be shocked as well, maybe you don't care, but it's worth reading anyway :-) http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt rega

Re: [S2] Redirecting to another action with preserving error messages

2006-12-30 Thread Dariusz Wojtas
ok, this is the obvious candidate if I want to make it 'by hand'. Some little method in the base action or filter that takes care for it as I would do it in Struts 1. But I thought about something ... out of the box. I do not need to make extra redirect through the browser, I want to switch to an

Re: [S2] Redirecting to another action with preserving error messages

2006-12-30 Thread Nick Tucker
Hi You could put the message in a session attribute and then get the second action to check for the attribute and display it if found (remembering to remove it once displayed) . How to get access to the session is in the Struts 2 faq. Nick Dariusz Wojtas wrote: > > Excellent hint, thanks. > I

Re: Problems with special characters in an ActionForm

2006-12-30 Thread uni
Dariusz, Thanks for your help - this works. The filter approach is very convenient (you don't even need to cast the request to a HttpServletRequest) and now all special characters are submitted correctly! Cheers, Thorsten - To

Re: Not able to pass value from jsp to request Processor

2006-12-30 Thread Sarry
Hi L, I had no option but putting it on the actions itself so its done. I had no idea wat step comes after multi part request processing and it had some crucial information like password etc so can't convert to the "GET" method Thanks a lot for ur inputs. Laurie Harper wrote: > > Is your fo