Catalina.out is getting to big

2006-08-23 Thread Oliver Enders
Hy, I have a problem concerning the size of the catalina.out file. It is getting to big and I´m not shure where to set the verbosity. Logger doesent seem to work ?!? Is there a difference to the 4.x. versions of Tomcat ?? I´m using the following constelation: -SunOS 5.9 -Tomcat 5.5 Where

Authentication problem - request.getRemoteUser() returns null

2006-07-04 Thread Oliver Enders
Hy, I have the following constelation: Windows XP Apache 2.0.58 Tomcat 4.1 Mod_jk 1.2.15 I secured one directory using htpasswd. Calling the URL, the prompt to enter password and username pops up, and after I entered it correctly, the authentication ist succesfull. (also the apache log file

Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Oliver Enders
Hy List, I have a problem concerning submitting form-data by using POST. If I send the form using GET, the content of the form can be read out using: request.getParameter(xyz); If I change to POST, the parameters can not be read out. I´m using am Tomcat 4.1. Any Ideas ? Suggestions ?

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Oliver Enders
to the servlet? On 6/7/06, Oliver Enders [EMAIL PROTECTED] wrote: Hy List, I have a problem concerning submitting form-data by using POST. If I send the form using GET, the content of the form can be read out using: request.getParameter(xyz); If I change to POST, the parameters can

Re: Fw: POST-Data from Form can not be read-out

2006-06-07 Thread Oliver Enders
not be read-out What happens when you remove the enctype attribute from your form? The enctype you specified is for binary uploads. Tomcat doesn't automatically parse the http inputstream for parameters for this content type. HTH, Jon Oliver Enders wrote: Browser is IE6.0, here´s the code