Re: sslHandshakeException

2011-01-17 Thread g f
! On Fri, Jan 14, 2011 at 5:12 PM, Pid p...@pidster.com wrote: On 1/14/11 10:31 PM, g f wrote: Hello all, Not sure if this is the proper area to post but here goes. I have a debian os running Apache 2.2.16(debian) along with tomcat 6.0.29. I use mod_jk as well as mod_auth_kerb module

sslHandshakeException

2011-01-14 Thread g f
Hello all, Not sure if this is the proper area to post but here goes. I have a debian os running Apache 2.2.16(debian) along with tomcat 6.0.29. I use mod_jk as well as mod_auth_kerb module for apache. I use common access cards and allow apache kerb module to handle all auth and it works just

Re: what ist $CATALINA_HOME/server ? (debian)

2010-12-08 Thread g f
...@kukulies.orgwrote: Am 07.12.2010 22:19, schrieb g f: Did you aptitude install tomcat6? If so why not modify the init.d script that came with that. If not perhaps you want to try to use the debs. apt-get install tomcat6 G AFAIK there isn't such a thing like a tomcat6 package under the debian

Re: what ist $CATALINA_HOME/server ? (debian)

2010-12-07 Thread g f
Did you aptitude install tomcat6? If so why not modify the init.d script that came with that. If not perhaps you want to try to use the debs. apt-get install tomcat6 G On Tue, Dec 7, 2010 at 1:45 PM, Juha Laiho juha.la...@iki.fi wrote: On 7.12.2010 18:45, Christoph Kukulies wrote: Can be

getting mod_auth_kerb to trust a request from tomcat

2010-06-04 Thread g f
Hello all, This may be better suited to Apache users group but I will try here in case. I am running tomcat 6.0.24 , jre 1.6.0_16, Apache/2.2.15 (Debian) , mod_auth_kerb/5.4 , mod_jk/1.2.28 mod_python/3.3.1 all installed via apt on Debian Lenny. I have successfully been able to get all of this

mod_jk Apache2--Tomcat6

2010-04-29 Thread g f
Hello all, I am not entirely sure this is the correct list to post mod_jk questions however the link from mod_jk did point to the the tomcat users list. I am running a debian lenny box with: Apache2 Version: 2.2.9-10+lenny2 Tomcat6 Version: 6.0.24-4 mod_jkVersion: 1:1.2.28-2 I am able to

Re: mod_jk Apache2--Tomcat6

2010-04-29 Thread g f
Well thats embarrassing. Thanks alot! On Thu, Apr 29, 2010 at 10:28 AM, Paolo Santarsiero paolo.santarsi...@gmail.com wrote: JkUnMount /*.html Where is the worker or load balancer? Should be something like this: JkUnMount /*.html worker1 On 29 April 2010 17:23, g f gfo...@gmail.com wrote

Re: ArrayIndexOutOfBoundsException

2009-11-24 Thread g f
Perhaps change your code from while((bytesRead = in.read(buf)) 0) { while((bytesRead = in.read(buf)) != -1) { From api: Reads the next byte of data from the input stream. The value byte is returned as an int in the range 0 to 255. If no byte is available because the end of the stream has been

Grant access to files out of webapp context using SecurityManager

2009-11-19 Thread g f
Hello all, I have a webapp in the following location: /apps/tomcat/webapps/mywebapp I have files located at: /files/images They are on different partitions. I need to grant mywebapp read,write,execute permissions to these images. I am attempting to configure SecurityManager to allow this but

Re: Grant access to files out of webapp context using SecurityManager

2009-11-19 Thread g f
/2009 18:13, g f wrote: Hello all, I have a webapp in the following location: /apps/tomcat/webapps/mywebapp I have files located at: /files/images They are on different partitions. I need to grant mywebapp read,write,execute permissions to these images. I am attempting to configure

upgrade from 6.0.10 to 6.0.20 and retain conf and webapps.

2009-08-24 Thread g f
Hello all, I searched the tc website and google and havent had much luck finding info on minor upgrades...most posts pertain to major (5.5 to 6.0 etc.) I was wondering if it was possible to just overwrite the bin and the lib directory in order to accomplish this upgrade? Thanks in advance!

Re: tomcat 6, ubuntu, mysql connection

2009-01-27 Thread g f
Did you verify that the user that you are connecting to mysql with has host based permissions on mysql(In other words, does the user have rights to the database from your webserver as the webserver is the host in this case)? On Tue, Jan 27, 2009 at 9:09 AM, Glen Peterson

Re: Tomcat Beginner - Step 2!

2009-01-16 Thread g f
Your public address will be your wan ip address(ienot 192.168.0.101). Look in your dlink router config webpage under WAN and that will be your public ip address. Change your port forwarding(virtual server) to forward port 80 (on the outside) to port 8080 on the inside. If you kept tomcat

webapp in tomcat context cannot access a python proxy residing in apache

2009-01-14 Thread g f
Hello all, not sure if this should be asked here or in the apache list so I will try here first. I have an application running completely inside of tomcat 6...lets call it webappTomcat which runs on port 8084. A coworker developed an application that runs mainly on apache(html and javascript)

Re: IIS 6 + Tomcat 6.0 + ISAPI + SSL

2009-01-14 Thread g f
You did not mention if ssl worked with tomcat in the standalone mode(without ISAPI). can you access https://localhost:8084/yourwebapp? If not: Perhaps you need to uncomment ssl support in server.xml file Uncomment the second block and restart. !-- Define a SSL HTTP/1.1 Connector on port 8443