Yes I did.
   
  1. In jsp:
  form.action="/Delete.do";
   
  2. In config file:
   
  <action path="/Delete" 
   
  3. In web.xml I have this
   
  <servlet-mapping>
  <servlet-name>action</servlet-name>
  <url-pattern>*.do</url-pattern>
  </servlet-mapping>
   
  Now the error is this:
  The requested resource (/Delete.do) is not available.
  

Monkeyden <[EMAIL PROTECTED]> wrote:
  I dont know how else I can say this. Put this in your JSP instead:

form.action="/Delete*.do*"; //in the jsp


On 6/1/06, Maya menon wrote:
>
> well,
>
> Here is exactly what I have:
>
> 1. jsp files are in /jsp folder.
> struts-config file entries and action classes.
>
> struts-config entry is like this:
>
> > type="com.xx.xxx.xxx.xxxaction" >
> 
> 
> 
>
>
> Monkeyden wrote:
>
>
> If that's the error you're getting, then that can't be your code. You're
> trying to request "/jsp/Delete" somewhere in your code. I suspect that the
> /jsp is a directory and thus will only be relevant to the action-forwards,
> not the form or the action-mapping.
>
> On 6/1/06, Monkeyden wrote:
> >
> > The form action is the same as the action mapping in struts-config, plus
> > the ".do", so if the form has:
> >
> >
> >
> > then the action mapping must be:
> >
> >
> >
> >
> > On 6/1/06, Maya menon wrote:
> > >
> > > Ok, for delete.jsp I put action="delete.do"
> > > form.action="Delete.do";
> > > form.submit ();
> > >
> > > In struts-config.xml, I put
> > >
> > > > > type="com.xx.xxx.xxx.xxxAction" >
> > >
> > >
> > >
> > >
> > > Now, when I run, it it gives me the following error:
> > > type Status report
> > > message Invalid path /jsp/Delete was requested
> > > description The request sent by the client was syntactically incorrect
> > > (Invalid path /jsp/Delete was requested).
> > >
> > > What am I missing here ?
> > >
> > >
> > > Maya menon wrote:
> > > Manoj,
> > >
> > > Thanks.
> > > So, just 2 action entries r fine, thats what you think.
> > >
> > > [EMAIL PROTECTED] wrote:
> > > Sample config
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > Note the following
> > > 1. This is a typical example modify according to your need
> > > 2. Name of the form is addForm and deleteForm in the xml above (You
> can
> > > change as you want)
> > > 3. Ask questions I will answer them all (not much work to do today)
> > > 4. Path in action mappings can be tile if that is the case you will
> need
> > > a tile definition as well or a jsp page(not a good idea to use jsp)
> > > 5. Optional: good idea to have all these xml files per struts module
> > > Hope that helps
> > > Manoj
> > >
> > >
> > > -----Original Message-----
> > > From: Maya menon [mailto:cc]
> > > Sent: 01 June 2006 16:46
> > > To: user@struts.apache.org
> > > Subject: Global forwards and actions
> > >
> > > All,
> > >
> > > I want to understand this better:
> > >
> > > Say, I have one form , addDetails.jsp and another deleteDetails.jsp
> > > addDetails.jsp when submitted should call AddAction and deleteDetails
> > > should call Deleteaction.
> > >
> > > In adddetails I have and in delete I have
> > >
> > > Now, what all entries do I need in struts-config.xml for these to be
> > > forwarded to the correct action classes ?
> > > thanks
> > > Maya
> > >
> > >
> > > ---------------------------------
> > > Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great
> > > rates starting at 1ยข/min.
> > >
> > >
> > >
> > > ---------------------------------
> > > Do you Yahoo!?
> > > Get on board. You're invited to try the new Yahoo! Mail Beta.
> > >
> > > __________________________________________________
> > > Do You Yahoo!?
> > > Tired of spam? Yahoo! Mail has the best spam protection around
> > > http://mail.yahoo.com
> > >
> >
> >
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to