Re: context configuration file being overwritten

2004-02-01 Thread QM
but this works quite well for me. -QM - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat and apache+mod_jk on different servers - another story

2004-01-21 Thread QM
/architecture reasons) This has worked very well for me, for quite some time now. YMMV. -QM -- software -- http://www.brandxdev.net tech news -- http://www.RoarNetworX.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: running tomcat5 as a user other than root

2004-01-12 Thread QM
you've run into a permissions problem...? -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: TC 4.1.12 on Linux - session swapping

2004-01-08 Thread QM
forward()'s or requests... -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Unable to access secure port on RHEL 3.0

2004-01-07 Thread QM
do catalina.out and tomcat.log say? -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: TC 4.1.12 on Linux - session swapping

2004-01-07 Thread QM
: machine 1 will sometimes get the results from query 2. Smells like an instance/global variable where there shouldn't be one. Add that to a subtle race condition and you have the problem you've outlined. Are the queries being posted to the same servlet? -QM -- software -- http

Re: JDBCRealm with Tomcat 5 (newbie!)

2004-01-07 Thread QM
relevant documentation? At the risk of sounding facetious, there is no coding for you to do. The container takes care of everything for you. Review the servlet spec (or do a web search) for form-based authentication for the details. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL

Re: Off-topic - Java and X11 Window Server

2004-01-07 Thread QM
server using ':0.0' as : the value of the DISPLAY variable. 1/ is Tomcat running on the same host with X? If not, change $DISPLAY to that_host:0.0 2/ is X running on said host? 3/ is X on said host set to accept connections? -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL

Re: Making index.jsp work as welcome page after upgrade

2004-01-07 Thread QM
index.jsp is in Apache's welcome file. Apache gets the request for / - /index.jsp - [off to a JK worker] -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com

Re: Making index.jsp work as welcome page after upgrade

2004-01-07 Thread QM
, that would yield more informative results. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Forms Authentication

2004-01-07 Thread QM
: So is there a way to overcome this? BTW ? if I reference the login.jsp from : a secure page, everything works fine. So I know I have things setup : correctly thus far. If I may ask, why would you want to hit the login page directly? Is this for a click here to login link? -QM -- software

Re: problem with forms authentication

2004-01-04 Thread QM
: Invalid direct reference to form login page Just one, but it has nothing to do with the upgrade: are cookies enabled in your browser? -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com

Re: Weird Occurance

2004-01-02 Thread QM
? Otherwise, you could play with context listeners to see exactly when the user object is being dropped from the session. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com

Re: Weird Occurance

2004-01-02 Thread QM
. The plus side here is that the app works in one place, not in another, so you can use the differences between the two environments to narrow the scope of your problem analysis. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com

Re: Have some questions, also possible contract work up for grabs

2004-01-02 Thread QM
celeron with I believe 512mb of ram running linux. Again, depends largely on the app. There is no way to know this number unless the code has been profiled and load-tested. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com

Re: Tomcat 5.0 (problems)

2003-12-30 Thread QM
for a fairly vanilla webapp, and that required changes to server.xml. Without them, Tomcat simply started, complained about missing classes (old TC4 connectors) and bailed. I took notes on the whole thing for when I do it in production. I could post those on my website, if anyone's interested... -QM

Re: Tomcat 5.0 as JK Mod

2003-12-30 Thread QM
a special protocol, such that Apache httpd and Tomcat can communicate. As for doc: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html The URL mentions TC 4 but TC5 is supported, according to the first mod_jk link under the header What's JK. Is this the page you're after? -QM

Re: what *really* happens when you reload or stop/start a webapp?

2003-12-30 Thread QM
require this to be a static variable? -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Remote Tomcat Server - Apache Connector over SSL

2003-12-30 Thread QM
://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/workershowto.html may help. If you scroll to the Ajp13 Worker properties header, mentions that this protocol passes the info to Tomcat. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com

Re: Need some Tomcat Configuration help badly

2003-12-15 Thread QM
a memory leak in Java if your code manages to maintain reference to an object that's no longer needed or being used, because said object will never be reaped. -QM - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Need some Tomcat Configuration help badly

2003-12-13 Thread QM
a different out-of-memory error. I don't know how Linux or other kernels handle this, but it's worth a look before deciding between fork/not fork for JSP compiles. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com

Re: Tomcat Exception Handling =?= Web Tier Exception Handling

2003-12-12 Thread QM
for me. It may work for you. I haven't used other frameworks but chances are they'd have something similar. I do #3 for my larger, Struts-based apps and something similar to #2 for the quick demos. -QM -- software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread QM
: site:jakarta.apache.org tomcat gzip -QM -- C++ / Java / SSL http://www.brandxdev.net/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Starting Tomcat as nobody...

2003-11-24 Thread QM
the command umask The URL is http://www.BrandXDev.net/ -QM -- C++ / Java / SSL http://www.brandxdev.net/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

<    4   5   6   7   8   9