Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread Musachy Barroso
n, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung > oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich > dem Austausch von Informationen und entfaltet keine rechtliche > Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails k

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread Paweł Wielgus
r vorgesehene Empfaenger > sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung > oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich > dem Austausch von Informationen und entfaltet keine rechtliche > Bindungswirkung. Aufgrund der leich

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread stanlick
r sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte > Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht > dient lediglich dem Austausch von Informationen und entfaltet keine > rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von > E-M

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread Nils-Helge Garli Hegvik
Empfaenger > sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung > oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich > dem Austausch von Informationen und entfaltet keine rechtliche > Bindungswirkung. Aufgrund der leichten Manipulierb

RE: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread Martin Gainty
dentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à l'information seulement et n'aur

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread Paweł Wielgus
I'm sorry, i've cited wrong e-mail, what i wanted to cite is: >What other Frameworks have you learned before/after Struts2? > >Apart from Java, What other languages have you been involved in? Best greetings, Paweł Wielgus. 2009/6/12 : > Was this a question about moving from Struts 2 to Grails

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread stanlick
Was this a question about moving from Struts 2 to Grails or how to get the output stream? 2009/6/12 Paweł Wielgus > Hi all, > i'm active in rails and struts1 and struts2, > languages are java and ruby and javascript. > > As for rails i use jruby instead ruby. > > What framework will my next app

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-12 Thread Paweł Wielgus
Hi all, i'm active in rails and struts1 and struts2, languages are java and ruby and javascript. As for rails i use jruby instead ruby. What framework will my next app be implemented in? - struts2 Why? - freedom of choice, and tons of bullet proof libraries How my apps look like? mostly far from

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-11 Thread Dave Newton
Musachy Barroso wrote: Components are for tags Maybe where *you're* from. Over here we use random classes for *all* our functionality! Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional command

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-11 Thread Musachy Barroso
t et n'aura pas > n'importe quel effet légalement obligatoire. Étant donné que les email > peuvent facilement être sujets à la manipulation, nous ne pouvons accepter > aucune responsabilité pour le contenu fourni. > > > > >> Date: Thu, 11 Jun 2009 11:59:30 -0400

RE: [OT]Moving from Struts2 to grails, your thoughts

2009-06-11 Thread Martin Gainty
as n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Thu, 11 Jun 2009 11:59:30 -0400 > Subject: Re: [OT]Moving from Struts2 to grai

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-11 Thread Bhaarat Sharma
I just implemented servletResponseAware as well. Thanks! On Thu, Jun 11, 2009 at 11:59 AM, Wes Wannemacher wrote: > On Thu, Jun 11, 2009 at 11:53 AM, Bhaarat Sharma > wrote: > > This might be too simple ...but how will i get the outputstream? > > lets say I have something like this > > > > if (a

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-11 Thread Wes Wannemacher
On Thu, Jun 11, 2009 at 11:53 AM, Bhaarat Sharma wrote: > This might be too simple ...but how will i get the outputstream? > lets say I have something like this > > if (addNewQuestion () == 1) > { >                String numQsAdded = " id='message1'>"+getQuestion().substring(1, getQuestion().length

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-11 Thread Bhaarat Sharma
This might be too simple ...but how will i get the outputstream? lets say I have something like this if (addNewQuestion () == 1) { String numQsAdded = ""+getQuestion().substring(1, getQuestion().length())+""; //I want to put numQsAdded into a outputstream

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-10 Thread Musachy Barroso
you can get a reference to the outputstream from the request and write to it, and then return null, or Action.NONE from your method. musachy On Thu, Jun 11, 2009 at 12:25 AM, Bhaarat Sharma wrote: > thanks for your been there done that insight. > > Struts 2 definitely is much more sane and enterp

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-10 Thread Dave Newton
Bhaarat Sharma wrote: Struts 2 definitely is much more sane and enterprise level compared to grails. However, sometimes it is disappointing to know that in struts out-of-the-box we cant even return a result type of a simple string that does not go to a different page. Say, I just want to stream

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-10 Thread Bhaarat Sharma
thanks for your been there done that insight. Struts 2 definitely is much more sane and enterprise level compared to grails. However, sometimes it is disappointing to know that in struts out-of-the-box we cant even return a result type of a simple string that does not go to a different page. Say

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-10 Thread David C. Hicks
I think Grails is a nice tool, as long as what you want to do is within the confines of what it is designed to give you for free. After that, you'll be writing mounds of code. The project I'm working on now was originally started on the Grails platform. It was maybe 5 to 6 months down the ro

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-10 Thread Steven Hansen
I came to Struts2 from Rails. Rails (ruby especially) is really nice. It is very interesting to compare w/Java and Struts2 / Hibernate / Maven / Spring / Junit. There also tons of great books out there on ruby and or rails ' -Steven Bhaarat Sharma wrote: Guys, I've been doing struts2

RE: [OT]Moving from Struts2 to grails, your thoughts

2009-06-10 Thread Andy
Two words - Stripes framework. > Date: Wed, 10 Jun 2009 22:06:11 -0400 > Subject: [OT]Moving from Struts2 to grails, your thoughts > From: bhaara...@gmail.com > To: user@struts.apache.org > > Guys, > > I've been doing struts2 for about 2 years, although I dont know everything > about it but

Re: [OT]Moving from Struts2 to grails, your thoughts

2009-06-10 Thread Dave Newton
Bhaarat Sharma wrote: I've been doing struts2 for about 2 years, although I dont know everything about it but I have been able to get the stuff done. Most of the stuff I learned was from Struts2 in action book and this mailing list! Lately I've been intrigued by the XXX on Rails framework, be i