Re: RequestDispatcher question

2000-05-30 Thread Neil Harrison
Marco, As far as i am aware, the request dispacher works fine in the 2.1 spec. Neil. At 04:51 PM 5/30/00 +0300, you wrote: >hi all, >i have just one doubt about request dispatcher: > >RequestDispatcher is part of the JSDK 2.1 API or 2.2?? >thanx in advance >regards >marco > >==

help please - [JSP 1.0 Processor] reported an error

2000-05-16 Thread Neil Harrison
Hello. I am having trouble getting a servlet include to work as desired. My doGet method includes: --- RequestDispatcher rd; rd = getServletContext().getRequestDispatcher("/servlet/CalculateDetailsTab"); rd.include(req, res); // FORWARD THE RESULTS TO THE JSP if (forward_to_jsp.equal

Re: JSP Performance?

2000-04-17 Thread Neil Harrison
s). > >- Original Message - >From: "Neil Harrison" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Monday, April 17, 2000 7:59 AM >Subject: JSP Performance? > > >> Hello. >> >> A general point - if I'm returing a lot of re

JSP Performance?

2000-04-17 Thread Neil Harrison
Hello. A general point - if I'm returing a lot of results from a database which need only a small amount of formatting for display, am i better off using plain looped out.print statements instead of JSP - ie will the compile time overhead of JSP each time the page is requested be noticably heavy?

help - predefined session variable

2000-04-17 Thread Neil Harrison
Hi all. I'm trying to get session data back in a scriplet with the following code: <% String test = (String) session.getValue("the_statement"); System.out.println(test) ; %> There session is definately alive, and i know its something to do with type, but cant figure it out. Any help would be g

compatible java version

2000-04-13 Thread Neil Harrison
Hi everyone. I'm going to be using JSP scriplets within Netscape Communicator 4.7 - does anyone know if there are compatibility issues with using JDK v1.1.8_10? I've had problems before when limited to Netscape 4.04 with a later version of the JDK. If anyone has a list of compatible versions/br

method calling from JSP

2000-04-07 Thread Neil Harrison
Hello all. Is it possible to call servlet methods from JSP? I've had limited success using the following in a JSP page: <%@ page import="login.*" %> <% Test test_object; %> When i try to interrogate methods from the new Test class, it throws numerous errors. Any examples of calling me