Re: InputBuffer and Posting Data

2006-03-28 Thread Lothar Krenzien
Look for the value of "maxHttpHeaderSize" in your server.xml in the CATALINA_HOME/conf diretory. I had a similar problem. > -Ursprüngliche Nachricht- > Von: "Tomcat Users List" > Gesendet: 28.03.06 16:24:20 > An: Tomcat Users List > Betreff: Re: InputBuffer and Posting Data > What i

Re: RES: question regarding alias for context

2006-03-23 Thread Lothar Krenzien
Please be aware of the difference between *redirect* and *forward* ( http://www.javapractices.com/Topic181.cjp ). With the java UrlRewriteFilter package ( http://tuckey.org/urlrewrite/ ) you can only do a *redirect* between different contexts. To do a transparently forwarding you need a web ser

Re: error calling servlet (in Tomcat)

2006-03-23 Thread Lothar Krenzien
That's right. I also didn'nt realised it . I've copied it from another servlet which indeed has a custon superclass. Thanks for all the help ;) > -Ursprüngliche Nachricht- > Von: "Tomcat Users List" > Gesendet: 23.03.06 13:21:08 > An: "Tomcat Users List" > Betreff: Re: error calling se

Re: error calling servlet (in Tomcat)

2006-03-23 Thread Lothar Krenzien
tried it). > -Ursprüngliche Nachricht- > Von: "Tomcat Users List" > Gesendet: 23.03.06 11:58:13 > An: "Tomcat Users List" > Betreff: Re: error calling servlet (in Tomcat) > Lothar Krenzien wrote: > > Hi, > > > > I've develo

error calling servlet (in Tomcat)

2006-03-23 Thread Lothar Krenzien
Hi, I've developed several servlets (with Tomcat) in the past without any problems. But now I've a servlet which makes me confusing. When I call the servlet url from a browser I get only error 405 ("HTTP method GET is not supported by this URL"). Because I don't have any idea about the reason

Re: Tomcat 5.0.28 Clustering and Load Balancing

2006-03-16 Thread Lothar Krenzien
On http://www.onjava.com you can find some good articles about Tomcat Clustering. Try a search for 'Tomcat 5 Cluster'. But I'm not sure if they are for Tomcat 5.0.xx. Lothar > -Ursprüngliche Nachricht- > Von: "Tomcat Users List" > Gesendet: 16.03.06 21:52:10 > An: Tomcat Users List

Re: redirect with tomcat

2006-03-16 Thread Lothar Krenzien
ly one hostname. Thanks, Lothar > -Ursprüngliche Nachricht- > Von: "Tomcat Users List" > Gesendet: 16.03.06 19:36:46 > An: Tomcat Users List > Betreff: Re: redirect with tomcat > We've used UrlRewriteFilter with good success so far: > http://tuckey.or

redirect with tomcat

2006-03-16 Thread Lothar Krenzien
Hi there, I'm using tomcat 5.5 and want to redirect some requests to another URL. For example the URL localhost:80/siteA should be forwarded to localhost:8080/siteB. Of course on Port 8080 listen another web-server. Does anybody know a good explanation how to do that ? I've tried with filters

Re: webapp under different URLs with different JSP but same java classes

2006-02-10 Thread Lothar Krenzien
"Tomcat Users List" schrieb am 10.02.06 15:14:51: > > Duplicate your classes, one copy in each webapp Of course I did it. But I hoped there is a better way ? > > Lothar Krenzien a écrit : > > >Hi, > > > >I'm not sure whether it is poss

webapp under different URLs with different JSP but same java classes

2006-02-10 Thread Lothar Krenzien
Hi, I'm not sure whether it is possible or not: I have a webapp which I want to access under different URL's with different JSP's but the same java classes. I know that I can define the context URL in the context.xml But how to define which jsp's to use ? Example : In myapp I may have

RE: File "/jsp/struts-html" not found

