Re: tag throws exceptions

2010-09-25 Thread Chris Mawata
On 9/25/2010 11:22 AM, Dave Newton wrote: On Sat, Sep 25, 2010 at 11:18 AM, Chris Mawata< chris_mawata_str...@mathcove.net> wrote: The server is GlassFish What version of Struts 2? Dave Sorry -- 2.2.1 (It works in 2.1.8)

Re: tag throws exceptions

2010-09-25 Thread Dave Newton
On Sat, Sep 25, 2010 at 11:18 AM, Chris Mawata < chris_mawata_str...@mathcove.net> wrote: > The server is GlassFish > What version of Struts 2? Dave

tag throws exceptions

2010-09-25 Thread Chris Mawata
The server is GlassFish jsp: <%@ taglib prefix="s" uri="/struts-tags"%> RainForest - Music and Video Store , your T-Shirt is on its way! "/> Name: Email: Street: City: State: Zip Code: Country: Shirt Size: " alt="logo"height="100" width="150" /> Without the tag th

Re: ParentPackage Annotation

2010-09-25 Thread Dale Newfield
On Sep 25, 2010, at 7:33 AM, Jason Ferguson wrote: > Can the @ParentPackage annotation accept more than one argument (i.e. both > "struts-default" and "json-default")? IIRC, json-default extends struts-default, so that shouldn't be an issue... -Dale

ParentPackage Annotation

2010-09-25 Thread Jason Ferguson
I'm using the JSON plugin to manage my actions that require JSON response as well as the convention plugin. However, I've Googled until my eyes were about to find out and couldn't find the answer to this question: Can the @ParentPackage annotation accept more than one argument (i.e. both "struts-d

Re: How to structure a struts2 application

2010-09-25 Thread Roger
It is also worth pointing out that because Struts2 creates the action on each call, you don't actually save anything by having a single action for CRUD. You might actually be worse off by performing unneccsessary activities at times. Regards -