ERROR page ...

2001-05-18 Thread BERWART Thierry
Hello, I want to create a beautiful error page for my application but I have no idea about the design ... and this is why I ask you whether you would have any examples of error page... Thanks Thierry === To unsubscribe

Error page

2002-01-11 Thread Yong Chee Keong
Hello there, Putting the line below gave me the exception message <%= exception.getMessage() %> I want to get the printStackTrace of exceptions in JSP. I read that there is a method for printStackTrace which accepts an output object. I figure that implicit "out" object in JSP for this. However

Error Page.

2000-12-23 Thread Abhay Chaware
Hi ! I am new to JSP. I had a doubt. How can you get control back to JSP page after transferring the focus to Error Page ? What i want to ask is, if some exception occures, and the error page is given the control to. Now how can I go back to original JSP page ? Abhay Chequemail.com - a

Error page

2001-02-21 Thread Tushar Sarmah
We are using Web sphere 2.0.3 which uses JSP .9. It does not support the error page directive. Is there any other way to do it? Tushar === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST&

error page

2001-03-13 Thread dion
Hello all, 1. i have a jsp file which include A.jsp then B.jsp, each has errorpage.jsp as its error page. however when i set condition so A.jsp & B.jsp will fail, errorpage only display error from A. Is there any way to display both of them? 2. I'm trying to get the

Error Page

2000-02-11 Thread Ravindranath Yagatili Venkata
Hi , I would like to use the error page directive and would like to know if some one can send me working code of it or show me some examples Thanks & Regds, Ravi === To unsubscribe: mailto [EMAIL PROTECTED] with

Error Page?

2000-05-31 Thread Ritesh_Srivastava
Can somebody suggest me about the error handling across JSP Pages.some code will be useful. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

Error page

2002-05-15 Thread Gading
Hi all, I have 2 page one is main and one is for error page. main.jsp <%@ page errorPage="errorpage.jsp" %> errorpage.jsp <%@ page isErrorPage="true" %> When there is error in main, it doesnt redirect to errorpage.js, but shows internel server error (5

Re: ERROR page ...

2001-05-18 Thread Diego Jiménez Romero
Hello berwart. Here you have an Error Page example: You can extends, exception class and in the jsp's when an error ocurred you can throw a exception controlled or if the exception is outside. In the errorPage, you can know the exception that produced the jsp (if was a myException or an Exce

Re: ERROR page ...

2001-05-18 Thread Yee, Hung
Here's an example from Sun's JSP tutorial that you might be interested in: http://www.java.sun.com/products/jsp/html/jsptut11a.html -Original Message- From: BERWART Thierry [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 1:40 AM To: [EMAIL PROTECTED] Subject:

Re: Error page

2002-01-11 Thread Hamid
cation and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Yong Chee Keong Sent: Saturday, January 12, 2002 10:53 AM To: [EMAIL PROTECTED] Subject: Error page Hello there, Putting the line below gave me the exception message <%= exception.getMessage() %> I want to get the printStackTrace o

Re: Error page

2002-01-12 Thread Zvika Markfeld
[EMAIL PROTECTED]]On Behalf Of Yong Chee Keong Sent: Saturday, January 12, 2002 7:53 AM To: [EMAIL PROTECTED] Subject: Error page Hello there, Putting the line below gave me the exception message <%= exception.getMessage() %> I want to get the printStackTrace of exceptions in JSP. I read tha

Re: Error page

2002-01-12 Thread Dmitry Namiot
See Error tag from Coldtags suite: http://www.servletsuite.com/jsp.htm -- Hello there, Putting the line below gave me the exception message <%= exception.getMessage() %> I want to get the printStackTrace of exceptions in JSP. I read that there is a method for printStackTrace wh

Re: Error page

2002-01-18 Thread Anthony Tagunov
Hello Yong, Saturday, January 12, 2002, 8:53:27 AM, you wrote: YCK> Hello there, YCK> Putting the line below gave me the exception message YCK> <%= exception.getMessage() %> YCK> I want to get the printStackTrace of exceptions in JSP. YCK> I read that there is a method for printStackTrace whi

Re: Error page

