Re: VOTE: HTML in Messages and politeness

2001-07-29 Thread Kurt Bernhard Pruenner
Pier P. Fumagalli wrote: [X] +1 - Plain Text only. Strip HTML on the mailing list. After all, HTML in mails is just plain evil... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria ...It might be written Mindfuck, but it's spelt L-A-I-N... np: Burnt Friedman

Re: help for Beans

2001-03-30 Thread Kurt Bernhard Pruenner
d="con" scope="session" class="UsingJDBC" and don't forget to close it with /jsp:useBean% or by using jsp:useBean id="con" scope="session" class="UsingJDBC" / if you won't enclose anything... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria ...It might be written "Mindfuck", but it's spelt "L-A-I-N"... np: Maroons - Golden Rule (Quannum - Spectrum)

Re: Problem shutting down Tomcat 3.2.1

2001-02-18 Thread Kurt Bernhard Pruenner
re in your path, other than that I don't know why it would _reboot_... Try using "tomcat.bat stop" instead of "shutdown", does the same thing and shouldn't have any bad side effects... or is it rebooting because it bluescreened? (Which, of course, shouldn't happen as well..

Re: Session ids (netscape)

2001-02-06 Thread Kurt Bernhard Pruenner
, be possible with URL rewriting, so you'd need to disable the use of cookies either on the client or on the server side... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written

Re: Deadlock problem

2001-02-06 Thread Kurt Bernhard Pruenner
aster than the sessions will time out (by default, they expire after 30 minutes), the JVM's memory will be used up by oodles of session objects that can't be garbage collected yet... :( We solved this problem by stopping our spider from traversing JSP pages, but that won't help you, of course... -- Kur

Re: startup

2001-02-04 Thread Kurt Bernhard Pruenner
as long as there are no errors - it's just sitting there waiting for clients to connect. Point your browser to http://localhost:8080/ and you should get the Tomcat example webpages served by Tomcat. What else did you expect to happen after starting a server, anyway? -- Kurt Bernhard Pruenner

Re: Delay in invoking first servlet

2001-01-30 Thread Kurt Bernhard Pruenner
, especially with that speed hit incurred by using the SecureRandom generator... That should fix your startup delay, but don't use this on production servers, as it would allow evil-minded individuals to semi-"guess" session IDs... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz -

Re: oracle driver problem Zip or Jar?

2001-01-23 Thread Kurt Bernhard Pruenner
things... :) -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written "Mindfuck", but it's spelt "L-A-I-N".

Re: How do I assing more memory to Tomcat

2001-01-19 Thread Kurt Bernhard Pruenner
check tomcat.bat or tomcat.sh, TOMCAT_OPTS specifies the commandline options that are used for the JVM used to start Tomcat...) -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written

Re: PoolTcpConnector Freeze on start

2000-12-28 Thread Kurt Bernhard Pruenner
inrr /root]# 2000-12-27 08:07:18 - ContextManager: Adding ^^^ It's just that Tomcat (running in the background) still printed out a few messages, which of course got printed right after your prompt, which of course often leads to confusion... :) -- Kurt Bernhard Pruenner --- Haen

Re: java.net.SocketException: Too many open files

2000-12-27 Thread Kurt Bernhard Pruenner
pen, which is caused by the file descriptor table being an array of fixed size - one that you can configure in the Linux kernel settings, though... In other words, I guess a kernel reconfiguration and recompile is in order... :) -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Aus

Re: Running a thread from a JSP

2000-12-26 Thread Kurt Bernhard Pruenner
-- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written "Mindfuck", but it's spelt "L-A-I-N"... np: Ko-Wreck Technique - Metro Dade (Rapid Transit comp.)

Re: HttpSession = request.getSession(true);

2000-12-26 Thread Kurt Bernhard Pruenner
uot; might also help for now... :) Having to wait so long when initializing the first session isn't fun if you're developing something and are restarting Tomcat every 5 minutes... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak ---

Re: How to access servlets without prefixes

