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 Sent: Mon, 17 Nov 2008 2:24 pm Subject: Tomcat 6 getRemoteUser() returns null Hi, We have to retrieve the userid of the remote user when the user l

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 supporte

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 m

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 Sent: Mon, 8 Sep 2008 11:03 pm Subject: stupid tomcat/eclipse que

Re: Suggest A Best Option

2008-09-03 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' Sent: Wed, 3 Sep 2008 5:45 pm Subject: Suggest A Best Option I want to listen at two ports in Tomcat 5.5. One

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 Sent: Wed, 3 Sep 2008 11:50 am Subject: Re: How to make to Apach

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://:8080/webapp1 ... then I think you should check the access logs in Tomcat to see what request in coming from the laptop. To enable access l

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 vulnerabilit

Re: Installing Multiple Instances on Windows Server 2003

2008-09-02 Thread bhooshanpandit
Still it logs 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 Mu

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: Tomcat connector receives 404, IIS logs 200

2008-08-31 Thread bhooshanpandit
Are you sure you don't have something like this in your Tomcat's web.xml: 404 /Failure.jsp 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. http://:/? -Original Message- From: Karim Zaki <[EMAIL PROTECTED]

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

2008-08-31 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 Sent: Mon, 1 Sep 2008 11:26 am Subjec

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 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 I tried changing

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: S

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

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: -Original Message- From: Alex Mestiashvili <[EMAIL PROTECTED]> To: Tomcat Users List Sent: Fri, 29 Aug 2008 3:29 pm Subject: Re: Securing Tom

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 Sent: Fri, 29 Aug 2008 3:52 pm Subject: Re