RE: problem - BindException: JVM_Bind: 80

2004-11-10 Thread Caldarale, Charles R
From: Stephen Charles Huey [mailto:[EMAIL PROTECTED] Subject: problem - BindException: JVM_Bind: 80 I'm seeing a strange error message. We only run Tomcat as a service on Windows 2000, and no IIS or anything else, so I can't see anything else holding onto port 80. On rare occasions,

Re: Apache/Tomcat problem

2004-11-10 Thread Guillaume Alleon
Phillip Qin wrote: jk2_module is correct. Have you link the libapr-0.so.0? What is your LoadModule in httpd.conf? OK, you give me the hint, I had to put 'jk2_module' instead of 'mod_jk2' in myLoadModule. At least httpd starts, I may me back for configuration file problems. Thanks

RE: problem in accessing / instead of /index.jsp

2004-11-10 Thread Didier McGillis
[uri:www.domain.us/*] worker=ajp13:localhost:8009 From: Phillip Qin [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: problem in accessing / instead of /index.jsp Date: Wed, 10 Nov 2004 16:46:30 -0500 How about your mod_jk2

RE: problem in accessing / instead of /index.jsp

2004-11-10 Thread Phillip Qin
I assume that dir is your webapp, add this line [uri:www.domain.us/dir/*] -Original Message- From: Didier McGillis [mailto:[EMAIL PROTECTED] Sent: November 10, 2004 5:08 PM To: [EMAIL PROTECTED] Subject: RE: problem in accessing / instead of /index.jsp [uri:www.domain.us/*]

Auto-deploy not working in Tomcat 5.5.4 when .war file has a META-INF/context.xml?

2004-11-10 Thread Jonathan Eric Miller
I have an application which has a META-INF/context.xml file. I'm attempting to have the file auto-redeploy itself everytime I copy an updated the updated .war file to the webapps directory. This worked fine in Tomcat 5.0.25. In Tomcat 5.5.4, it will deploy itself the first time through, but,

RE: Apache/Tomcat problem

2004-11-10 Thread Phillip Qin
Yup LoadModule jk2_module modules/mod_jk2.so -Original Message- From: Guillaume Alleon [mailto:[EMAIL PROTECTED] Sent: November 10, 2004 5:07 PM To: Tomcat Users List Subject: Re: Apache/Tomcat problem Phillip Qin wrote: jk2_module is correct. Have you link the libapr-0.so.0? What

Multiple Servlet Mapping Problem

2004-11-10 Thread Dana Cordes
Is it possible to have two separate servlets, with separate configurations pointing to the same class? Here's my situation, I have a servlet class that has several init-parameters. I want to have a second instance of that same servlet running with different parameters. But it doesn't seem

RE: Speed of jsp:useBean tags.

2004-11-10 Thread Derek Clarkson
Technically (and I haven't looked at the usebeans source to confirm) using usbeans should be faster. The reason is that unless absolutely necessary, the code should pass around a reference to the bean, not make a copy of it which would be slow. So event if you add this bean to multiple scopes,

RE: Multi-Site Clustering? (hot failover)

2004-11-10 Thread Steve Kirk
OK that's roughly what I thought. But IME this does not switch things over fast enough to count as a hot failover. Maybe I'm not aware of a premium service that's available, but my experience has been that DNS updates don't propagate fast enough for this. There are often customers that cannot

Re: Auto-deploy not working in Tomcat 5.5.4 when .war file has a META-INF/context.xml?

2004-11-10 Thread Remy Maucherat
On Wed, 10 Nov 2004 16:17:17 -0600, Jonathan Eric Miller [EMAIL PROTECTED] wrote: ?xml version=1.0 encoding=UTF-8? Context reloadable=true/ And what does reloadable do according to the documentation ? Is is useful for what you want to do ? No. Instead, it is exclusively used for monitoring

RE: Multiple Servlet Mapping Problem

2004-11-10 Thread Steve Kirk
Interesting. I had a quick browse of the servlet spec and it doesn't seem to say either that you can or cannot do this. However these guys seems to reckon it works on TC: http://archives.java.sun.com/cgi-bin/wa?A2=ind0103L=servlet-interestF=S=; P=50479 If it is possible, your config looks

RE: Are all TC-managed DataSources pooled?

2004-11-10 Thread Steve Kirk
No interest in my original post so I'll rephrase. Is every container-managed DataSource configured in TC (e.g. via server.xml / context.xml) automatically made pooled using commons pooling? Or can ordinary non-pooled connections be created too using this mechanism? -Original Message-

Minor help much appreciated.... Tomcat 5 configuration.

2004-11-10 Thread Dwayne Ghant
Ok I understand how to install tomcat 4.1.24 and how to configure user(s), ant compilation, and jdk 1.4 or j2EE. The thing that confused me about the tomcat 5.0.27 distribution is that I have all these types of containers and not sure which one to use. The containers are listed below in there

Re: Apache/Tomcat problem

2004-11-10 Thread Guillaume Alleon
I 'm back. I did start httpd then tomcat. I did test jsp-examples through 'http://192.168.0.3:8080/jsp-examples' and it works Then I did 'http://192.168.0.3/jsp-examples and I get a : 503 Service Temporarily Unavailable The server is temporarily unable to service your request due to maintenance

Re: Multi-Site Clustering? (hot failover)

2004-11-10 Thread Peter Lin
I would check the service level agreement for DNS load balancing across multiple sites. The big guys like Level3, global crossing, mci have this stuff worked out so that when a DNS server does fail, it does get routed immediately. typically that means you actually don't handle DNS at all in your

jvm invisible to tomcat

2004-11-10 Thread David Russo
Running xp pro (all service packs and mods installed), jdk 1.4.2, JAVA_HOME, CATALINA_HOME both defined (user and system). when trying to install either 5.0.28 (.exe download) or 5.0.29 installation halts with a NO JVM message. JVM is clearly on system at path C:\Sun\Appserver\jdk\bin. I can

Re: Are all TC-managed DataSources pooled?

2004-11-10 Thread Peng Tuck Kwok
For JDBC if it's not pooled in a container, it would be of little use to any application. Specifically the tomcat docs do say that connection pool is provided right here :

RE: Buffering and redirection to the errorPage

2004-11-10 Thread Derek Clarkson
This sounds like something I have encountered. The basic question is that how do you redirect to an error page if youa re writing to the output stream rather than going to another JSP, and have an exception ? Regards, Derek Clarkson Global Applications Lonely Planet Publications ph: (03)

RE: Multi-Site Clustering? (hot failover)

2004-11-10 Thread Steve Kirk
Thanks, interesting. But I think we're talking at crossed purposes. I'm not proposing running my own DNS, and I don't have an existing installation. Just an idea of maybe deploying two indentical TC webservers at different ISPs. What I'm saying is that if I have two identical TC servers, one at

Re: Multi-Site Clustering? (hot failover)

2004-11-10 Thread Filip Hanik - Dev
if you have two TC instances running at two different IP addresses and they are both up, just put in DNS loadbalancing (ie, configure DNS to have both IP addresses in the A records) you don't need to run DNS to do this Filip - Original Message - From: Steve Kirk [EMAIL PROTECTED] To:

Re: jvm invisible to tomcat

2004-11-10 Thread Parsons Technical Services
Just a suggestion, try shutting off the firewall. SP2 enables it by default. Otherwise no ideas. Doug www.parsonstechnical.com - Original Message - From: David Russo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 6:58 PM Subject: jvm invisible to tomcat

Re: Are all TC-managed DataSources pooled?

2004-11-10 Thread Parsons Technical Services
Is every container-managed DataSource configured in TC (e.g. via server.xml / context.xml) automatically made pooled using commons pooling? Yes. No additional code is needed (i.e. TC takes care of the pool.) Or can ordinary non-pooled connections be created too using this mechanism? No, as it

About JDBC Realm

2004-11-10 Thread Etherman
Hi I use JDBC Realm (Tomcat 5) to authenticate users. Users with PRIVATE_ACCESS role can access Private Area (/private/*). But when I try to log in a user having PUBLIC_ACCESS role, Tomcat doesn't redirect the user to error.jsp page but redirect the user to something like this HTTP Status 403

Re: Speed of jsp:useBean tags.

2004-11-10 Thread Steven J. Owens
Adoni, On Wed, Nov 10, 2004 at 02:19:16PM +, Andoni wrote: There are two alternatives with the Mainframe. One is to do a call to a batch file which searches through a directory tree for the files I want and then opens them and returns the data from them. This is the one currently in use

How to secure my webapp under Tomcat?

2004-11-10 Thread Koon Yue Lam
Hi, I have developed a webapp using Tomcat and MySQL Now I DON'T want my client browse my JSPs, servlets and database structure etc .. I want the entire webapp (and database) deployed only by me and not by others. Is there any methods that I can secure my webapp to ensure my client won't

SSL Not working properly

2004-11-10 Thread birendar . waldiya
Hi, I have done everything to implement SSL on tomcat as described in SSL HOW -TO .. i have placed my kestore file in the Tomcat home directory and as metioned in the path in server.xml but i am still getting error please help??? [ERROR] Http11Protocol - -Error initializing endpoint

AW: comparison of Type 4 JDBC drivers

2004-11-10 Thread Michael Sudkamp
And we switched from FreeTDS (which AFAIK is the predecessor of jTDS) to the MS driver years ago because is had more functionality. We use it with heavy statements and result sets and had never any problem with it ;-) Michael -Ursprungliche Nachricht- Von: Tuncay Baskan

<    1   2