Scott,

Thanks for the explanation. It makes sense -- I guess in theory you should
never inflict a compilation error on a user anyway.

Unfortunately, when I change the error to run-time the page never loads. The
CPU usage shoots to 100% and doesn't return to normal until I stop the
default server (still using jikes). Here's my page code in its entirety:

<%@ page errorPage="exceptInherits.jsp" %>
<html>
<head>
</head>

<body>
This is a jsp page with an error on it.

<% String foo = null; %>
<%=  foo.getClass() %>

</body>
</html>

Regards,

Marc Garrett


----- Original Message -----
From: "Scott M. Stirling" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, January 18, 2001 1:03 AM
Subject: Re: Exception Handling: Still Can't Get it to Work. Please Help


> At first I was like "What?"  Then the answer dawned on me.
>
> You introduced a syntax error into the JSP, viz., an undeclared variable
> named "b."  So what you're seeing this time is, again, a compiler error,
> but this time it's a normal one.  Jikes isn't doing anything tricky.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to