2000-12-24 Thread Kurt Bernhard Pruenner
guess avoiding spaces in file names, using slashes instead of backslashes and making sure you get the case of all names right should fix your problem... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written "Mindfuck", but it's spelt "L-A-I-N"... np: Kit Clayton - Nia-Ikala (Nek Sanalet)

Re: File downloading through a servlet problem. This is weird!!!

2000-12-22 Thread Kurt Bernhard Pruenner
ebapp/download/SeasonsGreetings.jpg?filename=/pics/SeasonsGreetings.jpg or something like that... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written "Mindfuck", but it's spelt "L-A-I-N"... np: Burnt Friedman The Nu Dub Players - Just Landed (Just Landed)

Re: Servlet exception: callable statements are not supported at this time

2000-12-22 Thread Kurt Bernhard Pruenner
the problem is just what it says - your JDBC drivers don't support Callable Statements that DreamWeaver wants to use. Either scrap your JDBC drivers or DreamWeaver - any way it ain't Tomcat's fault. And, of course, always have a look at the "Root Cause" found in Tomcat's stackdumps... -- Kur

Re: Is their a bug in Tomcat with the RequestDispatcher.forward(u rl) method?

2000-12-07 Thread Kurt Bernhard Pruenner
intact... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written "Mindfuck", but it's spelt "L-A-I-N"... np: Boards Of Canada - XYZ (Peel Session broadcast)

Re: IE Netscape

2000-12-05 Thread Kurt Bernhard Pruenner
ame of the HttpServletResponse parameter of said method. Oh, and please write your replys _below_ the previous posting - it's much easier to keep track of a thread that way... thanks... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak

Re: ClassCastException

2000-11-25 Thread Kurt Bernhard Pruenner
be too tragic in a development environment, which servlet reloading is really meant for) would be helpful... Phew... I hope I wasn't too far off with my attempt at an explanation... :) -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work:

Re: HANDLER THREAD PROBLEM: Stream closed prematurely

2000-11-24 Thread Kurt Bernhard Pruenner
)? -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at ...It might be written "Mindfuck", but it's spelt "L-A-I-N"... np: Senor Coconut - Showroom Dummies (El Baile Aleman)

Re: Does servlet mapping work in Tomcat 3.1?

2000-11-22 Thread Kurt Bernhard Pruenner
/servlet-class /servlet Try swapping the servlet and servlet-mapping tags; IIRC servlet has to come before servlet-mapping or it won't work... -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/Leak --- Work: http://www.ssw.uni-linz.ac.at

Re: News Group needed desperately

2000-11-21 Thread Kurt Bernhard Pruenner
from a digest, and it's even more responsive... (Having said that - I'm on several hi-traffic mailing lists and I don't have the slightest problem having them all sorted into their own folder - where's the big difference to newsgroups then?) -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020

Re: servlet url mapping problems

2000-11-21 Thread Kurt Bernhard Pruenner
Yin Tse wrote: http://locahost/foo/servlet/myServlet will work but http://locahost/foo/servlet/myGod won't work. Try http://localhost/foo/myGod ... I don't see no "/servlet" in your servlet-mapping -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria M

Server-Side Includes (was Re: JSP and embedded servlet call)

2000-11-20 Thread Kurt Bernhard Pruenner
JServ passing the wrong location to Tomcat when invoked from mod_include - is this some planned behaviour and is using mod_include with mod_jserv right out of the question, or is this just a bug? :/ -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz --- Austria Music: http://www.mp3.com/

Re: Server-Side Includes (was Re: JSP and embedded servlet call)

2000-11-20 Thread Kurt Bernhard Pruenner
clude any other page that can otherwise be served by Apache, except that it mysteriously doesn't work with pages that come from Tomcat, while it _does_ work with the older JServ... that's why we've got both JServ and Tomcat running on our server currently, which of course isn't really preferable... :/

Re: Server-Side Includes (was Re: JSP and embedded servlet call)

