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

JSP error...

2003-01-29 Thread Shyama Sunder Popuri
Hi Gurus, I have a problem over here. This JSP works fine out side Jbuilder, but has a problem when I try to run the same in Jbuilder env. I get this error while I try to compile the JSP in JBuilder. "ms_search_results.jsp": org.apache.jasper.compiler.ParseException: Cannot read file: ze file

Re: Help on JSP error

2001-09-15 Thread Sowbhagyavalli Suryadevara
name = rs.getString(2); ... } -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Dick Wong Sent: Friday, September 14, 2001 9:07 PM To: [EMAIL PROTECTED] Subject: Help on JSP error Dear all, When I execute the query, if the r

Help on JSP error

2001-09-14 Thread Dick Wong
Dear all, When I execute the query, if the result set has no record then it display the following error ? why ? how can I prevent it ? Internal Servlet Error: javax.servlet.ServletException at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459)

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

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,

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-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(

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

JSP Error in weblogic-6.1.0

2001-09-05 Thread naidu
hi all, In weblogic6.1.0 ,I got the following error when I tried to browse one jsp page. Please suggest me what might be the reason. <[WebAppServletContext(4029710,jsp,/jsp)] Servlet failed with Exception weblogic.servlet.jsp.JspException: (line 10): include directive requires file attribute

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-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
cption ); >--- > >So, if any error happens in A.jsp then error.jsp will be invoked and I need >to pass A.jsp as part of errorMsg to email program. hope it's clear. > >Thank you. > > >-Original Message- >From: A mailing list about Java Server Pages specifica

Re: jsp error page in email

2001-08-30 Thread Alireza Nahavandi
k you. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Richard Yee Sent: Thursday, August 30, 2001 2:57 PM To: [EMAIL PROTECTED] Subject: Re: jsp error page in email Alireza, Is the email program a JSP pa

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, 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
August 29, 2001 4:31 PM >To: [EMAIL PROTECTED] >Subject: Re: jsp error page in email > > >Alireza, >You can try outputting the stack trace to a temporary file using >printStackTrace(PrintStream) and then attaching that file to your >email. You could also read the contents of

Re: jsp error page in email

2001-08-30 Thread Alireza Nahavandi
: Wednesday, August 29, 2001 4:31 PM To: [EMAIL PROTECTED] Subject: Re: jsp error page in email Alireza, You can try outputting the stack trace to a temporary file using printStackTrace(PrintStream) and then attaching that file to your email. You could also read the contents of the file back into the

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-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

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: JSP Error

2001-06-25 Thread horwat
ge hello; > > public class NameHandler { > > private String username; > > public NameHandler() { > username = null; > } > > public void setUsername( String name ) { > username = name; > } > > public String getUsername() { > return username; > } > } > >

JSP Error

2001-06-25 Thread S. Jyotinarayan
name ) { username = name; } public String getUsername() { return username; } } response.jsp   Hello, ! When I try and open the hellouser.jsp page, I'm getting the following error. Where am I going wrong? JSP Error: ---

Re: How can I catch an JSP error ????

2001-04-05 Thread BERWART Thierry
Thanks you Nils ! It seems to be a good alternative... but i loose the benefit of the setProperty method... Yes sure but my boss don't want to use javascript for field verification :/ I found something on http://www.jsptut.com/Taglibs.html It talk about Blazix server. This server have a tag l

Re: How can I catch an JSP error ????

2001-04-05 Thread BERWART Thierry
origine- De : Michael Sweeney [mailto:[EMAIL PROTECTED]] Envoyé : jeudi 5 avril 2001 18:52 À : [EMAIL PROTECTED] Objet : Re: How can I catch an JSP error Remember that when the form is submitted, it always sends data as a string in any case, no matter what the user enters.

Re: How can I catch an JSP error ????

2001-04-05 Thread Michael Sweeney
At 10:32 PM 4/5/01 +0530, you wrote: >Hi, >But Micheal if u use setProperty the conversion from string to int >would be automatically done if the value entered is a numeral. I think >this is one of the intospection features. pls correct me if i am >wrong. >John It's more likely that I am wrong (o

Re: How can I catch an JSP error ????

2001-04-05 Thread John Thomas
10:22:14 PM Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> Sent by: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc: Subject: Re: How can

Re: How can I catch an JSP error ????

2001-04-05 Thread Nils Janson
n and reference To: [EMAIL PROTECTED] Subject: How can >I catch an JSP error Date: Thu, 5 Apr 2001 16:06:32 +0200 > >Hello, > >I have a jsp which filled a bean with 3 variables : a name, an address >email and an age. > >This is a part of my JSP : > > > > > &

Re: How can I catch an JSP error ????

