struts-documentation.war expansion exception

2003-09-10 Thread Martin Gainty
2003-09-10 17:02:26 HostConfig[localhost]: Expanding web application archive struts-documentation.war 2003-09-10 17:02:27 HostConfig[localhost] Exception while expanding web application archive struts-documentation.war java.util.zip.ZipException: The process cannot access the file because

Re: struts-documentation.war expansion exception

2003-09-10 Thread Martin Gainty
Yes it was locked I have a Different error now.. Sep 10, 2003 7:57:55 PM org.apache.commons.digester.Digester endElement SEVERE: End event threw exception java.lang.reflect.InvocationTargetException Any advice? -Martin - Original Message - From: Yee, Richard K,,DMDCWEST [EMAIL

PopulateServlet exception

2003-08-28 Thread Martin Gainty
Decided to implement the Pet Store servlet under J2EE App Server All is well with === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST

javax.servlet.ServletException: Populate exception occured :Can't get catalog data source connection

2003-08-28 Thread Martin Gainty
Decided to implement the Pet Store Servlet examples When I click on Populate (Client) DB I get javax.servlet.ServletException: Populate exception occured :Can't get catalog data source connection Does anyone have an idea what this means? Thanks , Martin

OUTPUTTING AN EXCEPTION

2003-07-30 Thread Tim Davidson
Hi, How do you output the stack trace of an exception to the JSP page? I need something like: %=((Throwable)request.getAttribute(javax.servlet.error.exception)).printStackTrace();% many thanks in advance

FW: OUTPUTTING AN EXCEPTION

2003-07-30 Thread Yee, Richard K,,DMDCWEST
-Original Message- From: Yee, Richard K,,DMDCWEST Sent: Wednesday, July 30, 2003 9:04 AM To: 'A mailing list about Java Server Pages specification and reference' Subject: RE: OUTPUTTING AN EXCEPTION Try the printStackTrace(PrintWriter) method of the exception. Use the JSP out predefined

Nested Exception Handling

2003-06-17 Thread subbu
Is it possible to do Exception handling using nested Exception Example : ie: com.ibm.websphere.cpi.CPIException: java.sql.SQLException: ORA-02291: integrity constraint (xxx.yyy_Sz_FK) violated - parent key not found ; nested exception is: java.sql.SQLException: ORA-02291

Re: Nested Exception Handling

2003-06-17 Thread Bryan LaPlante
Is this kind of what you mean. try{ String a = ; if(a.equals()){ throw new Exception(I am the root exception); } }catch(Exception e){ StackTraceElement[] se = e.getStackTrace(); for(int i=0; ise.length; i++){ System.out.println(se[i].toString()); } - Original Message - From

Tomcat Startup exception

2003-03-26 Thread Luis A
Hi, I am running for the first time Tomcat 5, and I am getting the following exception on startup - the page opens fine, but I wonder if there is something wrong: Thanks, Luis. Mar 26, 2003 6:59:02 PM org.apache.catalina.core.StandardContext loadOnStartup SEVERE: Servlet /openejb_loader-0.9.1

Null pointer Exception while sending multiple list options

2003-03-14 Thread Venkat
); } /select I am retrieveing the selected (more than one or at least one)which user selects to my second jsp page try{ String[] prog=null; prog=request.getParameterValues(prog_name); }catch(Exception e){} this works fine when user select at least one value.But if he doesn't selects anything i am

Re: Null pointer Exception while sending multiple list options

