Re: Tomcat 6 getRemoteUser() returns null

2008-11-17 Thread bhooshanpandit
What is auth type? e.g. Form / Basic??? -Original Message- From: Thangavel Sankaranarayanan [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Mon, 17 Nov 2008 2:24 pm Subject: Tomcat 6 getRemoteUser() returns null Hi, We have to retrieve the userid of the

Re: apache and tomcat version

2008-09-17 Thread bhooshanpandit
I did not understand your question but here are some pointers: - Tomcat is a servlet container which can be used to host your servlet / JSPs etc. - Apache 1.3.27 is an HTTP server that can only host static files like html pages, images etc. However you can integrate Tomcat with Apache using

Re: Browser Limited web application

2008-09-17 Thread bhooshanpandit
For # 1, try this in your filter: if(httpservletrequest.getHeader(User-Agent).indexOf(MSIE 6.0)!= -1) filterchain.doFilter(servletrequest, servletresponse); else httpservletresponse.getWriter().print(This browser version is not

Re: stupid tomcat/eclipse question

2008-09-08 Thread bhooshanpandit
The error clearly indicates that servlet-api.jar is missing from the classpath. It should be located under CATALINA_HOME\lib in case of TC 6. -Original Message- From: Steve Cohen [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Mon, 8 Sep 2008 11:03 pm Subject:

Re: Suggest A Best Option

2008-09-04 Thread bhooshanpandit
If you are talking abt NT Service then I think only one service is sufficient. -Original Message- From: Amit Dixit [EMAIL PROTECTED] To: 'users@tomcat.apache.org' users@tomcat.apache.org Sent: Wed, 3 Sep 2008 5:45 pm Subject: Suggest A Best Option I want to listen at two

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-03 Thread bhooshanpandit
This is surely an issue with Harmony JRE as it does not have the implementation that you are looking for. Switch to Sun JRE and re-verify. -Original Message- From: Suresh Kumar J [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wed, 3 Sep 2008 11:50 am Subject:

Re: Installing Multiple Instances on Windows Server 2003

2008-09-02 Thread bhooshanpandit
Can you post the error that it spits out while starting up? -Original Message- From: Steve G.B. [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Tue, 2 Sep 2008 3:49 pm Subject: Installing Multiple Instances on Windows Server 2003 Hi, I need to install multiple instances

Re: Installing Multiple Instances on Windows Server 2003

2008-09-02 Thread bhooshanpandit
me there's an address already in use. bhooshanpandit wrote: Can you post the error that it spits out while starting up? -Original Message- From: Steve G.B. [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Tue, 2 Sep 2008 3:49 pm Subject: Installing Multiple Instances on Windows

Re: case (in)sensitive mime-mapping

2008-09-02 Thread bhooshanpandit
I don't think it is possible, because in tomcat file names are case sensitive so foo.doc is not same as foo.Doc (if u try to access foo.doc as foo.Doc tomcat will return 404). I think - however not sure - the reason for this case sensitive implemenatation is to get rid of security

Re: Cannot access remote web app

2008-09-02 Thread bhooshanpandit
If the case is: * webapp1 deployed on Desktop * accessible from desktop using http://localhost:8080/webapp1 * not accessible (404) from laptop using http://desktop:8080/webapp1 ... then I think you should check the access logs in Tomcat to see what request in coming from the laptop. To enable

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-01 Thread bhooshanpandit
Then it's most likely an issue with harmony JRE (I think it doesn't provide an SSLContext implementation that you are looking for i.e. SSL). Have you tried Sun JRE?? -Original Message- From: Suresh Kumar J [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Mon, 1

Re: Tomcat connector receives 404, IIS logs 200

2008-09-01 Thread bhooshanpandit
Are you sure you don't have something like this in your Tomcat's web.xml: error-page error-code404/error-code location/Failure.jsp/location /error-page What response do you get in browser when you try to access a resource that does not exist on TC, after by-passing IIS i.e.

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-08-31 Thread bhooshanpandit
What JRE / JDK are you using with Tomcat 6.0.13? -Original Message- From: Suresh Kumar J [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Sat, 30 Aug 2008 10:16 pm Subject: Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-08-30 Thread bhooshanpandit
I tried changing the sslProtocol attribute in the Connector element in conf/server.xml file and when the Tomcat couldn't start. Observed the following error in catalina.out: what value did you specify for sslProtocol. I tried using SSL and it worked. -Original Message- From:

Re: War re-deployment

2008-08-29 Thread bhooshanpandit
I think the best way is to use manager app to deploy the war file in tomcat. See http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html for more details. -Original Message- From: emerson cargnin [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Fri, 29 Aug

Re: Securing Tomcat: HELP

2008-08-29 Thread bhooshanpandit
Actually the context xml is present in CATALINA_HOME\webapps\manager\META-INF dir. You can edit it and add the valve and it should work: Context antiResourceLocking=false privileged=true Valve className=org.apache.catalina.valves.RemoteAddrValve ?allow=127.0.0.1/ /Context -Original

Re: Tomcat JNDI

2008-08-29 Thread bhooshanpandit
I think you will need to configure realm in your server.xml. Plz refer http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html. -Original Message- From: felix l [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Fri, 29 Aug 2008 11:27 pm Subject: Tomcat JNDI First time