RE: HANDLER THREAD PROBLEM

2001-09-06 Thread Martin van den Bemt
Your are doing a request to the port that talks to apache and tomcat talk to.. That is not a protocol like http, it is the ajp protocol.. You have to do a request to http://host or http://host:8080. Mvgr, Martin -Original Message- From: Juan Andres Sanin Pineda [mailto:[EMAIL

Re: HANDLER THREAD PROBLEM: java.net.SocketException Invalid argument

2001-02-15 Thread Michael Mikolajczyk
I finally figured it out. The problem is with the version of java I was using: (Kaffe Virtual MachineCopyright (c) 1996-2000Transvirtual Technologies, Inc. All rights reservedEngine: Just-in-time v3 Version: 1.0.6 Java Version: 1.1) After pointing Tomcat to: {java version "1.3.0"Java(TM) 2

Re: Handler Thread Problem

2001-02-03 Thread Chris Janicki
I think port 8007 is used for connection to Apache. Are you trying to use it as a regular web service port? Original Message dated 2/3/01, 6:58:01 PM Author: Nael Mohammad [EMAIL PROTECTED] Re: Handler Thread Problem: Community, I'm getting the following error message when a request

RE: Handler Thread Problem

2001-02-03 Thread Nael Mohammad
To: [EMAIL PROTECTED] Subject: Re: Handler Thread Problem I think port 8007 is used for connection to Apache. Are you trying to use it as a regular web service port? Original Message dated 2/3/01, 6:58:01 PM Author: Nael Mohammad [EMAIL PROTECTED] Re: Handler Thread Problem: Community, I'm

RE: Handler Thread Problem

2001-02-03 Thread John Golubenko
Yes, it has nothing to do with HTTP requests. (8080 default.) Original Message On 2/3/01, 6:42:47 PM, Nael Mohammad [EMAIL PROTECTED] wrote regarding RE: Handler Thread Problem: You're right, I figured that out, that Apache makes the request for 8007 to tomcat. So tomcat is listening

RE: Handler Thread Problem : java.lang.NullPointerException

2000-12-27 Thread Adam Le
How about trying this for your index.jsp: --- Begin Code -- !-- Put your imports here -- %@ page import="java.io.*,java.util.* % html body % response.sendRedirect ("http://212.100.172.240/park/index.jsp"); % /body /html !-- End Code -- Just a thought Adam -Original

RE: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-28 Thread Ritwick Dhar
- From: Ranko Bijelonic [mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 10:08 AM To: [EMAIL PROTECTED] Subject: RE: HANDLER THREAD PROBLEM: Stream closed prematurely i still think its not the platform. My stuff worked fine until I used a version of Apache with ssl, then I got the same

RE: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-27 Thread Ranko Bijelonic
[mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 10:42 AM To: '[EMAIL PROTECTED]' Subject: RE: HANDLER THREAD PROBLEM: Stream closed prematurely Unfortunately, in my case, it doesn't work. The problem is compounded in my case because my platform is AIX4.3.3 + IBM Apache 1.3.6.2 + Tomcat 3.1

RE: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-24 Thread Roytman, Alex
If you are running Tomcat standalone I would suggest to try it with Apache web server. We had some problems with tomcat built in web server - POST input stream would only give you first 1300 bytes of POST data and some other problems I do not remember. I believe apache inherited it from Sun

RE: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-24 Thread Ritwick Dhar
Alex, Unfortunately, I'm already running it with Apache. (IBM HTTP Server based on Apache with SSL). Thanks for the reply. Rit -Original Message- From: Roytman, Alex [mailto:[EMAIL PROTECTED]] Sent: Friday, November 24, 2000 10:53 AM To: '[EMAIL PROTECTED]' Subject: RE: HANDLER THREAD

Re: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-24 Thread Kurt Bernhard Pruenner
Ritwick Dhar wrote: HANDLER THREAD PROBLEM: java.io.IOException: Stream closed prematurely java.io.IOException: Stream closed prematurely at java.lang.Throwable.init(Compiled Code) at java.lang.Exception.init(Compiled Code) at java.io.IOException.init(Compiled Code)

RE: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-24 Thread Ritwick Dhar
, but that didn't do much good. Maybe I'll try some other things on those lines now. Thanks Rit -Original Message- From: William Brogden [mailto:[EMAIL PROTECTED]] Sent: Friday, November 24, 2000 11:27 AM To: [EMAIL PROTECTED] Subject: Re: HANDLER THREAD PROBLEM: Stream closed prematurely Does your

RE: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-24 Thread Ritwick Dhar
Message- From: William Brogden [mailto:[EMAIL PROTECTED]] Sent: Friday, November 24, 2000 11:27 AM To: [EMAIL PROTECTED] Subject: Re: HANDLER THREAD PROBLEM: Stream closed prematurely Does your client close the stream that writes the request or just flush it? I seem to recall having a problem