Change in JSP error handling in Tomcat5.0??

2005-03-01 Thread Graba, Jan
Hi. While testing a JSP error page that was working fine 9 months ago, I found that the page is not now performing its function. Instead of displaying an appropriate error message when the associated JSP receives alphabetic data instead of the integer data that it is expecting, an HTTP 500

JSP Error

2004-02-28 Thread Jack Lauman
I'm trying to deploy a simple JSP(2.0) page with JSTL(1.1) core tags using Tomcat 5.0.19. The project was build using eclipse(2.1.2) and builds and deploys without errors. Any help resolving this problem would be appreciated. type Exception report message description The server encountered

jsp error

2004-02-18 Thread xavier manohar
Hello when i run a jsp file that calls a bean class in its usebean function,doesn't responded correctly when i executed it after running tomcat alone .However when i started tomcat again after starting apache server the jsp file worked correctly .Can any one help me to understand why

jsp error

2004-02-18 Thread xavier manohar
Hello when i run a jsp file that calls a bean class in its usebean function,doesn't responded correctly when i executed it after running tomcat alone .However when i started tomcat again after starting apache server the jsp file worked correctly .Can any one help me to understand why

Re: jsp error

2004-02-18 Thread Parsons Technical Services
- From: xavier manohar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 18, 2004 12:38 PM Subject: jsp error Hello when i run a jsp file that calls a bean class in its usebean function,doesn't responded correctly when i executed it after running tomcat alone .However when i

Re: jsp error

2004-02-18 Thread xavier manohar
it from apache? What is your setup and OS. Post your web.xml and any errors. A similar symptom occurred when the mappings were not correct. Doug www.parsonstechnical.com - Original Message - From: xavier manohar To: Sent: Wednesday, February 18, 2004 12:38 PM Subject: jsp error Hello

Re: jsp error

2004-02-18 Thread Parsons Technical Services
Subject: Re: jsp error Hello Doug , I hve not chnged any thing in the web .xml .The context path is still the root. my os is windows 95 regards mano Parsons Technical Services [EMAIL PROTECTED] wrote: Mano, When you say that it runs ok after starting apache, do you also

Re: jsp error

2004-02-18 Thread Parsons Technical Services
: xavier manohar [EMAIL PROTECTED] To: Parsons Technical Services [EMAIL PROTECTED] Sent: Wednesday, February 18, 2004 3:10 PM Subject: Re: re :jsp error This is the code jsp is stored in root directory jsp:setProperty name=mybean property=uname / jsp:getProperty name=mybean property=uname

Insufficient Error messages on jsp error

2004-02-02 Thread Lukas sterreicher
Hello. Since I upgraded to Tomcat 5 it's been bugging me that on errors in jsp files (I think both compile and runtime) I just get an error like: [ServletException in:/programtracklist.jsp] null' and 2004-01-16 14:58:44 ApplicationDispatcher[/yarf] Servlet.service() for servlet jsp threw

Re: Insufficient Error messages on jsp error

2004-02-02 Thread Daniel Gibby
Maybe this has to do with the level of debug you have on. Daniel Gibby Lukas sterreicher wrote: Hello. Since I upgraded to Tomcat 5 it's been bugging me that on errors in jsp files (I think both compile and runtime) I just get an error like: [ServletException in:/programtracklist.jsp] null'

Re: Insufficient Error messages on jsp error

2004-02-02 Thread Martin Gainty
, 2004 3:20 PM Subject: Re: Insufficient Error messages on jsp error Maybe this has to do with the level of debug you have on. Daniel Gibby Lukas sterreicher wrote: Hello. Since I upgraded to Tomcat 5 it's been bugging me that on errors in jsp files (I think both compile and runtime) I just

jasper2 ant task does not report JSP error descriptions

2003-12-10 Thread Rodrigo Ruiz
Hi all, I am trying to use the jasper2 task that comes with Tomcat. In 4.1.12 version, when I had an error, it reported something similar to: An error occurred at line: 15 in the jsp file: /NewUser.jsp Generated servlet error: [javac] Compiling 1 source file

Unable to compile class for JSP error in Tomcat 5.0.7

2003-08-14 Thread John Cavacas
Hi, This is my first time trying Tomcat 5.0.7, i'm already familiar with tomcat 4. I tried to run a simple JSP, then the Struts struts-blank.war application, and i keep getting this error: org.apache.jasper.JasperException: Unable to compile class for JSP ..snip..

SERVLET-JSP ERROR

2003-02-22 Thread A.Ezhil
hi, when i try to run a JSP file for my application ,i am getting servlet jsp currently unavailable. i am using tomcat4.0 ,linux8.0... is it anything problem with jar files in lib directory.. pls help me at earliest... thank u ezhil.a

wrestling with JSP error page

2003-02-21 Thread jeff . guttadauro
Hi, all. I'm finding that the JSP errorPage directive has a serious flaw. Perhaps others out there have run into this and been as frustrated as I am and hopefully come up with some solution...? The flaw is that, if the response has already been committed, then the error page is just

Re: wrestling with JSP error page

2003-02-21 Thread Will Hartung
From: jeff.guttadauro@xx Sent: Friday, February 21, 2003 11:54 AM Subject: wrestling with JSP error page Does anyone know of a way, besides maybe making the buffer size really huge, to get around this problem? Would a Filter on the response help with this? How would

Invalid JSP Error When Trying to View Source

2003-02-03 Thread John Dapper
Can anyone help me rectify an invalid JSP file error? I am getting an invalid JSP error when trying to view the JSP example source code through my browser. After starting Tomcat, I am navigating from the Tomcat welcome/index.jsp page through to view source of any of the jsp examples( e.g. http

RE: Invalid JSP Error When Trying to View Source

2003-02-03 Thread Filip Hanik
http://localhost:8080/examples/jsp/num/numguess.txt Filip -Original Message- From: John Dapper [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 8:52 AM To: [EMAIL PROTECTED] Subject: Invalid JSP Error When Trying to View Source Can anyone help me rectify an invalid JSP file

Re: Invalid JSP Error When Trying to View Source

2003-02-03 Thread Justin Ruthenbeck
the source for it, so I won't go into that. Hope that helps... justin At 08:52 AM 2/3/2003, you wrote: Can anyone help me rectify an invalid JSP file error? I am getting an invalid JSP error when trying to view the JSP example source code through my browser. After starting Tomcat, I am navigating from

how to get meaningful exception in JSP error page

2003-01-02 Thread Brian W. Young
Happy New Year, I'm using the errorPage=my_own_error.jsp technique. However, the exception object in my_own_error.jsp gives me the only the Jasper stack trace. It doesn't include info on what part of my own code bombed. I've tried getCause() on exception but it isn't yielding much. I

Re: how to get meaningful exception in JSP error page

2003-01-02 Thread Bill Barker
As it happens, JasperException (at least in 4.1 Jasper2) subclasses ServletException. You should be able to get this by casting to a ServletException and calling getRootCause(). Brian W. Young [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Happy New Year, I'm

How to see JSP error messages while tomcat is running

2002-11-15 Thread Steven Peterson
I recently upgraded from tomcat 3 to tomcat 4.1.12 and am having trouble debugging new jsp pages as I add them. Whereas tomcat 3 would send the error output of a jsp to the html page (making it easy to identify the problem, fix it, and test it again), tomcat 4 sends the output to the context's

Re: How to see JSP error messages while tomcat is running

2002-11-15 Thread Paul Legato
Steven Peterson wrote: what the error was. Is there any way to see the error output of a jsp page without shutting down tomcat either by a) having the output sent to the html stream; or b) having the log file accessible while tomcat is running; or c) . . . ? If you do your development on a

Re: How to see JSP error messages while tomcat is running

2002-11-15 Thread John O'Hara
If you do your development on a Linux or Unix box, you can do b) with tail -f logfile while Tomcat's running and writing to the file. As far as I know, there's no way around the questionable file locking semantics implemented in Windows -Paul If you install Cygwin on a Win32 machine,

JSP error handling

2002-11-06 Thread Jan Kunzmann
Hi there, I've a problem with JSP error handling. I tried to make custom error pages with the % page errorPage=... % element. If an error occurs during the execution of my jsp page, the error page is called, but the javax.servlet.error.* attributes do not contain any values. I looked

Re: JSP error handling

2002-11-06 Thread Ricardo Moral
the attibute 'javax.servlet.jsp.jspException' of the request. But you must access this value directly using the 'exception' variable already declared on the context of the error page. --- Jan Kunzmann [EMAIL PROTECTED] wrote: Hi there, I've a problem with JSP error handling. I tried to make custom

Re: JSP error handling

2002-11-06 Thread Kris Schneider
this value directly using the 'exception' variable already declared on the context of the error page. --- Jan Kunzmann [EMAIL PROTECTED] wrote: Hi there, I've a problem with JSP error handling. I tried to make custom error pages with the % page errorPage=... % element. If an error

Re: JSP Error