2003-03-14 Thread Francisco Manuel Martínez Suárez
(java.lang.String) ../../javax/servlet/ServletRequest.html -Mensaje original- De: Venkat [SMTP:[EMAIL PROTECTED] Enviado el: viernes 14 de marzo de 2003 10:18 Para: [EMAIL PROTECTED] Asunto: Null pointer Exception while sending multiple list options Hi all, I am sending

Re: Null pointer Exception while sending multiple list options

2003-03-14 Thread Venkat
Hi, Thanks for the info. I know that it return you a string array if they selected and if not selected it return you a null. But actually what i want to do is User MUST select at least one values.This is a mandatory field. I want to catch exception if user does'nt select any thing in server side

Re: Null pointer Exception while sending multiple list options

2003-03-14 Thread Francisco Manuel Martínez Suárez
:43 Para: [EMAIL PROTECTED] Asunto: Re: Null pointer Exception while sending multiple list options Hi, Thanks for the info. I know that it return you a string array if they selected and if not selected it return you a null. But actually what i want to do is User MUST select

Re: Null pointer Exception while sending multiple list options

2003-03-14 Thread Sanchez, Enrique (CORP, DDEMESIS)
) { // Error handling stuff } Regards, Enrique -Original Message- From: Venkat [mailto:[EMAIL PROTECTED] Sent: Viernes, 14 de Marzo de 2003 05:43 a.m. To: [EMAIL PROTECTED] Subject: Re: Null pointer Exception while sending multiple list options Hi, Thanks for the info. I

exception + websphere

2003-02-21 Thread karthik s
hi all, im using websphere as my server for my JSP files. Im working on Unix Platform Theres no pblm when I use ./adminserver.sh to open the server But when I use ./adminclient.sh the following exception is throwed. java.lang.Exception: Stack trace at java.lang.Thread.dumpStack(Thread.java

Re: JSP Exception

2003-01-03 Thread Sandeep Gain
: Ritesh Gupta [mailto:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 1:15 PM To: [EMAIL PROTECTED] Subject: Re: JSP Exception Hi Karthik, Here is a link with some info : http://www.websina.com/bugzero/faq/exception-db2-tab.html Q: What is this COM.ibm.db2.jdbc.DB2Exception? [IBM][JDBC

Re: JSP Exception

2003-01-03 Thread Laxmikanth M.S.
is Success What lies behind us and what lies before us are tiny matters compared to what lies within us - Emerson -Original Message- From: arun s [SMTP:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 12:16 PM To: [EMAIL PROTECTED] Subject: JSP Exception hi, Here Im

JSP Exception

2003-01-02 Thread arun s
hi, Here Im connecting to DB2 database and Im able to retrieve datas from data base but the pblm is Im unable to update the table. I use the query ResultSet rs1=stmt.executeQuery(update user set pass='india' where eno=1001); in my JSP page. I get exception as 500 Servlet Exception COM.ibm.db2

Re: JSP Exception

2003-01-02 Thread Ritesh Gupta
Hi Karthik, Here is a link with some info : http://www.websina.com/bugzero/faq/exception-db2-tab.html Q: What is this COM.ibm.db2.jdbc.DB2Exception? [IBM][JDBC Driver] CLI0637E QUERY cannot be found A: This is a known bug in the JDBC driver in DB2 PF5, it occurs when a SQL statement

Re: Security exception when using Prefences

2002-12-16 Thread Hugo Pragt
I assume you have sufficent rights (as a user) to write to the registry? Hugo Hi everybody, I'm using the Sun ONE App Server 7 and I'm trying to use Preferences, to write information to the Win2K Server registry, but I get a java.security.AccessControlException, this is the stack trace How

Security exception when using Prefences

2002-12-13 Thread Luis Javier Beltrán
(WebContainer.java:598) SEVERE: StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception java.security.AccessControlException: access denied (java.lang.RuntimePermission preferences) at java.security.AccessControlContext.checkPermission(AccessControlContext.java :270

Forward giving NullPointer exception

2002-11-28 Thread Murali Mohan
pointer exception. ApplicationDispatcher[/ddb]: Servlet.service() for servlet debugjsp threw exception java.lang.NullPointerException at org.apache.jsp.checkinReportKPI$jsp._jspService(checkinReportKPI$jsp.java:60) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107

Re: Forward giving NullPointer exception

2002-11-28 Thread ROLDAN, Gabriel raul
2002 11:03 Para: [EMAIL PROTECTED] Asunto: Forward giving NullPointer exception Hi the following is part of my code. % ServletContext context = getServletContext (); RequestDispatcher dispatcher = context.getRequestDispatcher(/../main.jsp?file=serviceType.jsp); dispatcher.forward(request

Re: Forward giving NullPointer exception

2002-11-28 Thread Murali Mohan
); dispatcher.forward(request,response); % exeception Cannot forward after response has been committed. ApplicationDispatcher[/ddb]: Servlet.service() for servlet debugjsp threw exception java.lang.IllegalStateException: Cannot forward after

Help for JSP Exception

2002-06-12 Thread Vasudevan Srinivasan
Hi All, When i try to access the jsp file(s), i am thrown the following exception in the browser (with Tomcat4.0). A Servlet Exception Has Occurred Exception Report: javax.servlet.ServletException: Servlet.init() for servlet jsp threw exception

DBtags insert exception ??

2002-05-06 Thread sufi malak
Hi, I am using DBTags, how to catch an exception when the user try to insert the same field ( that is a pimary key) and show the user that the field already exist ? Here is what I have, I was trying to insert a new row with an IP_Address that already exist, but I got an exception

how to catch exception in DBtag ?? please help.

2002-05-06 Thread sufi malak
I am using DBtag from jakarta project taglibs, if you are inserting a row that has fields ( filed1 ( primary key), field2, field3), if the value of the field1 that you are inserting already exist, an exception got thrown, could you please tell me how to catch this exception and tell the user

Re: Class not found Exception

2002-04-14 Thread Sanjay Jadhav
Hi.. I use tomcat 4.0.1 and j2ee 1.3 did i need to modify the server.xml file every time i change the .class file or to restart the web server again. with best regards, sanjay jadhav === To unsubscribe: mailto [EMAIL

Re: Class not found Exception

2002-04-14 Thread Ashwani Kalra
[mailto:[EMAIL PROTECTED]]On Behalf Of Sanjay Jadhav Sent: Sunday, April 14, 2002 7:59 PM To: [EMAIL PROTECTED] Subject: Re: Class not found Exception Hi.. I use tomcat 4.0.1 and j2ee 1.3 did i need to modify the server.xml file every time i change the .class file or to restart the web server

Class not found Exception

2002-04-13 Thread Sanjay Jadhav
Hi.. I added the jsp:useBean tag in jsp page but it throws the ClassnotFoundException, i added the class file in the win-inf/classes. can anybody tell me exact place for the class file and jsp file. with best regards, sanjay

Re: Class not found Exception

2002-04-13 Thread Cristian Minchiotti
specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Class not found Exception Date: Sat, 13 Apr 2002 05:46:41 -0600 Hi.. I added the jsp:useBean tag in jsp page but it throws the ClassnotFoundException, i added the class file in the win-inf/classes. can anybody tell me

Re: Class not found Exception

2002-04-13 Thread Peter Dolukhanov
12:47 To: [EMAIL PROTECTED] Subject: Class not found Exception Hi.. I added the jsp:useBean tag in jsp page but it throws the ClassnotFoundException, i added the class file in the win-inf/classes. can anybody tell me exact place for the class file and jsp file. with best regards, sanjay

Re: Class not found Exception

2002-04-13 Thread Piotr Korzybski
Hi, you should check archives for the solution or better download JSR-53 Java Servlet 2.3 and JavaServer Pages 1.2 Specifications from http://www.jcp.org/aboutJava/communityprocess/final/jsr053/ This is necessary reference for everyone dealing with the servlet/JSP technology. And now some

Re: Servlet Exception

2002-03-26 Thread balaji
:51 PM Subject: Servlet Exception I wrote a simple guestbook, which contains 4 Servlets, for the Database access I use mysql. But when one wants to write an entry, an Exception occurs, althought I set the JDBC Driver in the CLASSPATH. Tomcat can´t find a suitable driver. Can someone give me

Servlet Exception

2002-03-25 Thread Othmar Stehlik
I wrote a simple guestbook, which contains 4 Servlets, for the Database access I use mysql. But when one wants to write an entry, an Exception occurs, althought I set the JDBC Driver in the CLASSPATH. Tomcat can´t find a suitable driver. Can someone give me a hint? Regards Othmar -- GMX - Die

Exception initializing application (struts) ??

2002-03-18 Thread sufi malak
Hi, I just started to experiment with struts framework, but I got this error : Apache Tomcat/4.0.1 - HTTP Status 500 - Internal Server Error type Exception report message Internal Server Error description

Re: Exception initializing application (struts) ??

2002-03-18 Thread vijay
(),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: sufi malak [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 4:37 AM Subject: Exception initializing application (struts) ?? Hi, I just started to experiment with struts framework

Re: exception from database

2002-03-12 Thread Paul Balanoiu
that code can catch every known java exeption you can find the list in the JDK javadoc. Paul 12.03.2002 08:22:58, Maurice Munoz [EMAIL PROTECTED] wrote: Does anyone know where I can find a list of possible error this exception can list. catch (Exception e) { e.printStackTrace

exception from database

2002-03-11 Thread Maurice Munoz
Does anyone know where I can find a list of possible error this exception can list. catch (Exception e) { e.printStackTrace (); } ==To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST

download exception

2002-03-05 Thread Jack Xu
Hi, I am using JRun with the snippet below to download binary information from the database. response.setContentType(application/x-msdownload); ServletOutputStream stream = response.getOutputStream(); stream.write(buffer); However, I kept getting an enigmatic exception

ArrayIndexOutOfBounds exception

2002-03-04 Thread Henry S. Hayden
I'm trying to return a recordset via an Oracle 8.1.5 stored procedure. I could swear that the following script used to work, but it now gives an ArrayIndexOutOfBounds exception. This is using tomcat 3.2. (I haven't figured out what's wrong yet, so I haven't mvoed it to Tomcat 4.01.) What has

% if (user.length() == 0) { % Exception ???

2002-02-04 Thread sufi malak
oops! when I use : % if (user.length() == 0) { % I got an exception : Error: 500 Location: /pcinfo/add.jsp Internal Servlet Error: javax.servlet.ServletException at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459

Basic : constructor cannot specify exception in the header

2001-12-28 Thread Atul
I do have a basic doubt... In one book i found a statement like Construcotr cannot specify exception in the header But as i was doing RMI i was used to specify that constructor throws RemoteException. can anyone comment on this. Thanks in advance. Atul

Re: help me with this numberformat exception please

2001-10-19 Thread yilmaz
Hi Jan, - Original Message - From: Jan Areno To: [EMAIL PROTECTED] Sent: Friday, October 19, 2001 2:07 PM Subject: SV: help me with this " numberformat exception" please You have the answer right there... check where it does a Intege

SV: help me with this numberformat exception please

2001-10-19 Thread Jan Areno
specification and reference [mailto:[EMAIL PROTECTED]]Fr yilmazSkickat: den 19 oktober 2001 09:11Till: [EMAIL PROTECTED]mne: Re: help me with this " numberformat exception" please Hi Jan, - Original Message - From: Jan Areno To: [EMAIL

Re: help me with this numberformat exception please

2001-10-19 Thread yilmaz
Subject: Re: help me with this numberformat exception please Really a strange problem, isn't it? For your reference, please try the following: First, try http://localhost:8080/newscont.jsp?no=123; Second, check to ensure that the page who calls newscount.jsp correctly uses

Re: help me with this numberformat exception please

2001-10-19 Thread yilmaz
Hi Jan, thank you very much for your help, it worked !!. as you said i began to cut off my code little by little and compile till i found the cancerous part. since i was having numberformat exception at Integer.parseInt , (which i hadn't in my code) i was supposing that the problem

help me with this numberformat exception please

2001-10-18 Thread yilmaz
hi everybody, i spent my whole afternoon with a stupid numberformat exception. at last i gave up,and decided tobring here. can someone help me with this please, or I will get crazy. i am using tomcat 4 on windows 2000. this jsp file takes a request parameter no, which is an integer

Re: help me with this numberformat exception please

2001-10-18 Thread M Sankar
Try to trim ur number after receiving it in JSP. === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some relevant FAQs on

Re: help me with this numberformat exception please

2001-10-18 Thread horwat
PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 18, 2001 5:57 AM Subject: help me with this numberformat exception please hi everybody, i spent my whole afternoon with a stupid numberformat exception. at last i gave up,and decided to bring here. can someone help me with this please, or I

Re: help me with this numberformat exception please

2001-10-18 Thread David Nguyen
Thursday, October 18, 2001 5:58 AMTo: [EMAIL PROTECTED]Subject: help me with this " numberformat exception" please hi everybody, i spent my whole afternoon with a stupid numberformat exception. at last i gave up,and decided tobring here. can someone help me wit

Re: help me with this numberformat exception please

2001-10-18 Thread yilmaz
Thank you David, Horwat and Sankar for your help, my JSPjust can't see the parameters. i tried calling the jsp without any parameter( http://localhost:8080/newscont.jsp) and i get the same numberformat exception, i think it can't even see that there is a parameterat the end of the url

Re: help me with this numberformat exception please

2001-10-18 Thread Gochwal Meenu
Hi Try with .equals() and initialize i=0 -Original Message- From: yilmaz [SMTP:[EMAIL PROTECTED]] Sent: Thursday, October 18, 2001 6:28 PM To: [EMAIL PROTECTED] Subject: help me with this numberformat exception please hi everybody, i spent my whole afternoon

Exception thrown by EJB find method

2001-10-05 Thread Rodrigo Gevaerd
Some code calls an findByPrimaryKey method of an entity EJB. The entity throws an ObjectNotFoundException. In WebLogic 5.10, the exception the code receives is the thrown ObjectNotFoundException. In Orion 1.5.2 the exception is a RemoteException (com.evermind.server.rmi.OrionRemoteException

RES: Exception thrown by EJB find method

2001-10-05 Thread Rodrigo Gevaerd
Sorry about the offtopic e-mail, I sent it to the wrong e-mail address. === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.

Using an applet with Netscape 4.76 raises a security exception

2001-09-25 Thread Xavier Chalumeau
I tried to use an applet in a JSP, unfortunately, when Netscape 4.76 access the page in which my applet is called, it raises the following exception (dump of the java console): # Applet exception: security.Could not resolve IP for host www.mysite.com. See the trustProxy property

Re: Access Control Exception

2001-09-25 Thread Jeevan
, I am getting the following exception when I try to send an email from my application --- java.security.AccessControlException : access denied (java.net.SocketPermission resolve) This same application that we developed was working fine until some time back but now suddenly it has

Access Control Exception

2001-09-24 Thread SSM Tech
Hello, I am getting the following exception when I try to send an email from my application --- java.security.AccessControlException : access denied (java.net.SocketPermission resolve) This same application that we developed was working fine until some time back but now suddenly it has

Réf. : Access Control Exception

2001-09-24 Thread Xavier Chalumeau
Just check your policy file... Wich should be in that directory [jdk home]/jre/lib/security. Edit it with policytool ( [jdk home]/bin) and check that the acces to the port used to send mail is granted. Xavier. == Ce message et ses pièces

Re: Error: JSP Page threw a non-Exception Throwable????

2001-08-29 Thread Andrew Bruno
-Original Message- From: Haseltine, Celeste Sent: Thu 8/30/2001 2:33 AM To: [EMAIL PROTECTED] Cc: Subject: Re: Error: JSP Page threw a non-Exception Throwable Andrew, Thank you for your code sample. I have not tried to put my LWPPrint.exe into a bat file, since the exe

Error: JSP Page threw a non-Exception Throwable????

2001-08-28 Thread Haseltine, Celeste
Has anyone every experienced the following exception from a JSP: Exception javax.servlet.ServletException: JSP Page threw a non-Exception Throwable. I am trying to access a method in a Java class bean called Print from within my JSP. The Print method resides in a Java class bean (non-visual

Re: Error: JSP Page threw a non-Exception Throwable????

2001-08-28 Thread Andrew Bruno
To: [EMAIL PROTECTED] Subject: Error: JSP Page threw a non-Exception Throwable Has anyone every experienced the following exception from a JSP: Exception javax.servlet.ServletException: JSP Page threw a non-Exception Throwable. I am trying to access a method in a Java class bean called Print

Re: JSP not catching Exception!?

2001-08-20 Thread Brian Slezak
Not sure about the rest, but don't create a new object by throwing a NEW one...just rethrow the one you caught (throw e) Ok, thank you. Ideas from anyone about the Exception not being caught? Can anyone else reproduce this situation? Slezak -Original Message- From

Re: JSP not catching Exception!?

2001-08-19 Thread Kevin Duffey
, August 18, 2001 9:17 PM To: [EMAIL PROTECTED] Subject: JSP not catching Exception!? I have a JSP that is not catching an exception like it's supposed to. I have 'errorPage' set in the page directive, and pointing to the appropriate page. The error page itself _works_, because I can get

not in streaming mode exception

2001-07-13 Thread Kommana, Sridhar
Hi all, randomly we are getting the following exception. Then once refresh the page (browser) it goes away. Any ideas? java.sql.SQLException: Io exception: not in streaming mode Environment: WebSphere Application Server - 3.0.2 JDBC 1.0 Servlets 2.1 JSP 1.0 Thanks in advance, Sridhar

Help: Exception in a jsp file: OutputStream already obtained

2001-06-26 Thread Lorena Carlo
) at com.sun.jsp.runtime.JspServlet.unknownException(JspServlet.java:361) at com.sun.jsp.runtime.JspServlet.service In the servlet, I create a java file, then in a link of the results page I point to a JSP, that uses a bean that can download files from the server, but I don't know why I get the former exception in my jsp page

JSP Page threw a non-Exception Throwable

2001-05-31 Thread erik morton
Hello. I am working with JRun 3.0 on Windows NT with Apache. While trying to `new' an object I get the following run time exception: JSP Page threw a non-Exception Throwable The object that I am creating an instance of has a pretty deep stack and 3 additional classes will be created

Re: How to get JSP exception when using URLConnection to read in JSP

2001-05-28 Thread Kevin Duffey
To: [EMAIL PROTECTED] Subject: Re: How to get JSP exception when using URLConnection to read in JSP You might put a try { } catch(ex) stem.out.println( ex.printStackTrqace() ) } in your code. By the way, when using URLConnection to connect you should keep in mind that the 'server' acts

line number Exception

2001-04-25 Thread Alireza Nahavandi
Hi all, Is there any way to get the line number in which the exception has happened, we don't want to print it, the goal is to get the line number and pass it to an email. Thank you, === To unsubscribe: mailto [EMAIL

Re: line number Exception

2001-04-25 Thread Satyanarayan Divakar
if you are talking about the line number of JSP then the line number mentioned in the exception will always be of the servlet that is generated i,e if it is a runtime exception. the exception thrown will alwya mention the line number. But that can also refer to some of the standard packeges u

Re: line number Exception

2001-04-25 Thread Mark Mascolino
: Satyanarayan Divakar [EMAIL PROTECTED]To: [EMAIL PROTECTED] Sent by: Acc: (bcc: Mark Mascolino-MR/PGI) mailing list about Java ServerSubject: Re: [JSP-INTEREST] line number Exception

Re: How to get JSP exception when using URLConnection to read in JSP

2001-04-22 Thread Janco Tanis
You might put a try { } catch(ex) { System.out.println( ex.printStackTrqace() ) } in your code. By the way, when using URLConnection to connect you should keep in mind that the 'server' acts as a browser and does not have an active session (which might even cause your exception) and definately

How to get JSP exception when using URLConnection to read in JSP

2001-04-21 Thread Kevin Duffey
. The only thing I get is a FileNotFoundException because the JSP output was not generated. Is there any way to get the exception the JSP engine generates when a JSP page is read in in this manner? Thanks. === To unsubscribe: mailto

Re: Catching exception JSP throws when reading it in for XML output..

2001-04-20 Thread Robert Nicholson
And you've verified that link.toString() actually is a a valid URL? What happens when you put that in the browser? You get the null pointer exception? You not using cookies for session then right? ie. you don't want to pass that stuff in as a cookie? -Original Message- From

Re: Catching exception JSP throws when reading it in for XML output..

2001-04-20 Thread Kevin Duffey
Yes, the url is valid..because if I comment out or remove the faulty code in the JSP page, it works fine and no exception is thrown at all..the JSP output is read in, and I apply XSL to it..all that works. Cookies are used only for session id, nothing else. That is why I send the jsessionid

Catching exception JSP throws when reading it in for XML output..

2001-04-19 Thread Kevin Duffey
Hi all, I am having a bit of a problem trying to get the exception thrown in a JSP page that is being read in via code (instead of forwarded or redirected to). I am doing this to use JSP to spit out dynamic XML (instead of HTML). I know there are some taglibs that allow parts of a JSP page

io exception in jsp please help

2001-04-11 Thread Niraj Soni
i have created a jsp file test.jsp when i request my test.jsp file i get this exception Attempt to clear a buffer that's already been flushed at org.apache.jasper.runtime.JspWriterImpl.clear(JspWriterImpl.java:180) at trans._0002ftrans_0002ftransaction_0002ejsptransaction_jsp_194._jspService

Exception

2001-04-08 Thread Franck Samson
I tried this kind of jsp : %@ page errorPage="errorpage.jsp" % jsp:useBean id="myFoo" scope="page" class="foo" type="foo" / jsp:setProperty name="myFoo" property="name" / And when I make a mistake on the web page I've got th

Re: Exception

2001-04-08 Thread OK Prakasan
Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Exception I tried this kind of jsp : %@ page errorPage="errorpage.jsp" % jsp:useBean id="myFoo" scope="page" class="foo" type="foo" / jsp:setP

Re: getParameter throws null pointer exception (added subject)

2001-02-23 Thread Rathna
nd they do not contain this parameter, it throws nullpointer exception. In detail: abc.jsp?id=123, in abc.jsp we can read id by using request.getParameter("id"), but if a request comes from another page, say, xyz.jsp to abc.jsp without any parameter, abc.jsp throws expection Is

A Servlet Exception Has Occurred ??

2001-02-14 Thread sufi malak
Hi, could you please tell me what is the number (14,1), I don't know which attribute has no value. A Servlet Exception Has Occurred org.apache.jasper.compiler.ParseException: C:\tomcat4\bin\..\webapps\ss1\viewRewarded2.jsp(14,1) Attribute has no value Thanks

Re: A Servlet Exception Has Occurred ??

2001-02-14 Thread sandarbh
most probably line 14 of asp has error - Original Message - From: "sufi malak" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 14, 2001 5:31 PM Subject: A Servlet Exception Has Occurred ?? Hi, could you please tell me what is the number (14,1), I don't

Re: A Servlet Exception Has Occurred ??

2001-02-14 Thread Shirley Chen
It means the error is on line 14 character 1, usually I only pay attention to the line number. From: sufi malak [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: A Servlet Exception Has Occurred

Sql Exception

2001-02-13 Thread Marino Vittorio
java.sql.SQLException: ORA-24347: Warning of a NULL column in an aggregate function Any clue? I am using COUNT and SUM as aggregate functions in my query. If I run the query from TOAD works fine, fails from jsp. Any help really appreciated. Thanks, Vittorio

Strange JSP Exception

2001-02-12 Thread Ortiz, William J
Hey folks: In our project we're using VA Java and Webshere as our app. server. Recently I've noticed that while loading one of our JSP's we'vw been getting a strange exception. What makes it even weirder is that it is a very small JSP and after we get the exception and it bombs out we can

Odd Tomcat SQL exception

2001-02-09 Thread Chelmowski, Michael
I have a protected website where the users are required to login. Everytime after I restart Tomcat for whatever reason the first login attempt fails due to a sql exception (no suitable driver found. I'm using an oracle jdbc driver. The driver is there however. The second attempt and all

Exception Unhandled Exceptions Attempt to Flush a buffer already flushed

2001-02-06 Thread peruma gagan
I want to know what i the reason for the Exception "Unhandled Exceptions Attempt to Flush a buffer already flushed" Anybody could explain me this and how to avoid it i will be very thank ful . mail to gagan.p@ sa.net thanks

Re: Exception Unhandled Exceptions Attempt to Flush a buffer already flushed

2001-02-06 Thread Joseph Ottinger
I want to know what i the reason for the Exception "Unhandled Exceptions Attempt to Flush a buffer already flushed" Anybody could explain me this and how to avoid it i will be very thank ful . I've seen it before and worked around such things; normally that's a signal for incorr

Re: [Re: Exception Unhandled Exceptions Attempt to Flush a buffer already flushed]

2001-02-06 Thread peruma gagan
. thanking u Joseph Ottinger [EMAIL PROTECTED] wrote: I want to know what i the reason for the Exception "Unhandled Exceptions Attempt to Flush a buffer already flushed" Anybody could explain me this and how to avoid it i will be very thank ful . I've seen it before and wor

Re: [Re: Exception Unhandled Exceptions Attempt to Flush a buffer already flushed]

2001-02-06 Thread Joseph Ottinger
for the Exception "Unhandled Exceptions Attempt to Flush a buffer already flushed" Anybody could explain me this and how to avoid it i will be very thank ful . I've seen it before and worked around such things; normally that's a signal for incorrect design. Give us the *exact* case

jsp:plugin gets classnotfound exception for applet

2001-02-02 Thread Mark Brown
I am currently stumped by a problem using the plugin. I've searched the web, the user forums and at least two books for any reference to this type of problem with no luck. I have a jsp page which uses the plugin (version 1.2.2_007) which is to load an applet. The applet, in its init() method,

Re: jsp:plugin gets classnotfound exception for applet

2001-02-02 Thread Hans Bergsten
Mark Brown wrote: I am currently stumped by a problem using the plugin. I've searched the web, the user forums and at least two books for any reference to this type of problem with no luck. I have a jsp page which uses the plugin (version 1.2.2_007) which is to load an applet. The

Re: Exception with jsp:forward

2001-01-19 Thread Kiran, venkata
else { String s = request.getParameter("sname"); if (s.equals("silk")) { % jsp:forward page="Failure.html" / % }} % /BODY /HTML -Original Message- From: S Ramakrishnan [SMTP:[EMAIL PROTECTED]] Sent: Friday, January 19

Exception with jsp:forward

2001-01-18 Thread S Ramakrishnan
.equals("silk")) { % jsp:forward page="silksmitha.jsp" / % } % Hence if the input is "silk" the request is forwarded to silksmitha.jsp. The jsp:forward directive issues an exception that java.io.IOException: Error: Attempt to clear a buffer that's already been flushe

Re: Exception with jsp:forward

2001-01-18 Thread Clemente Dani
, 2001 2:53 am Asunto: Exception with jsp:forward Hi - I have a page that posts a form and based on the input forwards to a different page: # bajji.jsp form action="bajji.jsp input type="text" name="sname" value="" /form % String s = request.getP

Exception thrown running XT: Illegal XML character: .

2001-01-11 Thread Panos Konstantinidis
Hello there. I have a jsp file which I am trying to load. But everytime I try this I get the following error message: 500 Internal server error. javax.servlet.ServletException: Exception thrown running XT: Illegal XML character: . org.xml.sax.SAXParseException: Illegal XML character

nullpointer exception

2000-12-20 Thread Varun
hi im trying to delete a cookie using this : % String name1 = request.getParameter("cookieno"); Cookie delCookie = new Cookie(name1,null); delCookie.setMaxAge(0); response.addCookie(delCookie); % where name1 is the name of the cookie, this piece of code runs fine on javawebserver, but when

classnotfound exception

2000-12-18 Thread Singh, Jasbinder
Hi, I am using JavaWebServer2.0 on Solaris with Informix as database. I have kept my servlet classes in the servlets directory under JavaWebServer2.0 and the jsp files in the doc directory. When I try to invoke a servlet/jsp that uses a bean to connect to Informix I get the following error:

classnotfound exception

2000-12-18 Thread Claussen Kai
Status Distribution December 18, 2000 23:17:21 The message regarding "classnotfound exception" sent on December 18, 2000 23:17:21 was sent by Status Recipient TypeTo Native Name [EMAIL PROTECTED] Foreign N

I/O Exception in a JSP as well as a servlet

2000-11-26 Thread kal inuganti
Hi all I am trying to do a simple string match using jsp or servlet. The problem arises when my servlet or jsp is unable to locate the XML file that is parsed and then the string match is done. I get an error message as follows : Error: 500 Location: /examples/servlet/students1 Internal Servlet

  1   2   >