Re: REST Showcase 2.1.2

2008-09-02 Thread Al Sutton
Scott, Annotations serve a very useful purpose, and unless you're using a JRE less than version 5 they're worth the effort. I didn't think they were worth it until I had an opportunity to write a Struts2/Hibernate app from scratch and saw how it moved a lot of the config from a

Re: REST Showcase 2.1.2

2008-09-02 Thread Jeromy Evans
Al Sutton wrote: Scott, Annotations serve a very useful purpose, and unless you're using a JRE less than version 5 they're worth the effort. Similar thoughts here. I found using validation annotations within actions and XML validation for models (visitor validation) was a good

Re: REST Showcase 2.1.2

2008-09-01 Thread Jeromy Evans
stanlick wrote: Also, what is the naming convention for validation xml files using the Code Behind/REST plug-in? I've tried several combinations of naming, but none seem to work. The short answer is: you can't. It doesn't work. Fortunately annotation validation works correctly in

Re: REST Showcase 2.1.2

2008-09-01 Thread stanlick
Thanks Jeromy -- I'd rather sleep with my sister than embed annotations in my code. This notwithstanding, I understand your reluctance to add yet another permutation to that lookup scheme. I poked around in the code back in 2.0 and nearly got a nose bleed. I hope there are a ton of unit tests

Re: REST Showcase 2.1.2

2008-09-01 Thread stanlick
Someone should update the REST plug-in docs so others don't waste days trying something that WILL NOT work as designed. Validation permutations can be tricky enough without chasing a dead end. On Mon, Sep 1, 2008 at 8:57 AM, [EMAIL PROTECTED] wrote: Thanks Jeromy -- I'd rather sleep with my

Re: REST Showcase 2.1.2

2008-09-01 Thread Dave Newton
Become the change you desire. http://struts.apache.org/helping.html#documentation Dave --- On Mon, 9/1/08, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: Re: REST Showcase 2.1.2 To: Struts Users Mailing List user@struts.apache.org Date: Monday

Re: REST Showcase 2.1.2

2008-09-01 Thread stanlick
] Subject: Re: REST Showcase 2.1.2 To: Struts Users Mailing List user@struts.apache.org Date: Monday, September 1, 2008, 10:03 AM Someone should update the REST plug-in docs so others don't waste days trying something that WILL NOT work as designed. Validation permutations can be tricky

Re: REST Showcase 2.1.2

2008-09-01 Thread Wes Wannemacher
What's wrong with annotations, and more importantly - How hot is your sister?! (sorry, couldn't resist) -Wes On Mon, 2008-09-01 at 08:57 -0500, [EMAIL PROTECTED] wrote: Thanks Jeromy -- I'd rather sleep with my sister than embed annotations in my code. This notwithstanding, I understand

Re: REST Showcase 2.1.2

2008-08-30 Thread stanlick
PROTECTED] -- View this message in context: http://www.nabble.com/REST-Showcase-2.1.2-tp19228759p19232956.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: REST Showcase 2.1.2

2008-08-29 Thread Musachy Barroso
object Order on action instantiation? I notice it is being constructed during the Action initialization and without it, fails in the create method with a NPE. How much different is the lifecycle when using the REST plug-in? -- View this message in context: http://www.nabble.com/REST-Showcase

Re: REST Showcase 2.1.2

2008-08-29 Thread stanlick
and without it, fails in the create method with a NPE. How much different is the lifecycle when using the REST plug-in? -- View this message in context: http://www.nabble.com/REST-Showcase-2.1.2-tp19228759p19228759.html Sent from the Struts - User mailing list archive at Nabble.com

Re: REST Showcase 2.1.2

2008-08-29 Thread Dave Newton
--- On Fri, 8/29/08, stanlick [EMAIL PROTECTED] wrote: Also, what's with the ModelDriven refreshModelBeforeResult? I haven't seen that one before! Don't see it in the http://struts.apache.org/2.x/docs/model-driven-interceptor.html guide Is this a guide/version deal? It hasn't been

Re: REST Showcase 2.1.2

2008-08-29 Thread stanlick
() in the interceptor or something? Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/REST-Showcase-2.1.2

Re: REST Showcase 2.1.2

2008-08-29 Thread stanlick
Also, what is the naming convention for validation xml files using the Code Behind/REST plug-in? I've tried several combinations of naming, but none seem to work. -- View this message in context: http://www.nabble.com/REST-Showcase-2.1.2-tp19228759p19229925.html Sent from the Struts - User

Re: REST Showcase 2.1.2

2008-08-29 Thread Jeromy Evans
stanlick wrote: So any ideas why the model is being created inside the action and not injected by the framework? private Order model = new Order(); I think Don was just being lazy in the quick example ;-) I load or create the model in the appropriate prepare method. All that matters is