2001-04-05 Thread Michael Sweeney
Remember that when the form is submitted, it always sends data as a string in any case, no matter what the user enters. You have to use Integer.parseInt(request.getParameter('paramName') to make the value an int anyway. You might also want to check the form input with some javascript to make sure

Re: How can I catch an JSP error ????

2001-04-05 Thread John Thomas
a Server Pages specification and reference <[EMAIL PROTECTED]> Sent by: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc: Subject: How can I catch an JSP error Hello, I have a jsp which filled a bean

How can I catch an JSP error ????

2001-04-05 Thread BERWART Thierry
Hello, I have a jsp which filled a bean with 3 variables : a name, an address email and an age. This is a part of my JSP : <%@ page import="test_tbe" errorPage="error.jsp" %> Hello please enter your name and your email ... Name : Email :  Age :   ... in my bean, the variabl

Re: iPlanet and Jsp error using RMI-JDBC. - Help. New to planet.

2001-02-28 Thread Chris DeLise
PROTECTED]> > From: Dylan Rosario <[EMAIL PROTECTED]> > Subject: iPlanet and Jsp error using RMI-JDBC. - Help. New to planet. > To: [EMAIL PROTECTED] > > Hi, > > I get this error when running a JSP on iPlanet connecting to Cloudscape via > RMI-JDBC. > >

iPlanet and Jsp error using RMI-JDBC. - Help. New to planet.

2001-02-27 Thread Dylan Rosario
Hi, I get this error when running a JSP on iPlanet connecting to Cloudscape via RMI-JDBC. The JSP works fine on Enhydra connecting to Cloudscape DB via RMI-JDBC. [27/Feb/2001:13:59:52] failure ( 652): Internal error: exception thrown from the servlet service function (uri=/INN/portal/page.jsp)

iAS Compiling JSP error

2001-02-15 Thread Eoin Shalloo
Hi, We have Oracle iAS 1.0.1.0.0 (called 9i I believe in latest Oracle parlance) running on NT SP5. We have already used iAS (Apache) to run servlets and have these working in a production environment. Now that we have started to use JSPs the rot has set in! Where a given bean is referenced in

Re: jsp error help

2000-12-08 Thread Girish B Mohite
ideas to debug jsp error. > i am confused. > > > i got error message like following. and donot know > where the error occurred in my jsp file? > > >thanks alot > >Error: 500 >Location: /usertable/userlist.jsp >Internal Servlet Error: > >org.apach

Re: jsp error help

