RE: Websphere mapping problem

2006-09-18 Thread Hehl, Thomas
Struts Users Mailing List Subject: RE: Websphere mapping problem First, if you are invoking an action it looks for the mapping. The mapping is for anything ending in .do (*.do to be exact in the mapping). That means if your url is "/start.do" it tries to find the action-mapping with the

RE: Websphere mapping problem

2006-09-18 Thread David Friedman
tainers/application servers? Where did this "/do/start" come from if you are mapping the suffix (*.do) and not the prefix (/do/*) for the Struts servlet? Regards, David -Original Message- From: Hehl, Thomas [mailto:[EMAIL PROTECTED] Sent: Monday, September 18, 2006 1:04 PM To: &

RE: Websphere mapping problem

2006-09-18 Thread Hehl, Thomas
[mailto:[EMAIL PROTECTED] Sent: Monday, September 18, 2006 11:07 AM To: Struts Users Mailing List Subject: RE: Websphere mapping problem Your error suggests your are using the wrong url. The error lists "/do/start" but your mapped your servlet to "*.do" so it expects the

RE: Websphere mapping problem

2006-09-18 Thread David Friedman
m: Hehl, Thomas [mailto:[EMAIL PROTECTED] Sent: Monday, September 18, 2006 9:59 AM To: 'user@struts.apache.org' Subject: Websphere mapping problem action *.do - To un

Websphere mapping problem

2006-09-18 Thread Hehl, Thomas
1) I'm a newbie on struts, but I just got hired to be the expert on my project.:) 2) Everything I'm about to say works under tomcat perfectly. OK, so the problem is that when I deploy my app and access it, I get the following error: Error 404: SRVE0190E: File not found: /do/start Here's the in