2006-02-01 Thread Lothar Krenzien
ile is not in place.Can > you send your web.xml and struts-conf.xml. > > Thanks, > > Dronesh > > -Original Message- > From: Lothar Krenzien [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 31, 2006 1:42 PM > To: users@tomcat.apache.org > Subject: File &qu

Re: Cannot create JDBC driver of class '' for connect URL 'null'

2006-01-31 Thread Lothar Krenzien
urces-howto.html > section `JDBC Data Sources' > > Have a nice time > > PETR > > > On 1/31/06, Lothar Krenzien <[EMAIL PROTECTED]> wrote: > > Hi, > > > > after switching from Tomcat 5.5.9 to 5.5.15 I get the following error : > > > > 200

File "/jsp/struts-html" not found

2006-01-31 Thread Lothar Krenzien
Hi, I'm having a struts 1.1 application on tomcat 5.5.9. Because of some mysterious problems (see my previous post "can't load any JSP anymore" in this list) I switched to 5.5.15 but now have an another problem. In the browser I get the following error: org.apache.jasper.JasperException: File

Cannot create JDBC driver of class '' for connect URL 'null'

2006-01-31 Thread Lothar Krenzien
Hi, after switching from Tomcat 5.5.9 to 5.5.15 I get the following error : 2006-01-31 16:43:38,130 [INFO ] QueryLogger.*** error. org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null' at org.apache.tomcat.dbcp.dbcp.BasicDataSource

Re: can't load any JSP anymore

2006-01-31 Thread Lothar Krenzien
I solved it partially by adding ant.jar to the classpath. But now I get the following errors: 2006-01-31 13:12:26,220 [ERROR] [jsp].Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: Unable to compile class for JSP Generated servlet error: Class must implement

can't load any JSP anymore

2006-01-31 Thread Lothar Krenzien
Hi, I'm having a struts application within Tomcat 5.5.9 and Java 5 but just become a (for me) mysterious problem. After changing a simple JSP (just removed a row in a table) I got lots of problems. Now I can't load any JSP anymore. It means that I even can't start my application. There are real

users@tomcat.apache.org

2006-01-31 Thread Lothar Krenzien
Hi, I'm having a struts application within Tomcat 5.5.9 and Java 5 but just become a (for me) mysterious problem. After changing a simple JSP (just removed a row in a table) I got lots of problems. Now I can't load any JSP anymore. It means that I even can't start my application. There are real

problems using tomcat ant tasks

2005-11-09 Thread Lothar Krenzien
Hi there, in opposite to my previous post I want to deploy a war file to remote server running Tomcat using the Tomcat Ant-task (provided by catalina-ant.jar). But even I get 'OK' back from the server - the newly added files are not copied in the webapp dir. Do I make something wrong ? If poss

users@tomcat.apache.org

2005-11-09 Thread Lothar Krenzien
Hi there, in opposite to my previous post I want to deploy a war file to remote server running Tomcat using the Tomcat Ant-task (provided by catalina-ant.jar). But even I get 'OK' back from the server - the newly added files are not copied in the webapp dir. Do I make something wrong ? If p

RE: deploying war file (UNCLASSIFIED)

2005-11-08 Thread Lothar Krenzien
the past all files are > copied in the appBase dir of Tomcat. The file webapp.war is located in the > appBase dir of Tomcat and has the same name as the context path for the > project (webapp). > So what I'm doing wrong ? > > autoDeploy and unpackWARs are set to true. >

deploying war file

2005-11-08 Thread Lothar Krenzien
set to true. Thank, Lothar Krenzien P.S. I notified that in the 'WEB-INF' dir of the war file all files exists twice or even 3-times. It seems that the war file was created wrong by Ant (maybe an error in my scri

RE: ClassLoaderLogManager not found

2005-10-31 Thread Lothar Krenzien
Hi Steve, thanks for your answer. I'm running tomcat on Windows XP. And yes I set the env variables and run "service install". But because of some other problems I tried to stop the service and start the server with the startup-script. I just found another link with google which says that I h

users@tomcat.apache.org

2005-10-31 Thread Lothar Krenzien
Hi there, I'm using Tomcat 5.5 and want to copy a working installation from server A to server B, so that on both servers I have a running Tomcat service. The installation on server A is running without any problems, but on server B I get always the erros message 'the file "-Djava.util.loggi