no error messages

2000-12-20 Thread Stefan Woithe
Hi tomcat users, I have a JSP with an error in it. If I send a request to a servlet that includes this JSP nothing is returned (the source of the browser page is empty). I also get no error message on the console from which I've started tomcat. How can I see the JSP implementation class

server.xml dtd

2000-12-20 Thread Stefan Woithe
Hi tomcat users, where can I find a dtd and other discribing information for server.xml? Thanks Stefan

compile errors for JSP

2000-12-08 Thread Stefan Woithe
Hi all, The situation is, that I have a JSP which contains an error. If I call an servlet that includes this JSP I don't get the compilation errors in the deliverd HTML Page. There is also no error stack printout on the console from which I've started tomcat. How can I get this error messages

web app. mapping configuration

2000-11-30 Thread Stefan Woithe
Hi all, Using Tomcat 3.2final In $TOMCAT_HOME/conf/server.xml: Context path="/myapp" docBase="../myapp" crossContext="false" debug="0" reloadable="false" trusted="false" /Context In

cookie session tracking doesn't work

2000-11-29 Thread Stefan Woithe
Hi all, Using Tomcat 3.1final and a servlet I wonder why my browser doesn't asks me whether to accept a cookie (what I've selected in the preferences). Analyzing every available information with the first request from the originaly delivered page of my servlet (i.e. the second request to it)

Re: architecture document

2000-11-27 Thread Stefan Woithe
For the latter: http://java.sun.com/products/servlet/download.html#specs Mahati wrote: hai all, any of u pl. help me. Where can i get a document related to architecture of tomcat .Also Can any of u give me the download url of Servlet specification 2.2 thanx. Stefan

Re: Uploading files with JSP

2000-11-21 Thread Stefan Woithe
check out www.jspsmart.com Stefan "Jose Euclides da Silva Junior - DIGR.O" wrote: -BEGIN PGP SIGNED MESSAGE- Hi, i have gotten a headache with it. I need to upload a file with multipart/form-data in JSP environment. Can somebody help me? Best Regards, José Euclides Júnior

Re: writing jsp output to a file

2000-11-14 Thread Stefan Woithe
Joe Laffey wrote: On Mon, 13 Nov 2000, John Ellis wrote: All you need to do is create a virtual browser: URL pageYouWant = new URL(completeRequestString); InputStream in = pageYouWant.openStream(); // burn off the header from in, then write the rest to a file... This will all

Tomcat ServletOutputStream

2000-11-10 Thread Stefan Woithe
Hi, Using Tomcat 3.1final I want to keep track of what is written to the ServletOutputStream of a httpServletResponse object. How to redirect everything thats written to that stream (or at least a copy of it) to, e.g., a ByteArrayOutputStream? Thanks Stefan

Re: Request Parameters Getting Lost

2000-11-10 Thread Stefan Woithe
Hi Jason, I use Tomcat 3.1final and in an JSP the implicit object "request". If you know the name of the parameter use request.getParameter(name). Where is the method "getRequestParameters()" located -- for sure not in javax.servlet.ServletRequest? Regards Stefan "Voegele, Jason" wrote: