RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Galbreath, Mark
Substitute dhs.struts.action.ORGAction for org.apache.struts.action.ActionServlet. Mark -Original Message- From: Struts Developer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 10:45 AM To: [EMAIL PROTECTED] Subject: RE: Really Dumb Newbie Question about Extending Action

RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Struts Developer
<[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> >Subject: RE: Really Dumb Newbie Question about Extending Action >Date: Wed, 10 Apr 2002 10:24:16 -0400 > >Try t

RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Struts Developer
/\ark >From: "Galbreath, Mark" <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> >Subject: RE: Really Dumb Newbie Question about Extending Action >Date: Wed,

RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Galbreath, Mark
, 2002 4:24 PM To: 'Struts Users Mailing List' Subject: RE: Really Dumb Newbie Question about Extending Action Try this as a bare minimum: package dhs.struts.action; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForm; import org.apache.struts.action.Act

RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Oliver Reflé
PM To: 'Struts Users Mailing List' Subject: RE: Really Dumb Newbie Question about Extending Action Try this as a bare minimum: package dhs.struts.action; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionMappi

RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Galbreath, Mark
ccess"); } } Mark -Original Message- From: Struts Developer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 9:46 AM To: [EMAIL PROTECTED] Subject: RE: Really Dumb Newbie Question about Extending Action Okay, here's my source: -start package dh

RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Struts Developer
Mailing List" <[EMAIL PROTECTED]> >To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> >Subject: RE: Really Dumb Newbie Question about Extending Action >Date: Wed, 10 Apr 2002 09:29:39 -0400 > >dunno...let's see the source of ORGAction(). > >Mark &

RE: Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Galbreath, Mark
dunno...let's see the source of ORGAction(). Mark -Original Message- From: Struts Developer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 9:20 AM I would like to add a layer of inheritance between the org.apache.struts.action.Action class and my application's Action subcl

Really Dumb Newbie Question about Extending Action

2002-04-10 Thread Struts Developer
Some days it just doesn't pay to chew through the leather straps and come to work... I would like to add a layer of inheritance between the org.apache.struts.action.Action class and my application's Action subclasses. IE: MyAction extends ORGAction extends Action. Seems simple enough, howeve