CipherSuite

2008-07-09 Thread Stephan Schöffel
Hi there, I tries to make my Tomcat 5.5.25 standalone to only communicate via a certain encryption. For test I altered the server.xml: Connector port=8443 maxHttpHeaderSize=8192 maxThreads=150 minSpareThreads=25 maxSpareThreads=75 enableLookups=false

Re: Cannot create object of class

2007-01-10 Thread Stephan Schöffel
i took the example from the head first ooad book. i now created separate classes for timertask and runnable. works fine. thanks for the help stephan Caldarale, Charles R wrote: From: Stephan Schöffel [mailto:[EMAIL PROTECTED] Subject: Cannot create object of class

Cannot create object of class

2007-01-09 Thread Stephan Schöffel
hi, have a problem with creating a class in the doPost method of a servlet: MyClass mc= new MyClass(); if i do so i get the following error message: HTTP Status 500 - *type* Exception report *message* *description*

Re: Cannot create object of class

2007-01-09 Thread Stephan Schöffel
is correct. A faster way to test if to write a simple jsp and run your thread inside % ... %. You can need configure your system to give tomcat permission to run process or executable files... On 1/9/07, Stephan Schöffel [EMAIL PROTECTED] wrote: hi, have a problem with creating a class

disable war deployment

2007-01-03 Thread Stephan Schöffel
hi, is there a way to disable deployment of war files dropped into the appBase? i dont mean the autoDeploy attribute. i need tomcat to not deploy any war files at all... gtx stephan - To start a new topic, e-mail:

Re: disable war deployment

2007-01-03 Thread Stephan Schöffel
protect work directory from all users but tomcat. En l'instant précis du 01/03/07 11:22, Stephan Schöffel s'exprimait dans toute sa noblesse: hi, is there a way to disable deployment of war files dropped into the appBase? i dont mean the autoDeploy attribute. i need tomcat to not deploy any

Re: disable war deployment

2007-01-03 Thread Stephan Schöffel
and deployXML properties are probably what you need to play with. En l'instant précis du 01/03/07 12:01, Stephan Schöffel s'exprimait dans toute sa noblesse: i do need the write access to the tomcat dirs. but i need tomcat to not start apps i dont want it to. David Delbecq wrote: Is the purpose

Re: disable war deployment

2007-01-03 Thread Stephan Schöffel
the problem is easy: i have to distribute the tomcat with preinstalled apps. i havae to make sure the tomcat only loads apps that i delivered with it. now im trying to delete all ways loading apps. only apps in dir-structures should be loaded (ie with the deployDirectory() method, which i

Re: disable war deployment

2007-01-03 Thread Stephan Schöffel
that is another problem: i dont want to do that, i have to do that. as a requirement by my employer. the idea of not running other apps in my tomcat has juristic backgound... Mikolaj Rydzewski wrote: Stephan Schöffel wrote: the problem is easy: i have to distribute the tomcat

Re: disable war deployment

2007-01-03 Thread Stephan Schöffel
i already altered HostConfig to fit my needs. just wanted to know if there is a way to disable war-deployment. the way like using deployXML to prevent tomcat deploy an app based on context.xml file... David Delbecq wrote: En l'instant précis du 01/03/07 13:05, Stephan Schöffel s'exprimait

Re: disable war deployment

2007-01-03 Thread Stephan Schöffel
i know this solution is anything but not secure. but the main point iin doing this is a juristic question. if someone is able to put a war file into the tomcat installed to your computer he can do probably anything he wants to your computer. but if he is able to do so, this security break is

pass object from host to servlet

2006-12-21 Thread Stephan Schöffel
hi, i have my host make different checks during startup (in HostConfig.start()). i want to display the results in my own manager app which (as HTMLManagerServlet) extends ManagerServlet. is there a way to pass objects from the host to the managerservlet? --stephan

tomcat service issue

2006-12-11 Thread Stephan Schöffel
hi there, i altered tomcat internals to read different files at startup. this works fine when starting up tomcat manually since the startup.bat and the read file are in the bin directory. but when running tomcat as a service, it does not find the file. somehow it uses a different path while

when are the apps loaded?

2006-11-21 Thread Stephan Schöffel
hi, can some point out to me where in the sourcecoude the apps are loaded? --stephan - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Problem with bootstrap.java

2006-11-13 Thread Stephan Schöffel
hi there i'm trying to alter the bootstrap.java class to fit my needs. i got the source of 5.5.20. now i altered the source in eclipse and exported all files that belong to it to bootstrap.jar and copy it to my tomcat/bin dir. unfortunately i get the following error-message while trying to

Re: Problem with bootstrap.java

2006-11-13 Thread Stephan Schöffel
where can i find the manifest of bootstrap.jar? It's looking for LogFactory in main of Bootstrap. Have a look to learn at the manifest of the bootstrap.jar to learn about the dependencies. Regards, Rainer Stephan Schöffel wrote: hi there i'm trying to alter the bootstrap.java class

Re: Problem with bootstrap.java

2006-11-13 Thread Stephan Schöffel
for jar manifest will give you a link like: http://java.sun.com/j2se/1.4.2/docs/guide/jar/jar.html Jars and manifest are a general notation with java, they are not special for tomcat. Stephan Schöffel wrote: where can i find the manifest of bootstrap.jar? It's looking for LogFactory in main

Re: Problem with bootstrap.java

2006-11-13 Thread Stephan Schöffel
is there a way to build boostrap.jar without having to build the whole container? David Delbecq wrote: Log factory is part of the commons loggin facilities. Try to use the tomcat provided build script instead of using eclipse jar builder to create your bootstrap.jar Stephan Schöffel a écrit

Re: Problem with bootstrap.java

2006-11-13 Thread Stephan Schöffel
recipients named above. If you are not the intended recipient, you are hereby notified that you have received this communication in error and that any review, disclosure, dissemination, distribution or copying of it or its contents - Original Message - From: Stephan Schöffel [EMAIL PROTECTED

Re: Tomcat 5.5 service.bat

2006-11-06 Thread Stephan Schöffel
both, catalina.bat and service bat are included in 5.5.20 Derrick Koes wrote: http://tomcat.apache.org/tomcat-5.5-doc/windows-service-howto.html The tomcat 5.5 documentation states that service.bat can be used to create a tomcat service. However, the install appears not to have installed

Re: Multiple paths to one application

2006-11-02 Thread Stephan Schöffel
if you map them to one app in your web.xml you can have different paths link to one app. like: servlet servlet-nameMyServlet/servlet-name servlet-classmy.Servlet/servlet-class /servlet servlet-mapping servlet-nameMyServlet/servlet-name

Re: Multiple paths to one application

2006-11-02 Thread Stephan Schöffel
wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Doesn't this only work if your application replaces the 'ROOT' application? Andrew On 02/11/2006, at 9:56 AM, Stephan Schöffel wrote: if you map them to one app in your web.xml you can have different paths link to one app. like

Re: Apache with Windows 98

2006-10-27 Thread Stephan Schöffel
just had to do the same at university a few days ago. at least tomcat 5.5.17 works well on win98se... and jre 1.5 works fine as well... Eric wrote: i wanna avoid this problem too but i am a student now having my internship to do my Final Year Project. so there is no choice because i got a PC

Re: Apache with Windows 98

2006-10-27 Thread Stephan Schöffel
my team mate has a notebook running on windowsXP so she is running with eclipse. i dont think this com can do so. that's why i wanted to get the minimum requirements to run JCreator with Apache Tomcat to run and see the effect On 10/27/06, Stephan Schöffel [EMAIL PROTECTED] wrote: just had

Re: R: PROBLEMS CONNECTING TO TOMCAT MANAGER

2006-10-27 Thread Stephan Schöffel
ping localhost How can I see if the localhost is locked? - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Hi

2006-10-27 Thread Stephan Schöffel
make sure tomcat is started adeyemi adesina wrote: Hello Users, I got an error message The page cannot be found. when I tried to access the 'Tomcat Manager' page by Clicking Start-All Programs- Apache Tomacat 5.5- 'Tomcat Manager' on Windows XP. I have accessed the 'Tomcat Manager' page

Re: Apache with Windows 98

2006-10-27 Thread Stephan Schöffel
i wont be able to try out until monday... Eric wrote: thanks. do keep me in touch abt the results On 10/27/06, Stephan Schöffel [EMAIL PROTECTED] wrote: i'll give it a try with win98 and 128MB of RAM later. i post the results when im done --Stephan Eric wrote: but my friend tried

Re: Hi

2006-10-27 Thread Stephan Schöffel
another port number to Tomcat 5.5? Thanks. -Original Message- From: Stephan Schöffel [mailto:[EMAIL PROTECTED] Sent: Friday, October 27, 2006 2:04 PM To: Tomcat Users List Subject: Re: Hi make sure tomcat is started adeyemi adesina wrote: Hello Users, I got an error message The page

Re: Apache with Windows 98

2006-10-27 Thread Stephan Schöffel
fortunately i dont have to use it, but i have to make sure my apps run on it. its in the spec... Brandon Goodin wrote: In the name of all that is good, what university subjects its students to using Windows 98!? Brandon On 10/27/06, Stephan Schöffel [EMAIL PROTECTED] wrote: i wont

Tomcat Security Problem

2006-10-26 Thread Stephan Schöffel
hi everbody, i need tomcat to run/deploy only known applications. at startup the container should somehow realize that a certain app is a not authorized one and not load it. maybe you can point out at me where to start. thanks in advance stephan