RE: SSL on Tomcat standalone not working

2002-09-11 Thread Michael Petres
Great tip :), of course you need to use https://, what an oversight on my part... oh well But shouldn't Tomcat return an error page if someone types in http://servername:8443/ by mistake? It is rather ambiguous what's going on with the current return of '' Michael Petres

RE: Shutdown problem

2002-09-11 Thread Michael Petres
Ok, There is a thread running after shutdown that is the AWT EventDispatchThread. How do I kill this puppy? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message

RE: SSL on Tomcat standalone not working

2002-09-11 Thread Michael Petres
if someone types in http://... instead of https://... Tomcat however will return a text string that has some non-printable characters in it, i.e. it does not notify the browser that there is nothing at the http://... address rather it serves up garbage... Michael Petres

RE: SSL on Tomcat standalone not working

2002-09-11 Thread Michael Petres
with the exact semantics of SSL negotiations. But I suspect that there is a better (perhaps prescribed by the spec) way for a server (e.g. Tomcat) to reject non SSL requests on an SSL enabled port... P.S. John, are you part of the development team for Tomcat? Michael Petres

RE: SSL on Tomcat standalone not working

2002-09-11 Thread Michael Petres
No John, I quite enjoy interacting with you :). What I meant was since I was thinking about putting in a bug report, (if you were with the development team) I perhaps wouldn't have to make the arguments again... assuming they are correct of course. Michael Petres

RE: Debugging class loading

2002-09-10 Thread Michael Petres
were thinking of being able to generate a class load dump (through our custom class loader) to facilitate the trouble shooting procedure Perhaps this should be a feature of tomcat. Until then we need to use our own class loader, nothing fancy... Michael Petres

RE: Running tomcat 4.x using JBuilder

2002-09-10 Thread Michael Petres
Ok... I have Jbuilder6 but I don't want to use the Tomcat engine that came with Jbuilder. How would I manually integrate another version of Tomcat? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235

RE: Running tomcat 4.x using JBuilder

2002-09-10 Thread Michael Petres
Vincent, If you have an OpenTool already, can I have it? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: Debugging class loading

2002-09-10 Thread Michael Petres
of the class loaders. Is it not possible to specify custom class loaders for (and/or) System, Common, Catalina, Shared loaders? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235

RE: Tomcat and SSL

2002-09-10 Thread Michael Petres
John, How did you achieve this configuration. I am tasked with putting something like this together myself and I haven't got the first clue how to start... I have been running single instances of Tomcat successfully though... Michael Petres ~ InnovObjX Corp. Web

RE: Running tomcat 4.x using JBuilder

2002-09-10 Thread Michael Petres
? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: Jim Tomlinson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 1:40 PM To: '[EMAIL

RE: Debugging class loading

2002-09-10 Thread Michael Petres
the loaderClass=... statement as well when determining what class loader to use... Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: Cox, Charlie [mailto:[EMAIL

RE: Security match fails url-pattern /p/* on TC 3.2.1

2002-09-10 Thread Michael Petres
Wouldn't '/p/*' imply a match for URLs that contain /p/ (e.g. http://server/webapp/p/securelist.do). This would explain why all other URLs fail to get authentication... they are missing the /p/* pattern Why not try /public/* Michael Petres ~ InnovObjX Corp. Web

RE: How can i send respond incrementally in a Servlet

2002-09-10 Thread Michael Petres
I am guessing but a value of 0 may be completely ignored. Try a buffer size of 1. It is entirely possible that there is minimum value for the buffer, as I said am just guessing Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax

SSL on Tomcat standalone not working

2002-09-10 Thread Michael Petres
clientAuth=false protocol=TLS/ /Connector Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~

RE: Servlet's loading twice on start-up--DRIVING ME NUTS!

2002-09-10 Thread Michael Petres
you specify the absolute path in the docBase of your context tag. Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: Jeff Wishnie [mailto:[EMAIL PROTECTED

Shutdown problem

2002-09-10 Thread Michael Petres
… What could be causing this? No errors reported in the log files… Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~

RE: threads best practice

2002-09-09 Thread Michael Petres
What problems are caused with the class loader? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: skraaatch [mailto:[EMAIL PROTECTED]] Sent: Sunday

FW: Where to place JAR file???

2002-09-08 Thread Michael Petres
(streamed from the client applet) and it also attempts to load the class from WEB-INF/lib/library.jar at which point the VerifyError is thrown? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235

Running tomcat 4.x using JBuilder

2002-09-08 Thread Michael Petres
Is it at all possible??? I have been using the following command successfully from within JBuilder for tomcat 3.2.2: java -classpath %CLASS_PATH% -Dtomcat.home=%TOMCAT_HOME% org.apache.tomcat.startup.Tomcat I cannot figure out what to use for 4.x … Any ideas? Michael Petres

Debugging class loading

2002-09-08 Thread Michael Petres
=false reloadable=false checkInterval=15 debug=99 cloaderClass=my.custom.CustomClassLoader/ where CustomClassLoader would extend WebappClassLoader. Is this feasible ? Perhaps there is a better option…. I would appreciate any ideas as I am stuck with this problem… Thanx, Michael Petres

Where to place JAR file???

2002-09-07 Thread Michael Petres
work! Is there some configuration issue I am missing here? Obviously Tomcat will ensure the proper context to the servlet base, which is eBMF, but why can files NOT be accessed in directories under it? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel

Standalone configuration

2001-07-24 Thread Michael Petres
resources! Michael Petres ~~ InnovObjX Corporation mailto:[EMAIL PROTECTED] http://www.innovobjx.com Tel: 905-729-2235 ext:61, Fax: 905-729-0754