Yes. I did.

Frankly, I've failed to understand the role of both
ManagedResourceBaseAction and AuthenticatedManagedResourceBaseAction
actions! Are both these action extended from DispatchAction? and
CreateUserAction extended from one of these managed resources action? or I'm
completely lost?

I'd appreicate if you could explain it for me.

ATTA


----- Original Message ----- 
From: "James Mitchell" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Wednesday, September 24, 2003 10:06 AM
Subject: Re: [Poll] action mappings


> Did you look at the attached text file?
>
>
> --
> James Mitchell
> Software Engineer / Struts Evangelist
> http://www.struts-atlanta.org
> 770.822.3359
> AIM:jmitchtx
>
>
>
> ----- Original Message ----- 
> From: "atta-ur rehman" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> Sent: Tuesday, September 23, 2003 12:59 PM
> Subject: Re: [Poll] action mappings
>
>
> > hi james,
> >
> > could you please explain, for a struts newbie, what do you mean by
> >
> > <quote>
> > I'm using DispatchAction with 2 abstract base actions between my actions
> and
> > the dispatch action.  The first one has helper methods for functionality
> not
> > requiring authentication, and the second one (which extends the first)
> does
> > require authentication.
> > </quote>
> >
> > Thanks in advance!
> >
> > ATTA
> > ----- Original Message ----- 
> > From: "James Mitchell" <[EMAIL PROTECTED]>
> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > Sent: Tuesday, September 23, 2003 9:17 AM
> > Subject: Re: [Poll] action mappings
> >
> >
> > > #1 with a twist.
> > >
> > > I'm using DispatchAction with 2 abstract base actions between
> > > my actions and the dispatch action.  The first one has helper
> > > methods for functionality not requiring authentication, and
> > > the second one (which extends the first) does require authentication.
> > >
> > > By overriding the execute in the second one, it allows me
> > > additional base functionality (helper methods) and seamless
> > > session management in one place.
> > >
> > > I've attached a crude example of what I mean.
> > >
> > > --
> > > James Mitchell
> > > Software Engineer / Struts Evangelist
> > > http://www.struts-atlanta.org
> > > 770.822.3359
> > > AIM:jmitchtx
> > >
> > >
> > >
> > > ----- Original Message ----- 
> > > From: "Mainguy, Mike" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Tuesday, September 23, 2003 11:05 AM
> > > Subject: [Poll] action mappings
> > >
> > >
> > > > I have yet another opinion poll for struts-user...
> > > >
> > > > What are folks currently doing for action mappings in relation to
CRUD
> > > > operations?
> > > > Are you:
> > > >
> > > > #1  creating a unique Action mapping for each atomic operation
> > > >     (potentially mapped to the same action class)
> > > > /createUser.do     ->>  UserAction.java
> > > > /readUser.do       ->>  UserAction.java
> > > > /updateUser.do     ->>  UserAction.java
> > > > /deleteUser.do     ->>  UserAction.java
> > > >
> > > >
> > > > #2  creating a unique Action mapping for each atmoic operation
> > > >     with each action having a unique class
> > > > /createUser.do     ->>  CreateUserAction.java
> > > > /readUser.do       ->>  ReadUserAction.java
> > > > /updateUser.do     ->>  UpdateUserAction.java
> > > > /deleteUser.do     ->>  DeleteUserAction.java
> > > >
> > > > #3  creating an aggregate action class with a unique action mapping
> with
> > > >     multiple operations and using form/request variable to
accomplish
> > CUD
> > > > /editUser.do       ->> UserAction.java   (?OP=Update, ?OP=Create,
> > > > ?OP=Delete)
> > > > /displayUser.do    ->> UserAction.java
> > > >
> > > >
> > > > #4  creating an aggregate action class with a unique action mapping
> with
> > > >     multiple operations
> > > > /editUser.do       ->> EditUserAction.java
> > > > /displayUser.do    ->> DisplayUserAction.java
> > > >
> > > >
> > > > Some other way (or a combination) ...
> > > >
> > > >
> > > >
> > > > This message and its contents (to include attachments) are the
> property
> > of
> > > Kmart Corporation (Kmart) and may contain confidential and proprietary
> > > information. You are hereby notified that any disclosure, copying, or
> > > distribution of this message, or the taking of any action based on
> > > information contained herein is strictly prohibited. Unauthorized use
of
> > > information contained herein may subject you to civil and criminal
> > > prosecution and penalties. If you are not the intended recipient, you
> > should
> > > delete this message immediately.
> > > >
> > > >
> > > >
> > > >
> > >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> >
> >
>
> --------------------------------------------------------------------------
> --
> > ----
> >
> >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to