2002-01-30 Thread Satish Reddy
you, Satish. - Original Message - From: Larry Isaacs [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Tuesday, January 29, 2002 3:15 PM Subject: RE: JSP Error I believe this usually turns out to be a permissions issue. Make sure the user under which Tomcat is running has

RE: JSP Error

2002-01-30 Thread Larry Isaacs
: Wednesday, January 30, 2002 9:52 AM To: Tomcat Users List Subject: Re: JSP Error Hi, I have checked the permissions, I have Read permissions for every one for the files in the webapps directory. I have tried to access the tomcat directly on port 8080, but i see The Page cannot

Re: JSP Error

2002-01-30 Thread Satish Reddy
in the $TOMCAT_HOMElib/coomon directory. the Stack Trace for the jsp error is here, 2002-01-29 12:55:25 - JspReader: Exception parsing file /jsp/num/numguess.jsp - java.lang.NoSuchMethodError: javax.servlet.ServletContext: method getResourceAsS tream(Ljava/lang/String;)Ljava/io/InputStream; not found

RE: JSP Error

2002-01-30 Thread Larry Isaacs
30, 2002 12:15 PM To: Tomcat Users List Subject: Re: JSP Error I checked the jasper-xxx.log file, it has exceptions saying that it cannot find method, getResourceAsStream (String) . I also got the same kind of error when I ran the example Servlets, it says it can not find method

Re: JSP Error

2002-01-30 Thread Satish Reddy
PM Subject: RE: JSP Error This suggests you have some really out of date javax.servlet classes in your JDK somehow. Which JDK are you using and what is in your JDK's jre/lib/ext directory (assuming Java2)? Cheers, Larry -Original Message- From: Satish Reddy [mailto:[EMAIL

JSP Error

2002-01-29 Thread Satish Reddy
Hi All, I am having problems running JSP using tomcat3.3a with Apache1.3.12. on linux. I am able to run the same JSP on Windows without any problems. When I tried to run the example JSP. I get this following error. 2002-01-29 12:59:26 - Ctx(/EM) : Exception in R( /examples +

RE: JSP Error

2002-01-29 Thread Larry Isaacs
-Original Message- From: Satish Reddy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 2:02 PM To: Tomcat Subject: JSP Error Hi All, I am having problems running JSP using tomcat3.3a with Apache1.3.12. on linux. I am able to run the same JSP on Windows without any

JAKARTA--------JSP ERROR!!! PLEASE HELP

2001-11-28 Thread Catalin
hi 2 all!! I've got an app that works with jsp on an jakarta-tomcat-3.3m4 on an win2k professional. The jsp files connet to a MSSQL db by an bean an get data for html reports. The rest of application work with servlets. If I conect myself from another comp witch is in the same network with

AW: JAKARTA--------JSP ERROR!!! PLEASE HELP

2001-11-28 Thread Ralph Einfeldt
PROTECTED]] Gesendet: Mittwoch, 28. November 2001 23:35 An: [EMAIL PROTECTED] Betreff: JAKARTAJSP ERROR!!! PLEASE HELP snip/ Root cause: java.lang.NullPointerException at Privacy675.RAP.archivio_list_dati_pers_1._jspService(archivio_ list_dati_pers_1.java:244) snip

Servlets and JSP Error Pages

2001-10-01 Thread Brendan McKenna
Hi, Is there a way to route exceptions thrown in servlets to a JSP error page? Brendan -- Brendan McKennaEmail: [EMAIL PROTECTED] Development Strategist Phone: +353-61-338177 Taringold Ltd

Re: Servlets and JSP Error Pages

2001-10-01 Thread Zsolt Horvath
PROTECTED] Sent: Monday, October 01, 2001 3:45 PM Subject: RE: Servlets and JSP Error Pages It's not a really clean solution but you can do it like this : try{ . }catch(Exception e){ RequestDispatcher rd = getServletContext().getRequestDispatcher(MyErrorPage.jsp); request.setAttribute

Jasper JSP error

2001-01-29 Thread Per Olesen
Hi I'm trying to deploy a war which I've developed using weblogic, and which deploys fine there. But deploying it in tomcat gives me an exception from jasper saying: - org.apache.jasper.compiler.CompileException: /var/tomcat/webapps/webhelp/example/helpmain.jsp(4,0) Invalid jsp:include

RE: Jasper JSP error

2001-01-29 Thread Per Olesen
Hi, Found the answer to my own problem. Maybe I should just read the JSP-spec more closely. The flush-attribute is apparently mandatory, but weblogic does not check this. Regards, Per Olesen -- Per Olesen, Systems Architect @ Nordija ApS, www.nordija.com Phone: (+45)23389581, email: [EMAIL

JSP ERROR 500 with jdk1.3

2001-01-22 Thread Kasparian, Raffi J.
I recently installed Tomcat and am was relieved and very excited that it was so easy to install. However, I just discovered that the JSP examples generate errors such as the following if I set JAVA_HOME=jdk1.3 but work just fine for JAVA_HOME=jdk1.2.2. Error: 500 Location:

Re: .jsp error after install

2001-01-03 Thread Derek Mc Connon
where abouts do you set up the Java Home variable - Original Message - From: Randy Layman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 03, 2001 6:27 AM Subject: RE: .jsp error after install You didn't set JAVA_HOME to include the jdk. Randy -Original

RE: .jsp error after install

2001-01-03 Thread Michael Wentzel
the script files in TOMCAT_HOME/bin/ setup all of your environment params. where abouts do you set up the Java Home variable -- Michael Wentzel Software Developer Software As We Think - To unsubscribe, e-mail: [EMAIL

RE: .jsp error after install

2001-01-03 Thread Randy Layman
-Original Message- From: Derek Mc Connon [mailto:[EMAIL PROTECTED]] Sent: Monday, January 03, 2022 8:33 PM To: [EMAIL PROTECTED] Subject: Re: .jsp error after install where abouts do you set up the Java Home variable - Original Message - From: Randy Layman [EMAIL PROTECTED] To: [EMAIL