2001-02-21 Thread Clemente Dani
I suppose, you can use simple try/catch and forward to a error page yourself (if you didn't sent any data before). Bye - Mensaje Original - De: Tushar Sarmah <[EMAIL PROTECTED]> Fecha: Miércoles, Febrero 21, 2001 12:54 pm Asunto: Error page > We are using Web sphere 2.

Re: Error Page

2000-02-13 Thread Arun Thomas
age directive identifies the relative path to the error page. --%> <%@ page errorPage="Error.jsp" import="java.util.*" %> Generate JSP Error <% request.setAttribute("from", "JSP Error Page"); Integer.parseInt("

Error Page Directive

2000-03-16 Thread Farrin, Martin A
Hi all, Just a quickie - I have placed most of my JSP code into try and catch blocks, but I have also included the errorPage directive. The problem is the exception is caught and the error page is not called. I have even tried a jsp:forward in the catch block. Should I remove the try and catch

Re: Error Page?

2000-05-31 Thread Nayak Savitha
Vector has <%= vec.size() %> elements. - ErrorPage.jsp <%@ page isErrorPage="true" %> JSP Error Page JSP Error Page An exception was thrown: <%= exception %> With the following stack trace: <% ByteArrayOutputStream ostr = new ByteArrayOutputStream();

Re: Error page

2002-05-15 Thread Bhushan_Bhangale
I think you need to specify the full virtual path of errorpage.jsp while defining the errorPage attribute in main.jsp -Original Message- From: Gading [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 11:00 AM To: [EMAIL PROTECTED] Subject: Error page Hi all, I have 2 page one

Re: Error page

2002-05-15 Thread Gading
At 11:02 AM 5/16/2002 +0530, you wrote: >I think you need to specify the full virtual path of errorpage.jsp while >defining the errorPage attribute in main.jsp It's on the same directory, if so its hould give 404 instead of 500. I thinks it because of "error scoping", for eaxample it work when i

The Error Page Directive

1999-11-29 Thread Masaoud
Hi, I was just wondering, as to what the <%@ page errorPage="somePage.jsp" %> actually do ? When does this "somePage.jsp" get invoked ? Is it done automatically ? If I have cases wherein there may be multiple errors for which I wish to standerdaize the error display, can I use a single "errorpag

Error page in jsp

2001-11-13 Thread charu gupta
Hi, I am developing an application consisting of jsp pages and oracle d/b. I have tried using the error page for trapping run time errros, but its not working, the run time errors still get displayed on the jsp page where they occur. I'll have loked for examples on the internet but most o

JSWDK-1.0.1 error page

2001-03-26 Thread Daniel Tomé
Hi, I wanted to know if there's anyway that I can display the errors on the web browser instead of the cmd console. Thanks. Daniel Tome [EMAIL PROTECTED] === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-I

JSP Error Page Problems

2000-01-14 Thread Peterson, Brian
I'm using JRun w/IIS. My error page is correctly invoked when an exception occurs After displaying the error, I leave it up to the user to hit the browsers back button. Any further session operations using a JSP page cause a ClassCastException, which seems to occur in code that's ge

Re: Error Page Directive

2000-03-17 Thread Mike McKechnie
> Just a quickie - I have placed most of my JSP code into try and catch blocks, > but I have also included the errorPage directive. > > The problem is the exception is caught and the error page is not called. I > have even tried a jsp:forward in the catch block. > > Should

Configuring Default Error Page

2002-02-21 Thread Mahesh Kumar Punjabi
Hi All, Could any body tell me how to configure the default error page in WebSphere Application Server Version 2.0. Thanks Mahesh ==To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".

error-page vs. errorPage

2002-07-15 Thread Jay Burgess
JSP? I'm trying to create a single error page that handles any >exceptions generated by the JSPs within my webapp, without having to name >the error page in every JSP. > >To start with, I added the following to my web app's WEB.XML to indicate a >"catch all"

Application-wide error page.

2002-08-14 Thread John Ghidiu
Hi All, I am writing my first web application, and I need some help. I have spent most of the morning looking for the answer to what should be a simple problem. I would like to have an error page that is global, in terms of the application. That is, whenever any type of error occurs, I would

Re: The Error Page Directive

1999-11-29 Thread Tom Preston
_service method automatically when you have an error page declared. Exceptions that you do not explicitly catch in the jsp will make it to this try block. The try block has a nested try block. If the output has already be "committed", you will not hit the error page (because headers have al

jsp error page in email

2001-08-29 Thread Alireza Nahavandi
Hi All, In my jsp error page I am sending en email to administrator mentioning the error. Is there any way to send the trace stack to this email?. exception.printStackTrace(...) show the stack on the screen with void return value . Is there any other way to get this stack. Thank you

Re: Error page in jsp

2001-11-15 Thread Joe Cheng
this technique worked fine for me on weblogic 5. I can't show you any examples though. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-

Re: JSWDK-1.0.1 error page

2001-03-26 Thread Alison Dent
In the catch clause of the try-catch exception.printStackTrace(out); A. Dent Daniel Tomé wrote: > > Hi, > I wanted to know if there's anyway that I can display the errors on the web > browser instead of the cmd console. > Thanks. > > Daniel Tome > [EMAIL PROTECTED] > > ===

error: page has no attribute

2000-04-27 Thread Bilal Ali Nawaz
AIL PROTECTED] Subject: WebSphere and JSPs hi all, we are trying to install some JSPs on WebSphere 2.0 but the installation fails. the server returns the error: page has no attribute. i have tried the same jsps on jswdk1.0.1 on my local machine and they work fine. can anyone please help?? thanking

JSP Error Page and Servlets

2000-08-08 Thread Patrick Buchanan
How do I use a JSP Error Page with a servlet? I assume I use a RequestDispatcher object to forward the request and response objects to the JSP, but does anyone have a code example of how to accomplish this? Do I have to store it as a request attribute and then have code in the JSP to pull it

Tomcat and error page display

2002-04-23 Thread Bommakanti, Vamsee
hello I have an error page in my application that displays any/all the errors. i have a problem here, when a page throws an error before it writes any content to the output, it shows the error page ok, but if there is any error after it writes the content to the page then it doesnot show it at

Re: error-page vs. errorPage

2002-07-15 Thread Jayson Falkner
ute of the page >> directive >> within a JSP? I'm trying to create a single error page that handles any >> exceptions generated by the JSPs within my webapp, without having to name >> the error page in every JSP. >> >> To start with, I added the followin

Re: error-page vs. errorPage

2002-07-15 Thread Hans Bergsten
ationship between the element in >> my webapp's WEB.XML versus the "errorPage" attribute of the page >> directive >> within a JSP? I'm trying to create a single error page that handles any >> exceptions generated by the JSPs within my webapp, without

Re: error-page vs. errorPage

2002-07-15 Thread Jay Burgess
ilto:[EMAIL PROTECTED]] > Sent: Monday, July 15, 2002 8:30 AM > To: [EMAIL PROTECTED] > Subject: Re: error-page vs. errorPage > > > Hi Jay, > > I think this is an issue which was resolved with JSP 2.0. The > problem is > that an exception passed via web.xml

Re: Application-wide error page.

2002-08-14 Thread Anoop Kumar V
u can use an error-page directive. In tomcat examples, there is a particular example which shows this. <%@ page errorPage="errorpge.jsp" %> You will hv to include this in every jsp u wish to redirect to an error page like this. -anoop -Original Message- F

Re: Application-wide error page.

2002-08-14 Thread John Ghidiu
I considered that, but again, that seems rather restrictive - if I want to change the error page in the future, I would have to change every JSP, right? And that does not solve the HTTP errors (404, for example). Regards, John John Ghidiu Benderson Development Company Inc. [EMAIL PROTECTED

Re: Application-wide error page.

2002-08-14 Thread Joseph Ottinger
about Java Server Pages specification and >reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Application-wide error page. >Date: Wed, 14 Aug 2002 10:42:33 -0400 > >I considered that, but again, that seems rather restrictive - if I want to >change the erro

Re: Application-wide error page.

2002-08-14 Thread John Ghidiu
: Wednesday, August 14, 2002 11:17 To: [EMAIL PROTECTED] Subject: Re: [JSP-INTEREST] Application-wide error page. You *could* always do the unexpected and leverage web.xml's capability of setting up exception handlers across the webapp, which can even be done for HTTP errors. That might be r

Re: Application-wide error page.

2002-08-14 Thread Martin Gainty
OTECTED] >Subject: Re: Application-wide error page. >Date: Wed, 14 Aug 2002 10:37:56 -0400 >MIME-Version: 1.0 >Received: from [192.18.99.108] by hotmail.com (3.2) with ESMTP id MHotMailBF23B65A00794004321EC012636CE4690; Wed, 14 Aug 2002 07:38:51 -0700 >Received: from swjscmail1 (s

Dynamic parameter to error page

2002-08-29 Thread Alireza Nahavandi
Hi All, I need to pass a dynamic parameter to an error page : <%@ page errorPage="error.jsp?fn=b.jsp&id=" %> Is there any way to make dynamic ? Thank you. === To unsubscribe: mailto [EMAIL

JSP error page from Servlet problem .

1999-11-17 Thread Samuele Brignoli
I hope that someone good with JSP and Servlet can help me ... I'm triying to send an error message to a jsp page called error.jsp located in c:\Apache_Group\Apache\htdocs\folder1\ from a servlet MultitelPay.jsp located in the same directory, c:\Apache_Group\Apache\htdocs\folder1\. In my servlet

Re: jsp error page in email

2001-08-29 Thread Richard Yee
>In my jsp error page I am sending en email to administrator mentioning the >error. Is there any way to send the trace stack to >this email?. exception.printStackTrace(...) show the stack on the screen >with void return value . Is there any other way to get this stac

Re: jsp error page in email

2001-08-29 Thread Christian Roslawski
Hi Alireza, > In my jsp error page I am sending en email to administrator mentioning the > error. Is there any way to send the trace stack to > this email?. exception.printStackTrace(...) show the stack on the screen > with void return value . Is there any other way to get this stack

Re: jsp error page in email

2001-08-30 Thread Alireza Nahavandi
Thank you Richard, it worked fine. Is there any way to get the name of jsp file in which the error happened in an error page? Thank you. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Richard Yee Sent

Re: jsp error page in email

2001-08-30 Thread Richard Yee
there any way to get the name of jsp file in which the error happened in >an error page? >Thank you. > >-Original Message- >From: A mailing list about Java Server Pages specification and reference >[mailto:[EMAIL PROTECTED]]On Behalf Of Richard Yee >Sent: Wednesday,

Re: jsp error page in email

2001-08-30 Thread Alireza Nahavandi
Hi Richard, In case of error I pass the exception object to email program, here after opening stream for the email body I could easily include the stack content using the method you mentioned. The getRequestURI() method returns the name of the jsp error page but I need to get the name of the

Re: jsp error page in email

2001-08-30 Thread Richard Yee
-0400, you wrote: >Hi Richard, >In case of error I pass the exception object to email program, here after >opening stream for the email body I could easily include the stack content >using the method you mentioned. > >The getRequestURI() method returns the name of the jsp error page

Re: jsp error page in email

2001-08-30 Thread Alireza Nahavandi
Hi Richard, I have couple of jsp pages with page directive <%@ page errorPage="error.jsp" %> so erro.jsp is my error page. I do all exception handling in this page. I make the required email body in this page and pass it to an email java method with the exception object. -

Re: jsp error page in email

2001-08-30 Thread Richard Yee
Alireza, Why don't you put a string in the session that indicates the current JSP page. The error page can then retrieve this value and display it in the email. You would need to have code such as this session.setAttribute("lastPage",request.getRequestURI()); at the beginning of

Re: jsp error page in email

2001-08-30 Thread Alireza Nahavandi
age- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Richard Yee Sent: Thursday, August 30, 2001 3:51 PM To: [EMAIL PROTECTED] Subject: Re: jsp error page in email Alireza, Why don't you put a string in the session that indicates

Re: jsp error page in email

2001-08-30 Thread Richard Yee
f Of Richard Yee >Sent: Thursday, August 30, 2001 3:51 PM >To: [EMAIL PROTECTED] >Subject: Re: jsp error page in email > > >Alireza, >Why don't you put a string in the session that indicates the current JSP >page. The error page can then retrieve this value and displa

Re: jsp error page in email

2001-09-07 Thread Christian Roslawski
Hi Gamini, > I have followed with interest Alireza & Richards problem and solutions > for capturing stacktrace. I tried the solution suggested by you first > using the following code within a JSP page > > PipedWriter pipeOut = new PipedWriter(); > PipedReader pipeIn = new PipedReader(

Re: jsp error page in email

2001-09-07 Thread Chris Pratt
eptember 07, 2001 5:17 AM Subject: Re: [JSP-INTEREST] jsp error page in email > Hi Gamini, > > > I have followed with interest Alireza & Richards problem and solutions > > for capturing stacktrace. I tried the solution suggested by you first > > using the followin

Re: jsp error page in email

2001-09-08 Thread Dmitry Namiot
see Error tag and Sendmail from Coldjava's taglib: http://www.servletsuite.com/jsp.htm You may use showError tag as a body for sendmail -- Coldjava - server-side Java components http://www.servletsuite.com __ Your favorite stores,

FW: jsp error page in email

2001-09-09 Thread BMS Robot Email
e Tel (03) 9813 3022. Fax (03) 9882 5887 -Original Message- From: Chris Pratt [mailto:[EMAIL PROTECTED]] Sent: Saturday, September 08, 2001 3:33 AM To: [EMAIL PROTECTED] Subject: Re: jsp error page in email Try this: java.io.StringWriter str = new java.io.StringW

JSP Error Page problems with JRun

2000-01-06 Thread Peterson, Brian
I'm using IIS/JRun. My custom error page gets invoked at the appropriate times, and displays the exception, with the following caveat: After an exception occurs, I hit the BACK button on my browser, and when any other JSP page gets run, my error page gets called again with the foll

how to get a error page

2000-04-24 Thread Amanda Fu
hi, you guys, I don't know how to get error page, codes as follow, but server always tell me "you might want to have an error page ...". myjsp.jsp: <%@ page import="java.util.*" errorPage="error.jsp" %> error.jsp: <%@ page isErrorPage="true"

Re: error: page has no attribute

2000-04-27 Thread K Ramesh
ai/HCLDELUXE) Subject: error: page has no attribute hi all, can anyone please explain why a server will throw "page has no attribute" error when we call on a jsp from a web browser. thanking you all in advance, bilal. Marc Krisjanous <[EMAIL PROTECTED]> on 04/27/2000 12:43:58 PM

JSP Error Page with a servlet

2000-08-09 Thread Patrick Buchanan
I sent this out yesterday without a single reply. Can anyone help me on this? I'm new at Java so any advice would be appreciated. How do I use a JSP Error Page with a servlet? I assume I use a RequestDispatcher object to forward the request and response objects to the JSP, but does a

Re: Dynamic parameter to error page

2002-08-29 Thread Hans Bergsten
Alireza Nahavandi wrote: > Hi All, > > I need to pass a dynamic parameter to an error page : > > <%@ page errorPage="error.jsp?fn=b.jsp&id=" %> > > Is there any way to make dynamic ? No, the page directive is not evaulated at runtime (only tran

Re: Dynamic parameter to error page

2002-08-29 Thread Campano, Troy
PROTECTED]] Sent: Thursday, August 29, 2002 12:20 PM To: [EMAIL PROTECTED] Subject: Re: Dynamic parameter to error page Alireza Nahavandi wrote: > Hi All, > > I need to pass a dynamic parameter to an error page : > > <%@ page errorPage="error.jsp?fn=b.jsp&id="

Re: Dynamic parameter to error page

2002-08-29 Thread Hans Bergsten
s kind of thing. Hans > -Original Message- > From: Hans Bergsten [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 12:20 PM > To: [EMAIL PROTECTED] > Subject: Re: Dynamic parameter to error page > > > Alireza Nahavandi wrote: > >>Hi All, &

Re: Dynamic parameter to error page

2002-08-29 Thread Alireza Nahavandi
To: [EMAIL PROTECTED] Subject: Re: Dynamic parameter to error page Campano, Troy wrote: > What I did was I needed my errorPage to catch my SQL, so someone > recommended storing the SQL in a session just before I executed it > so that SQL Session could be read on the errorPage. That work

How to set an error page

2002-12-10 Thread Deepak
Hi folks I have a jsp page which is experiencing some "Error 500" s Instead of the ugly messages how can I show the user a simple message such as "An unforseen error occured ,please try again" Kindly send in your suggestions. Thanx in advance Deepak =

Re: JSP error page from Servlet problem .

1999-11-17 Thread Hans Bergsten
Samuele Brignoli wrote: > > I hope that someone good with JSP and Servlet can help me ... > > I'm triying to send an error message to a jsp page called error.jsp located > in c:\Apache_Group\Apache\htdocs\folder1\ > from a servlet MultitelPay.jsp located in the same directory, > c:\Apache_Group\Ap

Re: JSP error page from Servlet problem .

1999-11-17 Thread AndySoft
> try > { > > getServletConfig().getServletContext().getRequestDispatcher("error > .jsp?error > =fatal error").forward (request,response); > > } catch (Exception ex) { > ex.printStackTrace (); > }

I need a 404 error page redirect

2001-05-23 Thread Doug Cannon
Hey list, how's it going? I must be missing something. I am trying to redirect to a custom error page whenever a 404 error occurs. It ought to be easy, but I'm having trouble. I am using Apache and Tomcat on Linux for my JSP pages. I don't know all the version numbers, but I

FW: RE: jsp error page in email

2001-09-06 Thread BMS Robot Email
03) 9813 3022. Fax (03) 9882 5887 > > > > -Original Message- > From: Christian Roslawski [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 30, 2001 5:14 PM > To: [EMAIL PROTECTED] > Subject: Re: jsp error page in email > > > Hi Alireza, > > > In my

Re: how to get a error page

2000-04-24 Thread Arnab Acharya
Use try, catch -- on encountering error, the code will move into catch. > -Original Message- > From: Amanda Fu [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 24, 2000 9:42 PM > To: [EMAIL PROTECTED] > Subject: how to get a error page > > hi, you guys, > &

Re: how to get a error page

2000-04-24 Thread Hans Bergsten
Amanda Fu wrote: > > hi, you guys, > > I don't know how to get error page, codes as follow, but server always > tell me "you might want to have an error page ...". > myjsp.jsp: > <%@ page import="java.util.*" errorPage="error.jsp" %>

Re: JSP Error Page with a servlet

2000-08-09 Thread Rogério Saran
this? > I'm new at Java so any advice would be appreciated. > > How do I use a JSP Error Page with a servlet? I assume I use a > RequestDispatcher object to forward the request and response objects to the JSP, > but does anyone have a code example of how to accomplish this?

Re: JSP Error Page with a servlet

2000-08-09 Thread TODD HARNEY
You are exactly right...from your servlet you forward to the JSP error page...storing the exception as an attribute...which your JSP error page can pull out of the request object it receives and then display that error. >>> [EMAIL PROTECTED] 8/9/00 9:10 >>> I sent this out y

Re: JSP Error Page with a servlet

2000-08-09 Thread Rema Kumar
}catch( Exception error ){ ErrorHandler.log("In JSP page generalsearchresults.jsp:", error); response.sendRedirect("/error/server_error.html");(Important define your error page) } return retBuffer.toString(); } Have a error page

Re: JSP Error Page with a servlet

2000-08-09 Thread Naresh Thawani
write error.jsp. catch exception e and display error.jsp if error else xyz.jsp -Original Message- From: Rogério Saran [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 8:29 AM To: [EMAIL PROTECTED] Subject: Re: JSP Error Page with a servlet Patrick, maybe you will not need to

Re: JSP Error Page with a servlet

2000-08-09 Thread Hans Bergsten
Patrick Buchanan wrote: > > I sent this out yesterday without a single reply. Can anyone help me on this? > I'm new at Java so any advice would be appreciated. > > How do I use a JSP Error Page with a servlet? I assume I use a > RequestDispatcher object to forward t

Re: How to set an error page

2002-12-10 Thread Daniel
535 Mobile +66 9 810 1157 -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Deepak Sent: Wednesday, December 11, 2002 1:18 PM To: [EMAIL PROTECTED] Subject: How to set an error page Hi folks I have a jsp pag

Re: How to set an error page

2002-12-10 Thread Deepak
10 1157 > > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]] On Behalf Of Deepak > Sent: Wednesday, December 11, 2002 1:18 PM > To: [EMAIL PROTECTED] > Subject: How to set an error page > > Hi fo

Re: How to set an error page

2002-12-11 Thread Deepak
r Pages specification and reference > [mailto:[EMAIL PROTECTED]] On Behalf Of Deepak > Sent: Wednesday, December 11, 2002 1:18 PM > To: [EMAIL PROTECTED] > Subject: How to set an error page > > Hi folks > > I have a jsp page which is experiencing some "Error 500" s

Re: How to set an error page

2002-12-11 Thread Eric Cho
I too have this problem. It works on my workstation environment (Websphere Studio) but it doesn't work after I've deployed it to the server (WebSphere 4.01.021 on OS/390). Are there any other ways to declare the error page other than in the web.xml? Thanks, Eric -Original Message

Re: How to set an error page

2002-12-11 Thread Martin
Eric: yes..you declare your errorpage In your JSP.. Regards, Martin - Original Message - From: "Eric Cho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 11, 2002 8:07 PM Subject: Re: How to set an error page > I too have this problem. I

FW: How to set an error page

2002-12-11 Thread Amit Ghaste
Sorry abt that... i sent it to the personal mail by mistake -Original Message- From: Amit Ghaste [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 8:33 PM To: Martin Subject: RE: How to set an error page I belive u set the error page...like for 400 and 500 error pages in

Re: How to set an error page

2002-12-11 Thread Mattias Jiderhamn
<%@ page errorPage="/500.html" %> > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Eric Cho > Sent: Thursday, December 12, 2002 1:07 AM > To: [EMAIL PROTECTED] > Sub

Re: How to set an error page

2002-12-12 Thread Anindya
can somebody prescribe me a very useful JSP IDE/Editor thanks & regards , Anindya === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTER

Re: How to set an error page

2002-12-12 Thread Michael Risser
http://www.jedit.org -Original Message- From: Anindya [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 3:01 AM To: [EMAIL PROTECTED] Subject: Re: How to set an error page can somebody prescribe me a very useful JSP IDE/Editor thanks & regards , Ani

Calling an JSP Error Page from a Servlet

1999-11-10 Thread luke olegario
Hi, Is it possible to call a JSP error page from a servlet? If it's so, how would you invoke it and how would you pass the exception object for the JSP error page to process? Regards, Luke __ Get Your Private, Free Email at

Error Page : Which page did I come from?

2000-01-17 Thread Bragg, Casey
Hello all! Consider that page X.jsp contains a <%@ page errorPage="Y.jsp"%> An exception occurs during processing of X.jsp. Thus Y.jsp handles the exception. Is there a way of determining in Y.jsp which page caused the exception (X.jsp)? I tried the following to no avail <%@ page

ANSWER to JSP Error Page with a servlet

2000-08-09 Thread Patrick Buchanan
eference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Patrick Buchanan/CFC) Subject: Re: JSP Error Page with a servlet You are exactly right...from your servlet you forward to the JSP error page...storing the exception as an attribute...which your JSP error page can pull out of the

Re: Calling an JSP Error Page from a Servlet

1999-11-10 Thread Craig Cottingham
essage- > From: luke olegario [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, November 10, 1999 4:46 AM > To: > Subject: Calling an JSP Error Page from a Servlet > > > Hi, > > Is it possible to call a JSP error page from a servlet? If > it's so, how > would you

Error page to be displayed on a separate window

2001-04-25 Thread Nabe Anju
separate window. Basically, if the user is trying to update some data (in a form) then the error page should be shown in a separate window giving him an option to correct the mistakes rather than overlaying the data window . Is there a way to do it? Pls help. Thanks

Re: Error Page : Which page did I come from?

2000-01-17 Thread Arun Thomas
Casey, Since the error pages do have access to your request implicit object, you could, as the first action on every non-error page, simply set an attribute of your request with a label identifying the page as the value of the attribute. If an error occurs, this value can be extracted by the

Error page not working if exception occurs after a

2000-02-01 Thread Matt Krevs
If an exception is raised in one of my JSPs after a jsp:include tag i get the following error in the error log but my error page is not displayed "Attempt to clear a buffer that's already been flushed at com.sun.server.http.pagecompile.jsp.runtime.JspWriterImpl.clear(JspWriter

Re: Error page to be displayed on a separate window

2001-04-25 Thread Sagar Pandit
quot;exception" variable to print the errors as u do normally. Sagar -Original Message- From: Nabe Anju [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 9:49 AM To: [EMAIL PROTECTED] Subject: Error page to be displayed on a separate window Hi, I am using JSP -servl

Re: how to call a jsp error page from a servlet

2004-06-11 Thread kapil dattatraya shewate
Hi i want to call a jsp error page from a servlet how to do   Hi i want to call a jsp error page from a servlet how to do