2000-11-20 Thread Kurt Bernhard Pruenner
"Craig R. McClanahan" wrote: Kurt Bernhard Pruenner wrote: "Lacerda, Wellington (AFIS)" wrote: Why don't you use the plain jsp:include ? Because the page is an shtml page that's handled by Apache, and since it's possible to include JSP-pages that are handled by mo

Re: Server-Side Includes (was Re: JSP and embedded servlet call)

2000-11-20 Thread Kurt Bernhard Pruenner
"Craig R. McClanahan" wrote: Kurt Bernhard Pruenner wrote: No no no no no... I _don't_ want to add SHTML/SSI support to Tomcat - I want mod_jserv fixed so that, using the SSI facility in Apache, Anyone who wishes to make this change (instead of or in addition to adding SHT

Re: can't get tomcat to compile...servlets.

2000-11-18 Thread Kurt Bernhard Pruenner
Parvez Rishi wrote: hi, i'm new to servlets and tomcat. i've installed tomcat with apache 1.3.12. it serves servlets and jsp's but it does not compile them. Well, it's funny that it wouldn't compile JSPs, but Tomcat not compiling servlets is the correct behaviour - it never has done that and

Re: VIRUS ALERT! Re: using SSL on standalone Tomcat - Urgent !

2000-11-18 Thread Kurt Bernhard Pruenner
sscanner being right converges asymptotically against zero... Besides, opening the file with any packer (like WinRAR) that can open ZIP files will let you have a look at the contents, without any risk. Try it, you might be surprised... :) -- Kurt Bernhard Pruenner --- Haendelstrasse 17 --- 4020 Linz ---

Re: using SSL on standalone Tomcat - Urgent !

2000-11-16 Thread Kurt Bernhard Pruenner
"Lacerda, Wellington (AFIS)" wrote: web-app security-constraint web-resource-collection web-resource-namea/web-resource-name url-pattern/wlss1/*/url-pattern Change this to "/*". The url-pattern setting is relative to your context, not to the server root. AFAIK, the spec

Re: Tomcat 3.1 crashes when closing ODBC connection

2000-11-15 Thread Kurt Bernhard Pruenner
Paul Gallagher wrote: cheers ignacio - i'll check out jdk1.3 asap Have a look at the following page as well, as it is about a service wrapper that won't get the JVM killed when the user logs out... :) http://www.alexandriasc.com/software/JavaService/ I've been using it for over a month now,

Re: New user question...

2000-11-14 Thread Kurt Bernhard Pruenner
"Reynshteyn, Leonid" wrote: Here are the contents of the JSP file: - %@ raglib uri="/test.tld" prefix="leo" % ^ Not that I've used this before, but isn't that supposed to spell "taglib"? -- Kurt Pruenner - Haendelstrasse 17, 4020 Linz, Austria | Briareos at Olymp BBS:

Re: servlet mappings???

2000-11-03 Thread Kurt Bernhard Pruenner
Matt Goss wrote: servlet-mapping servlet-namerouter/servlet-name url-pattern/*/urlpattern /servlet-mapping the idea is that I should be able to request the file test.jsp and have the router servlet pick up the request (to test for a login)...but the servlet never gets the

Re: JavaBean at JSP

2000-10-24 Thread Kurt Bernhard Pruenner
[EMAIL PROTECTED] wrote: I want to have my JSP page mesto.jsp at some directory and my JavaBean Mesto.class at directory under it (at WEB-INF/classes/mesto). Is this my demand not standard? That is, must I to have JSP page and JavaBean at the same directory? Or must I define context (at

Re: JavaBean at JSP

2000-10-23 Thread Kurt Bernhard Pruenner
[EMAIL PROTECTED] wrote: snip 1) I created new directory /usr/adissys/pok_JSP/SB/vzor/WEB-INF/classes/mesto; snip Can you advise why? Since "pok_JSP" is the context you defined in your server.xml that you had in your first post, I think you want to have your WEB-INF directory there instead of