RE: I don´t understand the objective of this open list !

2002-12-09 Thread Michael Weissenbacher
if you don't get answers i suggest you to take a look at this great text http://www.tuxedo.org/~esr/faqs/smart-questions.html it's How To Ask Questions The Smart Way by Eric Steven Raymond and i think it does apply here regards mw -Original Message- From: [EMAIL PROTECTED]

AW: NIGHTMARE

2002-04-08 Thread Michael Weissenbacher
maybe it would be more constructive if you told us what went wrong for you instead of posting such a crap -Ursprüngliche Nachricht- Von: Árni Arent [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 08. April 2002 15:23 An: [EMAIL PROTECTED] Betreff: NIGHTMARE Your software, Tomcat, is a

AW: Tomcat and JDK 1.1.8

2002-03-15 Thread Michael Weissenbacher
sorry, afaik, tomcat is only compatible with jdk=1.2 i think you can use jserv with gnujsp for jsp's, but i have never tried that michael -Ursprüngliche Nachricht- Von: Mario Alberto Haza Treviño [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 15. März 2002 19:07 An: [EMAIL PROTECTED]

AW: apache or tomcat

2002-02-05 Thread Michael Weissenbacher
just to add my experience: after much time spent on unsuccessful installation/compilation of mod_webapp for tomcat 4, i've moved to using the mod_jk connector from tomcat 3.3 for tomcat 4 and it works great with apache. maybe mod_webapp will become better but at the moment it is unusable for me

tomcat startup script (AW: Auto starting Tomcat during boot?)

2002-01-10 Thread Michael Weissenbacher
i've already mailed this before. this is a tomcat startup/shutdown/control script. place it in /etc/init.d and place a symbolic link S99tomcat to it under /etc/inid.d/rc3.d (and probably rc5.d if you start graphical) for startup and a symbolic link K99tomcat for stopping tomcat on shutdown. don't

AW: tomcat startup script (AW: Auto starting Tomcat during boot?)

2002-01-10 Thread Michael Weissenbacher
add a symbolic link in the rc3.d point to Catalina.sh, startup.sh or shutdown.sh. I tried linking those files but it still doesn't work after I restarted the server? But I will give your script a try. Thanks Nelson -Original Message- From: Michael Weissenbacher [mailto:[EMAIL PROTECTED

RE: JNDIRealm and Interbase - step 3

2001-12-19 Thread Michael Weissenbacher
) at org.apache.catalina.startup.Catalina.process(Catalina.java:179) at java.lang.reflect.Method.invoke(Native Method) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:218) Any ideas ? Thanks Diego - Original Message - From: Michael Weissenbacher [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL

RE: JNDIRealm and Interbase

2001-12-18 Thread Michael Weissenbacher
beware of interclient 2.0, it has some serious memory leak. i advice you to you firebird 1.0.0 rc1 instead of interbase6 open source, it has fixed many bugs of the original borland open source version. look at http://firebird.sourceforge.net/ where you can also get interclient 2.01 without the

little tomcat startup script

2001-12-17 Thread Michael Weissenbacher
after playing around with startup scripts on my suse linux 7.2 box i finally got tomcat to start as an linux service. i thought somebody may be interested in the script that's why i post it here. it can easily be placed under /etc/init.d, then create symlinks to it in rc3.d and rc5.d like

RE: running two tomcat servers

2001-11-29 Thread Michael Weissenbacher
i don't know why this info is not on the tomcat4 documentation site, but here is info how to do tc4mod_jkajp13 http://jakarta.apache.org/~hgomez/ajp13-tc4.0/ regards michael weissenbacher Net4You, a VIA NET.WORKS Company == Michael Weissenbacher

RE: Tomcat 3.2.3 and Linux JDK 1.3.1

2001-11-19 Thread Michael Weissenbacher
i've stopped using the sun jdk on linux and i am using the ibm jdk now because it has far better performance and i didn't expience any lockup problems with it. michael -Original Message- From: David Wall [mailto:[EMAIL PROTECTED]] Sent: Monday, November 19, 2001 10:59 PM To: Tomcat

RE: Tomcat 3.2.3 and Linux JDK 1.3.1

2001-11-19 Thread Michael Weissenbacher
Users List Subject: RE: Tomcat 3.2.3 and Linux JDK 1.3.1 try ulimit -s 2048 -Original Message- From: Michael Weissenbacher [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] Sent: Tuesday, November 20, 2001 2:00 PM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat 3.2.3 and Linux JDK

RE: RE: Tomcat 3.2.3 and Linux JDK 1.3.1

2001-11-19 Thread Michael Weissenbacher
To: Tomcat Users List Subject: RE: Tomcat 3.2.3 and Linux JDK 1.3.1 try ulimit -s 2048 -Original Message- From: Michael Weissenbacher [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] Sent: Tuesday, November 20, 2001 2:00 PM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat 3.2.3

RE: Handling apostrophes

2001-10-22 Thread Michael Weissenbacher
well this piece of code will work, but you should implement it with StringBuffer, not with String as String's are immutable and with every += you are allocating a new String and copying everything what can become a great overhead. michael -Original Message- From: Chandramouli Nagarajan

RE: Handling apostrophes

2001-10-22 Thread Michael Weissenbacher
call the following method like this String_Util.replace(value,',''); public static String replace(String oldString, String toReplace, String replaceWith) { if(toReplace==null || toReplace.equals() || oldString==null || oldString.equals() || replaceWith==null) return oldString;

RE: SV: How to start/stop tomcat from a remote machine???

2001-09-25 Thread Michael Weissenbacher
you can use srvmgr.exe taken from any nt server's system32 dir to remotely stop/start services. just click computer-select domain and enter \\machinename. then computer-services. this file is also included in the windows nt resource kit. i'm sure you can also find it somewhere on the net to

RE: mod_jk.so differences

2001-08-29 Thread Michael Weissenbacher
How many times I have answered to that ? eapi is for apache compiled with mod_ssl noeapi for std apache so why not name mod_jk-eapi.so - mod_jk-ssl.so? michael

RE: mod_jk.so differences

2001-08-29 Thread Michael Weissenbacher
+ (no EAPI) + mod_jk-noeapi.so In other words, it is not if mod_ssl installed with Apache. It is if Apache was patched to use EAPI. So the mod_jk-eapi.so is a correct name, and mod_jk-ssl.so is not, since mod_jk variant does not depend on ssl presence in Apache. Jan On Wed, 29 Aug 2001, Michael

RE: internal server error

2001-08-28 Thread Michael Weissenbacher
question 1: this is perfectly normal behavior. as long as tomcat isn't up (the ajp connector isn't started) you'll get an internal server error. if you don't hit reload all the time and simply wait 30 seconds everything will work ok. however, there is a way to change the error page by setting the

RE: Tomcat Performance

2001-08-24 Thread Michael Weissenbacher
i had the best results with the sun jdk 1.3.1 on windows and with ibm jdk 1.3.0 for linux. on some linux machines the sun jdk wouldn't work at all... -Original Message- From: Hari [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 2:20 PM To: [EMAIL PROTECTED] Subject: Tomcat

RE: JDBC Driver for sql server 2000

2001-08-23 Thread Michael Weissenbacher
M$ SQLServer costs lots of $$$ so why bother with a free JDBC driver ;) -Original Message- From: Stéphane De Jonghe [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 23, 2001 6:35 PM To: [EMAIL PROTECTED] Subject: RE: JDBC Driver for sql server 2000 Hi, But is there any free (or open

RE: JDBC Driver for sql server 2000

2001-08-23 Thread Michael Weissenbacher
how it goes with MS :=( Stef -Original Message- From: Michael Weissenbacher [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 23, 2001 6:40 PM To: '[EMAIL PROTECTED]' Subject: RE: JDBC Driver for sql server 2000 M$ SQLServer costs lots of $$$ so why bother with a free JDBC driver ;)

RE: please help!!! basic problem with tomcat 3.2.3 / win98

2001-08-22 Thread Michael Weissenbacher
if you don't have a network interface card or modem installed, you must install the ms loopback adapter, otherwise the network will not function properly. -Original Message- From: James, Stuart [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 2:04 PM To: '[EMAIL PROTECTED]'

RE: Re[2]: Re[2]: Mozilla and Tomcat

2001-08-22 Thread Michael Weissenbacher
Yeah, IE has a wicked sticky cache. interestigly i never had problems with the cache of ie. but i had problems with mozilla and ns6, until i inserted a no-cache meta tag. michael

RE: Graphics with jsp

2001-08-22 Thread Michael Weissenbacher
unfortunately this doesn't work on linux unless you have an running X server or Xvfb, a virtual X server. you have to set the display variable to access the X server in this way: DISPLAY=localhost:0 export DISPLAY i've heared that this problem will be removed in jdk1.4 michael -Original

RE: Log problem

2001-08-20 Thread Michael Weissenbacher
jakarta log4j ist definately worth a try, it solved many of my logging problems... but to answer your questions: usually System.out and System.err print to the console that started tomcat unless you 'ed into a file. the log() method of a servlet goes into servlet.log in tomcat's logs subdir.

RE: Tomcat 3.2 or 4.0 standalone, which is better to use now?

2001-08-07 Thread Michael Weissenbacher
if it's for stability then coose a apache/tomcat combination. it's definately more stable and also faster than using tomcat standalone. i know this wasn't your question, but i definately didn't have good experiences with tomcat standalone. i think it's main purpose is for testing. -Original

RE: Installing Tomcat on HPUX (Problem #1)

2001-08-01 Thread Michael Weissenbacher
because tomcat is written in java, you don't have to recompile it. so why are you bothering with that? just start it with bin/startup.sh! -Original Message- From: mysql fan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 10:25 AM To: [EMAIL PROTECTED] Subject: Installing

displaying friendly error page

2001-07-31 Thread Michael Weissenbacher
with mod_jk, ajp12, apache 1.3.14 on a suse linux 7.1 box thank you for any suggestions michael weissenbacher

just a test

2001-07-31 Thread Michael Weissenbacher
no offence, i just wanted to test what happens if i send a html message

RE: displaying friendly error page

2001-07-31 Thread Michael Weissenbacher
thank you very much, it works just like i wanted it to! -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 3:34 PM To: [EMAIL PROTECTED] Subject: Re: displaying friendly error page yep - you would do this in apache. what is happening

RE: HTML in Messages and politeness (Was: Re: jdbc odbc bridgeon linux)

2001-07-30 Thread Michael Weissenbacher
[X] +1 - Plain Text only. Strip HTML on the mailing list. [ ] 0 - I don't give a damn shit. [ ] -1 - You mad? I love HTML in messages and want to keep using it. html mail should be filtered! a footer with links to details about subscribing/unsubscribing and the faq should be attached to

RE: Weird thread/security problem

2001-07-26 Thread Michael Weissenbacher
that is a simple problem of understanding: there is only one servlet object that is used by multiple threads. by having this in mind, your object variables are also shared, as would be static variables... -Original Message- From: Sam Joseph [mailto:[EMAIL PROTECTED]] Sent: Thursday, July

RE: tomcat.sh stop = Connection refused?

2001-07-26 Thread Michael Weissenbacher
maybe the ajp12 connector is disabled, because tomcat needs it to be shutdown... -Original Message- From: Richard Draucker [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 3:52 PM To: Pete Cc: Tomcat List Subject: Re: tomcat.sh stop = Connection refused? Logged in as root,

RE: Frames and Apache/mod_jk

2001-07-23 Thread Michael Weissenbacher
sounds much like you have some data in your servlet object. if there are multiple requests, you must consider that it's always the SAME servlet object that has to handle it. so if you are declaring fields in your servlet you must be very careful with serialisation. so it's best to not use it at

RE: Netscape crash!

2001-06-05 Thread Michael Weissenbacher
it's simple, just do a response.setContentType(text/html); in all your servlets. ie seems to not care about the content type which can be quite annoying either. michael -Original Message- From: Carlos Mayorga [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 7:44 PM To: [EMAIL

RE: Tomcat hanging

2001-05-30 Thread Michael Weissenbacher
i've started using java 1.3.1 a week ago and all thread releated problems known fron 1.3.0 seem to have disappeared michael -Original Message- From: Chris Janicki [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 3:39 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Tomcat

RE: java.lang.OutOfMemoryError

2001-05-25 Thread Michael Weissenbacher
i think your problems can be solved be setting a higher maximum heap size. for example start tomcat by using java -Xmx256 ... to set heap size to 256 mb. michael -Original Message- From: Shailesh R Sah [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 1:01 PM To: [EMAIL PROTECTED]

RE: tomcat run on windows 2000

2001-05-21 Thread Michael Weissenbacher
run startup.bat from the command line to see error messages (start cmd.exe first) -Original Message- From: Ho, Isadora KW [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 11:39 AM To: [EMAIL PROTECTED] Subject: tomcat run on windows 2000 Dear sir, I have installed the Tomcat in

tomcat + linux + graphics

2001-05-04 Thread Michael Weissenbacher
i'm having big problems with graphics dynamically created with tomcat on linux. on windows, the servlet works fine, on linux i have to start tomcat going to the server, starting X and then starting tomcat. i want to do this automatically and i want to connect tomcat to X windows without going to

RE: general question

2001-04-20 Thread Michael Weissenbacher
javax.servlet.http.HttpServlet which itself extends javax.servlet.GenericServlet Net4You, a VIA NET.WORKS Company == Michael Weissenbacher - Net4You OASE Tiroler Strae 80, 9500 Villach Tel.:+ 43 (0) 4242 - 5005 - 400 Fax: + 43 (0) 4242 - 50055

RE: IIS 5 and Win200000

2001-04-09 Thread Michael Weissenbacher
win20? microsoft must have gone mad with versions ;) michael smime.p7s

RE: Tomcat usability as a WebServer?

2001-03-05 Thread Michael Weissenbacher
you can use tomcat for static pages, but it's not recommended, since other web servers are faster, more reliable and already established as web servers. there is no way to use tomcat for CGI or PERL michael -Original Message- From: Brett W . McCoy [mailto:[EMAIL PROTECTED]] Sent:

RE: TOMCAT 3.2 + session

2001-02-28 Thread Michael Weissenbacher
i believe this has something to do with the SecureRandom that's userd by tomcat to create sessionid's. the initialisation takes quite long but only the first time. try accessing the servlet from another computer or user another browser! netscape's behavior is not really suitable if the test

RE: HELP: MIGRATION FROM JSERV TO TOMCAT

2001-02-27 Thread Michael Weissenbacher
rtfm ( read the f** manual ;) and how did you do in cooperating JServ with IIS? JServ can only do with apache! -Original Message- From: Paolo Fantoli [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 27, 2001 11:56 AM To: [EMAIL PROTECTED] Subject: HELP: MIGRATION FROM JSERV TO TOMCAT