2000-12-08 Thread PIYUSH NIGAM
It seems to be caused by a NullPointerException - will need to see your code to locate the problem, Piyush Nigam [EMAIL PROTECTED] -Original Message- From: alex [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 3:33 PM To: [EMAIL PROTECTED] Subject: jsp error help hi does

Re: jsp error help

2000-12-08 Thread G.Nagarajan
rver Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of alex Sent: Friday, December 08, 2000 11:03 AM To: [EMAIL PROTECTED] Subject: jsp error help hi does anyone have ideas to debug jsp error. i am confused. i got error message like following. and donot know

jsp error help

2000-12-08 Thread alex
hi does anyone have ideas to debug jsp error. i am confused. i got error message like following. and donot know where the error occurred in my jsp file? thanks alot Error: 500 Location: /usertable/userlist.jsp Internal Servlet Error: org.apache.jasper.JasperException: Unable to

Re: JSP Error

2000-11-28 Thread Sanjay Gomes
[mailto:[EMAIL PROTECTED]] Sent: 27 November 2000 21:42 To: [EMAIL PROTECTED] Subject: JSP Error I have created a simple Java Bean, and a JSP that uses this bean. I am getting an error when using the bean and I cannot figure it out. I have included the JSP, the Bean and the error. Any help would

Re: JSP Error

2000-11-27 Thread Clemente Dani
Hi, try with import: <%@ page import="..."%> with the name of your bean class. Bye - Mensaje Original - De: "Jay H. Lang" <[EMAIL PROTECTED]> Fecha: Lunes, Noviembre 27, 2000 10:41 pm Asunto: JSP Error > I have created a simple Java Bean, an

Re: JSP Error

2000-11-27 Thread Hans Bergsten
"Jay H. Lang" wrote: > > I have created a simple Java Bean, and a JSP that uses this bean. I am > getting > an error when using the bean and I cannot figure it out. I have > included the JSP, the Bean and the error. There are two problems: > > You need to either add page directive that imp

JSP Error

2000-11-27 Thread Jay H. Lang
I have created a simple Java Bean, and a JSP that uses this bean. I am getting an error when using the bean and I cannot figure it out. I have included the JSP, the Bean and the error. Any help would be appreciated. Thanks. My JSP Page: This page is just to test a JSP to a Java Bean

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: 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: 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 Rema Kumar
searchres.jsp:", e); res.sendRedirect("/error/server_error.html"); } return outBuffer.toString(); } Hope this helps. -Original Message- From: Patrick Buchanan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 9:11 AM To: [EMAIL PROTECTED] Subj

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 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?

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

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

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Lisa Lewis
I was running build 153 and not the latest build 157 on this development machine. I feel really stupid because I knew that there was a bug with older builds and I thought that I was running build 157! :-( Lisa >Upon further testing, I have come to realize that if I delete some >comment lines fr

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Lisa Lewis
limitation of JSP pages that I am reaching. Please advise! >Problem: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException >Environment: We are using java version "1.2.2" and Solaris VM (solaris_JDK_1.2.2_05a) > and Jrun 2.3.3 and Netscape iPanet 4.0 Webserver. We are

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Richard Cammarano
-INTEREST Subject: Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException Just stop and start the instance of the iplanet you are running. Dont know the cause. The JSP page may not have any error. Still some times i-planet when used with jdk option (instead of jre option , which can only be

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Matthews,Paul
> What is strange is this code worked yesterday and we have not made any > changes to the code and it is not working today That has got to be my favourite developer quote of all time! > if (patientKey.startsWith(",")) patientKey > =patientKey.substring(1); Any chance that tknzr could en

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Naveen
. - Original Message - From: "Lisa Lewis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 28, 2000 7:48 PM Subject: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException > Problem: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException > En

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Naveen
Oops!! Sorry ! I thought u r running iplanet server. The answer was for i-planet server. - Original Message - From: "Lisa Lewis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 28, 2000 7:48 PM Subject: JRUN, JSP Error - java.lang.ArrayInd

JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Lisa Lewis
Problem: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException Environment: We are using java version "1.2.2" and Solaris VM (solaris_JDK_1.2.2_05a) and Jrun 2.3.3 and Netscape iPanet 4.0 Webserver. We are running Solaris 2.7 on a Ultra-2 with 512M of memory. What is stran

JSP error..plz..help!!

2000-06-07 Thread Geeta Kottapalli
Hi, Trying very hard from yesterday to reach the board. I developed an application in Oracle JDeveloper3.0 which worked fine and now when I am trying to run it in JavaWebServer2.0 on Windows NT. I JWS is not recognizing StringBuffer.delete(..,.) method.I used StrignBuffer to assign SQL statemen

JSP: Error display for EJB errors

2000-06-01 Thread Ritesh_Srivastava
I am using JSP with EJB. Also I am displaying error on a error Page.The problem is that, that if the error has occured on jsp page is displayed on the Error Page but when a server side error i.e EJB error occurs, then the error is displayed only on the server and not on the Error Page.How can i di

JSP error with JRun 2.3.3

2000-05-03 Thread Don Vaillancourt
I have a problem with JRun returning the following error: 500 Internal Server Error JSP Parse Error JSP Directive <%@ %> sessionis not recognized. This error is in regards to the following line: <%@ page session="true" %> in a *.jsp file. Anyone have any ideas. Don ===

Jsp Error Handling

2000-05-02 Thread Rajarshi Chaudhuri
Hi, Other than using the "errorpage" directive is there any elegant method for error handling in JSP? Pls. advise. Regds, Rajarshi === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some r

JSP error!!! HELP!!!!

2000-04-27 Thread Bilal Ali Nawaz
i'm using WebSphere 3.02 which supports JSP specification 0.92 & 1.0. i was testing my jsps on my local machine using JSWDK 1.0.0 which supports JSP Specification 1.0. when i try to run my jsps on WebSphere the following error occurs: "page has no attribute" or something like that. anyways, i was

Re: JSP Error

2000-04-15 Thread Elan Kaplan
ROTECTED]> Sent: Friday, April 14, 2000 12:53 PM Subject: JSP Error > Has anybody encountered this error before. If so, how did you fix it ? > > Note: \temp\caucho\_jsp\_testing\_FinalOrder__jsp.java uses or overrides a > deprecated API. > Recompile with "-deprecation&qu

JSP Error

2000-04-14 Thread JediVivek
Has anybody encountered this error before. If so, how did you fix it ? Note: \temp\caucho\_jsp\_testing\_FinalOrder__jsp.java uses or overrides a deprecated API. Recompile with "-deprecation" for details. 1 error, 1 warning Thanks, - Vivek ==

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 generated by J

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 following excepti

Re: JSP error in JRun (resolved) Scott Stirling is the man!!!

1999-11-29 Thread David Eaves
Title: RE: JSP error in JRun (resolved) Scott Stirling is the man!!! Here is Scott's answer to the problem I was having. I made the change and it is working fine now. Thanks Scott! -Dave -Original Message- From: Scott Stirling [mailto:[EMAIL PROTECTED]] Sent: Monday, Novemb

JSP error in JRun

1999-11-24 Thread David Eaves
Title: JSP error in JRun Can anyone explain this error to me? I posted a question yesterday about it. I got past the trouble that I was having by cutting out pieces of the page and putting them into other files and just -ing them. But the file I'm working with right now is very small an

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) { >

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

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: 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

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

JSP error

1999-08-01 Thread 何茗峰
Hello, I'm a beginner for JSP. I have test the JSP in jswdk-1.0-ea and Java web server 2.0 beta. It's work for jswdk-1.0-ea for the "JSP Exmaples" but does not work for "Java web server JSP Examples". It alway told me that "Error getting compiled page". what should I set? ==