Re: TC 5.5.17 / SSL - no response (5.5.15 works fine)

2006-07-07 Thread Danny Lee
BTW: If I disable TCNative/AJP it does the trick, but damn, I wanna use it! - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

TC 5.5.17 / SSL - no response (5.5.15 works fine)

2006-07-07 Thread Danny Lee
Hi guys, I have a strange problem: if I using TC 5.5.17 there is no response from https://localhost:8443/ The same configuration under 5.5.15 works just fine. My server.xml: ___ ___ Console on the startup: ___ INFO: Starting Coyote HTTP/1.1 o

Re: Tomcat as a standalone webserver. Why not?

2006-06-01 Thread Danny Lee
Hi, thanks for the answer! I am "paranoid" AND lazy, so I totally see your point :)) Cheers, Danny Gaƫl Lams wrote: Also, I'm quite "paranoid" and for me the less stuff you installed, the better - I had some problems with the mod_jk (timeouts) - we are not serving static content Regards, Ga

Re: Tomcat as a standalone webserver. Why not?

2006-06-01 Thread Danny Lee
Hi Tim, Thanks for your answer. I see your point about Apache more convenient for hackers, than Tomcat. About outage message. This is of course a problem running Tomcat as standalone, but I have the control over WebServer IP through the firewall, so i just start some "Show we're down message

Re: Tomcat as a standalone webserver. Why not?

2006-06-01 Thread Danny Lee
Hi! Thanks for your answer. I use url-rewrite magic servlet (analog to apache mod_rewrite), so I have the same "on the fly" rewrite functionality (the rewrite-rules.xml is checked every minute or somth). I do all the request/response stuff in Tomcat as long it's relevant and a part of the syst

Tomcat as a standalone webserver. Why not?

2006-06-01 Thread Danny Lee
Hi guys! I wondering if it's really so good to use Tomcat behind "a real" web server like Apache or IIS. In my Tomcat 5 book there are two reasons to do it so: 1. Tomcat is not as secure as common web servers, especially if you want to use CGI and SSI (I don't think I want to) 2. Tomcat

Re: Tomcat Logo on Public Server

2006-06-01 Thread Danny Lee
Of course it's legal, why not? Danny Torben Werner wrote: Hello everybody, i would like to know if it is legal to put the Tomcat logo and a link to tomcat.apache.org on my own homepage. Thanks for your help! Greetz Torben ---

Re: [offtopic] Performance check

2006-04-21 Thread Danny Lee
Thanks for your answer! I see your point. Well in my case this is a "usual" web-shop portal. So the question here maybe is: how many "normal"-behavior shopping users have to be present on my site to generate user 20 clicks per second in the peak-near area, let say 80-90% of the time. I guess 10

[offtopic] Performance check

2006-04-21 Thread Danny Lee
Hi guys! A really sure question, for those of you, who already finished a project. Where can I find some kind of statistics telling me, how many users per day can produce how many simultaneous clicks. I kind of seen such a stuff, but can't find it again. For example, if my application can hand

Re: Tomcat Crashes after 1000 sessions.

2006-03-07 Thread Danny Lee
Have you checked settings like "maxThreads" in your server.xml file? If you have something like 1000 here... you know ;) Cheers, Danny Vikram Godse wrote: actually accessing the website the number of sessions are atleast 800-900. Can anybody tell me where the problem lies? i have been trying

Re: Tomcat IP and Session ID's

2006-02-24 Thread Danny Lee
Well In my situation it just works, if you copy something like http://localhost:8080/MyApp/welcome.do;jsessionid=64B0E7454BB37E8ECE50B8B0323735CD in another browser - nothing happens ;) I don't know why, but I like it. I use cookies for session management, couse I need them in some other plac

Re: Multiple webapps using one war file

2006-02-24 Thread Danny Lee
I have the same situation as you, right now working on admin interface, which actually does a lot of same stuff as a web app (most of the Hibernate stuff / persistance manager classes/ lot of business logic). But after lot of thinking, I supose it's not a good idea to share the stuff, becous

Re: Strange problem with tomcat Please help

2006-02-03 Thread Danny Lee
That obviously means, that the port 8080 is kind of closed in your local network, try to contact your admin, maybe he knows more. Danny - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTEC

Re: Sharing classes between applications

2006-01-27 Thread Danny Lee
Thanks for your help! I analyzed the whole thing again and I see no need to share my classes. Your idea about Ant scripts sounds really good to me (but I'll maybe go maven). Cheers, Danny Caldarale, Charles R wrote: From: news [mailto:[EMAIL PROTECTED] On Behalf Of Danny Lee Subject: Sh

Sharing classes between applications

2006-01-26 Thread Danny Lee
Hi guys, I have a general question about sharing classes between two WebApps in Tomcat. In my case I have a Shop app and an now a new Admin app, which really can use lot of stuff allready implemented in the Shop. Of course copy-paste do work, but I supose copying-pasting after each update ma