error-pages and struts

2002-05-23 Thread Jeremy Mann
I am using the error-page elements in the web.xml file. It looks like this. error-page exception-typejavax.servlet.ServletException/exception-type location/errorpage.jsp/location /error-page When a ServletException is thrown in my Action class it is being forwarded to the

RE: error-pages and struts

2002-05-23 Thread Jeremy Mann
try this on your error page if (exception instanceof javax.servlet.ServletException) System.out.println(Exception was found !!!); From: Jeremy Mann [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: error-pages

RE: error-pages and struts

2002-05-23 Thread Jeremy Mann
Yeah - I am using Weblogic 5.1. I was trying to avoid having to do that but I guess I have to. thanks Jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 12:00 PM To: [EMAIL PROTECTED] Subject: Re: error-pages and struts Just

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
there use sp 8 ok with struts? In my experience, if it's a wierd error, the solution often is to upgrade to the next higher service pack (that's how I got to 10 and then 11...). Michelle -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 4

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
there use sp 8 ok with struts? In my experience, if it's a wierd error, the solution often is to upgrade to the next higher service pack (that's how I got to 10 and then 11...). Michelle -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 4

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
: Friday, January 04, 2002 9:35 AM To: 'Struts Users Mailing List' Subject: RE: NoClassDefFound Error in weblogic There is a patch for wls 5.1 sp8. Search for in on the struts mailing list. wls 5.1 conflicts with struts. -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED

NoClassDefFound Error in weblogic

2002-01-03 Thread Jeremy Mann
Has anyone experience a NoClassDefFoundError when running struts in weblogic? If I place struts.jar in the weblogic classpath, then my application works fine. If I place struts.jar in the webapp/lib directory then I get a NoClassDefFoundError when the jsp tries to load an ActionForm for a

RE: NoClassDefFound Error in weblogic

2002-01-03 Thread Jeremy Mann
a wierd error, the solution often is to upgrade to the next higher service pack (that's how I got to 10 and then 11...). Michelle -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 4:16 PM To: [EMAIL PROTECTED] Subject: NoClassDefFound Error

RE: NoClassDefFound Error in weblogic

2002-01-03 Thread Jeremy Mann
is to upgrade to the next higher service pack (that's how I got to 10 and then 11...). Michelle -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 4:16 PM To: [EMAIL PROTECTED] Subject: NoClassDefFound Error in weblogic Has anyone experience

basic forms/config question

2001-05-04 Thread Jeremy Mann
I have been trying to create a hello world with struts based on the login example. I have to the best of my knowledge done everything correctly as stated in examples and documentation. All I have is a simple page with a form and 2 text fields in the form yet I still get the following error.

RE: basic forms/config question

2001-05-04 Thread Jeremy Mann
custom tags between the html:form tags until you get the error. Good Luck, Abraham -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Friday, May 04, 2001 10:07 AM To: [EMAIL PROTECTED] Subject: basic forms/config question I have been trying to create a hello

RE: basic forms/config question

2001-05-04 Thread Jeremy Mann
- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Friday, May 04, 2001 10:07 AM To: [EMAIL PROTECTED] Subject: basic forms/config question I have been trying to create a hello world with struts based on the login example. I have to the best of my knowledge done everything correctly

web.xml servlet element problem

2001-04-26 Thread Jeremy Mann
I am a newbie with struts. I have downloaded struts and have gotten the demo to work and am trying to get a hello world struts webapp to work. When I start weblogic I get the following exception. Org.xml.sax.SAXParseException: Element web-app does not allow servlet-mapping here.