Re: apache + mod_SSL + tomcat

2002-02-05 Thread Dean Hiller
I thought tomcat was on 8443 by default. Are you sure you are pointing at tomcat, or do you have another webserver running on port 443, since that is the default that most webservers use when starting up. tomcat is the exception running on 8443 thanks, Dean -- To unsubscribe:

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
I never saw an answer go by to the below question and was curious what it would be. Does no one now the answer Dean Cressatti, Dominique wrote: Hi, I've got apache + mod_SSL + tomcat working (I don't deserve that much credit as mod_ssl worked right out the box) but I wonder couldn't

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
I think there is a way to solve the problem without shutting down port 8080. Someone please verify this is true. If I use a servlet, my servlet can determine if the connection is from 8443 or 8080 and if it is from 8080 can deny the user access right away. Is this correct? I was kind of

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
In my app, we don't need everything to run over SSL and we are not using apache so we only have ports 80 and 8443. I changed the default 8080 to 80 and should have probably changed 8443 to 443. When SSL is not necessary, we don't use it as it slows down the downloading of the pages. Dean

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
thanks for the xml Anton that is much better than putting the code in the servlet, and is easy to expand to a per servlet/html page basis. thanks, Dean -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL

Re: Init method of servlet called twice?

2002-02-06 Thread Dean Hiller
I remember dealing with problems like that before but they are vague in my head. Your problem is better posted on the java forum I think. I am trying to recall what happened. It was something like I would hit back in my browser and then forward so IE would call init again. I remember

war file not expand on linux

2002-02-12 Thread Dean Hiller
When I put the war file in linux tomcat, it does not expand when I restart tomcat, but it does on windows tomcat. This must be a known issue??? What is wrong. I downloaded http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.1/rpms/ tomcat4-4.0.1-1.noarch.rpm Does anybody know

Re: war file not expand on linux

2002-02-12 Thread Dean Hiller
thanks Jeff, is there any way to install it correctly then so that all files have permission tomcat4. I have half of my files as root and then the ones that are created are as tomcat4. I am trying to make the install easier for my customers. Also, you would think an error would be

maxProcessors

2002-03-19 Thread Dean Hiller
excuse me in my ignorance, but it has been a while and I have forgotten how webservers work. How does a typical webserver work as far as a few threads waiting on accept() for incoming connections? Is the socket created/teardown every time a user goes to a different page? Now that the

many java processes

2002-03-21 Thread Dean Hiller
On linux did anybody ever get a linux patch for fixing the problem of one process per java thread. I read on the sun bug parade they were going to port to a new threading model but we needed to update the linux threading I have seen many e-mails complaining about how tomcat creates s

Re: many java processes

2002-03-21 Thread Dean Hiller
than why do they all have a different process id?? Also, how what would the option be to turn off viewing of threads and just view processes? thanks for your help Jay, Dean D. Jay Newman wrote: On linux did anybody ever get a linux patch for fixing the problem of one process per java

Re: many java processes

2002-03-21 Thread Dean Hiller
thanks all for the help, I have a much better understanding of what is going on. Our customers were complaining about that. I will contact redhat as to see if they are going to fix that or not. thanks, Dean Furmaniak Christophe wrote: pstree -p might help to show what get's started by

tomcat/apache

2002-01-25 Thread Dean Hiller
Is it possible for apache and tomcat to BOTH work off port 80? From what I understand Apache can't do servlets so we need tomcat, but we need apache for file download or something that tomcat doesn't have. Can someone please send me a link to a document where I can help myself on setting up

bug?? linux7.1 tomcat4.0.1

2002-01-25 Thread Dean Hiller
I have redhat linux 7.1 jdk1.3.1_02 tomcat 4.0.1 tomcat works, BUT all images come across corrupted on IE and netscape. Is there a bugfix/work around to fix this problem. Also, why does the jdk have to be installed? Why can't we just use the JRE? One more thing is the DOCS should mention

Re: bug?? linux7.1 tomcat4.0.1

2002-01-25 Thread Dean Hiller
I figured out why the images are messed up. I viewed them directly and they are messed up to begin with for some reason. It appears that the post of the rpm on the website has bad images in it. Dean -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL

Re: PLEASE REMOVE THE VIRUS BEFORE MAILING THE LIST...

2002-01-29 Thread Dean Hiller
I say go to Norton, and ask for a free license. Try to get some free virus scanner software. Alot of companies are up for donating their product. just a thought, dean -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

Advanced Ques. w/SSL

2002-02-02 Thread Dean Hiller
I have done the HOW-TO on SSL and it works fine with stand-alone tomcat. I am preparing an installation of tomcat to be installed on many computers. I CANNOT create a separate certificate for each computer. Am I screwed Our installation program installs tomcat, and then changes

applet works, https doesn't

2002-02-02 Thread Dean Hiller
I have an applet that connects back to the server on 8443 and it works fine even without a certificate. When I go to https://localhost:8443 web page, I get a prompt with an unknown certificate(certificate was created and self signed by me). Why don't I get this prompt with the applet, it is

help with installation

2001-04-25 Thread Dean Hiller
Hello, I installed apache_1.3.19-win32-no_src-r2.msi on Windows 2000. putting the ServerName as localhost, this worked fine and I could open http://localhost web page. I than installed jakarta-tomcat-3.2.1, and this seemed to go fine, and I could see http://localhost:8080 web page. Than I

Re: bug in 4.1.30?? PageContextImpl hides exception cause

2004-10-10 Thread Dean Hiller
never mind. This is fixed in tomcat 5. thanks, dean - Original Message - From: Dean Hiller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 09, 2004 11:07 PM Subject: bug in 4.1.30?? PageContextImpl hides exception cause In 4.1.30, In PageContextImpl, I see this code

bug in 4.1.30?? PageContextImpl hides exception cause

2004-10-09 Thread Dean Hiller
In 4.1.30, In PageContextImpl, I see this code (should I post this on the dev list instead) 525 if (t instanceof IOException) throw (IOException)t; 526 if (t instanceof ServletException) throw (ServletException)t; 527if (t instanceof RuntimeException) throw

Re: SessionListener invoked sometimes and not others

2005-10-08 Thread Dean Hiller
My web app has two servlets. One JSF Faces servlet and another servlet for processing AJAX requests from javascript. I want to know when the app starts and when the app is done. Is the only way to do this is to have a ServletContextListener listening to both those servlets? On the first one, I

Re: SessionListener invoked sometimes and not others

2005-10-08 Thread Dean Hiller
whoops, nevermind. stupid question I found out after poking around. dean Dean Hiller wrote: My web app has two servlets. One JSF Faces servlet and another servlet for processing AJAX requests from javascript. I want to know when the app starts and when the app is done. Is the only way to do