RE: Tomcat + Jboss - porting Pet Store

2000-12-08 Thread Madhu Narasa
From what I gather, the comment - // TCP stacks can throw SocketExceptions when the // client disconnectsso can be ignored. Addresses the case wherein the browser is closing the socket (eg. clicking on stop before completion of the request). I am ok with the server throwing an exception

RE: Tomcat + Jboss - porting Pet Store

2000-12-08 Thread Parayali, Jayesh 1065
Title: RE: Tomcat + Jboss - porting Pet Store this happens even if u just refresh... after completion of the request -Original Message- From: Madhu Narasa [SMTP:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 3:32 PM To: [EMAIL PROTECTED] Subject: RE: Tomcat + Jboss - porting Pet

Page refresh makes session ID reset

2000-12-08 Thread Pierre Métras
Hi, I have a servlet that prints a page that refreshes itself. When I set my browser not to accept cookies, in order to manage session with URL rewriting, I have two different behaviors depending on the refresh method used. If I use javascript to refresh the page, the page refresh itself

tomcat as NT service with Java in Program Files directory

2000-12-08 Thread Willy Lin
Hi: I installed tomcat 3.2 and tried to run it as NT service. For the longest time, I could not get the service to start. After much play around, I found the problem is related to where I put my Java installation. My Java installation is located at "C:\Program Files\java\jdk1.3". I

dtd

2000-12-08 Thread Roberto Leong
is there an available dtd for server.dtd? i´m planning to use embedded catalina, but i want it to read server.xml any approaches? before digging the xmlmapper stuff can someone give me a crash course on it? regards Roberto

Re: Java Pet Store Demo in Tomcat/WebLogic

2000-12-08 Thread Madhu Narasa
Robert, That should be possible, actually apart from the "Connection reset messages" (the message posted earlier) using Tomcat was relatively straightforward. You can look at the following document that gives the steps to port the example to jboss + Tomcat.

Re: ApJServAction replacement in Tomcat?

2000-12-08 Thread Andy
Sorry, ApJservAction appears to be some sort of framework for handlers for different extensioned files. Sorta what the JSP runner is for jsp's. They created their own tag library.. I want to move away from it and go to standard stuff. Especially since they still have just about as many

Stronghold and Tomcat 3.2

2000-12-08 Thread Sanford Langbart
I'm trying to configure Stronghold (commercial SSL version of Apache) to work with Tomcat 3.2 and give it SSL protection. I"ve got it working the Mod_Jserv., but would like to use the new "mod_jk". -- which the notes and HOW-TOs describe as more capable than Mod_Jserv. My system looks like this

RE: Tomcat/mod_jk 3.2 fails on socket connection

2000-12-08 Thread Graeme Wallace
I think the key is the part of the error that says Apache/1.3.12 Server at localhost.com Port 80 localhost.com -Original Message- From: Harring Figueiredo [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 11:22 PM To: [EMAIL PROTECTED] Subject: Tomcat/mod_jk 3.2 fails on

Tomcat/mod_jk 3.2 fails on socket connection

2000-12-08 Thread Harring Figueiredo
Thanks in advance for the help. Plataform: Win NT Jakarta/tomcat ver: 3.2 Apache ver: 1.3.12 When trying to run the examples (http://localhost/examples/jsp/) I get the following errors: On the Browser: Internal Server Error The server encountered an internal error or

RE: Tomcat/mod_jk 3.2 fails on socket connection

2000-12-08 Thread Harring Figueiredo
Actually, that does not have the ".com" My bad. Thanks Harring --- Graeme Wallace [EMAIL PROTECTED] wrote: I think the key is the part of the error that says Apache/1.3.12 Server at localhost.com Port 80 localhost.com -Original Message- From: Harring

Tomcat-IIS Howto doc feedback

2000-12-08 Thread Corey Cole
I've got some feedback on the Tomcat-IIS howto docs. I just installed the Tomcat 3.2 release build on an Alpha-NT machine, and I had some initial difficulties. Perhaps my eyes glazed over, but I missed the instruction "...you should now start Tomcat..." in the "Configuring the ISAPI redirector"

Re: mod_jserv versus mod_jk

2000-12-08 Thread Andy
Oh boy. I remember that problem. HP by default packages a useless C compiler. You'd be best off getting to www.gnu.org and downloading a gnu c compiler for your version of HPUX. Why go to the trouble? Well you're going to need it pretty often. Its definately the easier than getting the right

RE: Tomcat/mod_jk 3.2 fails on socket connection

2000-12-08 Thread Harring Figueiredo
My bad again... Problem solved. I was so into changing from jServ to the new mod_jk that I did not realize I was not running tomcat !!! Hey, what can you expect from a newbie ?! Thanks to all that read and answered HArring --- Harring Figueiredo [EMAIL PROTECTED] wrote:

documentation for jk_nt_service.exe

2000-12-08 Thread Betty Chang
Hi -- where in the apache.org site is the documentation for how to use jk_nt_service.exe? Thanks

Re: documentation for jk_nt_service.exe

2000-12-08 Thread Kazuhiro Sakai
http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/NT-Service-howto.html It's a bit difficult to find the documentation for Tomcat on apache.org... At 22:52 00/12/08 -0800, you wrote: Hi -- where in the apache.org site is the documentation for how to use jk_nt_service.exe? Thanks

Re: Java VJM won't quit?

2000-12-08 Thread Matt White
Jeff; When I set THREADS_FLAG to green I get the following error message: Warning: Green threads support not available I will take a look at the profiler to see what I can see... this happens on ALL JSP scripts, even the examples installed with Tomcat. Servlets work just fine, however. -

Re: AW: Java VJM won't quit?

2000-12-08 Thread Matt White
Ralph; At first I thought this was the case, but the same them happens with the sample JSP scripts that Tomcat includes. (I checked them all, it happens on all of them.) Servlets work just fine, however. - Matt [EMAIL PROTECTED] 12/07/00 02:09PM Two suggestions for a cause:

Error Messages

2000-12-08 Thread Parayali, Jayesh 1065
Title: Error Messages I am running tomcat 3.2 on windows NT workstation I am getting the below messages 2000-12-08 11:08:38 - Ctx( ): IOException in: R( + /00.jpg + null) Connection aborted by peer: socket write error Anybody encountered this problem? Thanks, Jayesh

valueUnbound() event in HttpSessionBindingListener

2000-12-08 Thread G.Nagarajan
Hi everyone, This is regarding tracking of login and logout actions of users. I am recording the session creation time and end time using the HttpSessionBindingListener class. The two methods valueBound() and valueUnbound() are invoked. But the getAtrribute() method in the session object

Tomcat + Jboss - porting Pet Store

2000-12-08 Thread Madhu Narasa
I am running Tomcat 3.2 with Jboss and trying to port the PetStore example (J2EE Sun RI, example). I am almost done except that I see a lot of "Connection reset errors" after every page request. After searching through the archives, I see others have had the same problems in different contexts

<    1   2