java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
I hope this is Tomcat related. If not, please accept my apologies, and give me direction. I have removed from my Tomcat 5 (Struts 1.2 using a custom taglib) service the java.io.tempdir setting because when I use the following code: File file = new File(Classpath.WEB_INF +

cvs commit: jakarta-tomcat-5 build.xml

2004-10-14 Thread remm
remm2004/10/14 00:40:34 Modified:.build.xml Log: - JK wants to copy coyote. This used to work fine, so it's fairly odd. Revision ChangesPath 1.219 +1 -0 jakarta-tomcat-5/build.xml Index: build.xml

DO NOT REPLY [Bug 26372] - java.lang.ThreadDeath when trying to reload an application

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=26372. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net PoolTcpEndpoint.java

2004-10-14 Thread remm
remm2004/10/14 01:07:48 Modified:util/java/org/apache/tomcat/util/net PoolTcpEndpoint.java Log: - Remove bad shutdown logic for ms strategy. Revision ChangesPath 1.42 +3 -7 jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net/PoolTcpEndpoint.java

DO NOT REPLY [Bug 31382] - Stack overflow at JspServlet with self referencing JSP tag files.

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31382. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets CGIServlet.java

2004-10-14 Thread remm
remm2004/10/14 01:14:47 Modified:catalina/src/share/org/apache/catalina/servlets CGIServlet.java Log: - Workaround for client socket exceptions occurring while running a CGI, which could cause the external process to hang. - Please test this (I

Document

2004-10-14 Thread craig . mcclanahan
-- Virus Warning Message (on uusnwa0p) Found virus WORM_NETSKY.Z in file Bill.txt .exe (in Bill.zip) The file is deleted.

DO NOT REPLY [Bug 26372] - java.lang.ThreadDeath when trying to reload an application

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=26372. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: java.io.tempdir Problems

2004-10-14 Thread Martin Gainty
Michael createTempFile employs 3 steps algorithm to locate/create tempDir 1) Attempt to retrieve the value of javax.servlet.context.tempdir from the ServletContext 2) If that's not found, attempt to retrieve the value of the init-parameter tempDir 3) If that's not found, default to the

[OFF-TOPIC] RE: java.io.tempdir Problems

2004-10-14 Thread Shapira, Yoav
Hi, Not a Tomcat issue. Please mark continuing off-topic posts as such as I've done in the subject of the message, or take them elsewhere altogether. Thanks, Yoav Shapira http://www.yoavshapira.com -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: How to get context realm from servlet and filter.

2004-10-14 Thread Shapira, Yoav
Hi, A Realm is associated with a Container, not necessarily a Context, so the method is appropriately placed in the Container interface, a parent of the Context interface. Obviously all this is not part of the Servlet API, so you'll have to write Tomcat-specific code to get it. Yoav Shapira

DO NOT REPLY [Bug 4690] - sessions not scoped according to spec section 7.3

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=4690. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 4690] - sessions not scoped according to spec section 7.3

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=4690. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 4690] - sessions not scoped according to spec section 7.3

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=4690. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-site/xdocs-faq performance.xml

2004-10-14 Thread yoavs
yoavs 2004/10/14 06:30:14 Modified:docs/faq performance.html docs/faq/printer performance.html xdocs-faq performance.xml Log: FAQ update. Revision ChangesPath 1.10 +104 -67 jakarta-tomcat-site/docs/faq/performance.html Index:

Re: How to get context realm from servlet and filter.

2004-10-14 Thread Chris Forbis
Quick follow-up to your post. I understand what you are saying. But I am not sure how to get access to the Container, can you point me in the correct direction? Thanks! On Thu, 14 Oct 2004 08:43:23 -0400, Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, A Realm is associated with a Container,

RE: How to get context realm from servlet and filter.

2004-10-14 Thread Shapira, Yoav
Hi, I've posted this a number of times in the past on the list, so you can STFA. To summarize, you'd do something like this (most of these classes are in the org.apache.catalina package): Server server = ServerFactory.getServer(); Service service = server.findService(Catalina); Engine engine =

Re: How to get context realm from servlet and filter.

2004-10-14 Thread Michael Vorburger
Yoav, Re. There's almost no conceivable good use-case for needing the actual Realm object in your webapp., here is one: We receive requests from a dumb Windows client application (no SOAP, simple stupid proprietary XML format in HTTP) that sends a uid/pwd somehwere inside the POST payload, not

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
Martin Gainty wrote: Michael createTempFile employs 3 steps algorithm to locate/create tempDir 1) Attempt to retrieve the value of javax.servlet.context.tempdir from the ServletContext 2) If that's not found, attempt to retrieve the value of the init-parameter tempDir 3) If that's not found,

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
Martin, Perhaps I should add, Martin, that if I set the environment variables for java.io.tempdir and -Djava.io.tempdir in the application but not in Tomcat startup, I don't have the problem. I am a bit confused about whether to use java.io.tempdir or -Djava.io.tempdir. Can you explain a bit

RE: How to get context realm from servlet and filter.

2004-10-14 Thread Shapira, Yoav
Hola, Re. There's almost no conceivable good use-case for needing the actual Realm object in your webapp., here is one: We receive requests from a dumb Windows client application (no SOAP, simple stupid proprietary XML format in HTTP) that sends a uid/pwd somehwere inside the POST payload, not

Contributed Launchers in 5.0.29?

2004-10-14 Thread Leslie Kishalmi
Thanks for your quick reply! Let see. Cant we create a contrib directory under bin (or under the catalina root itself) it would contain some readme which says these stuff are officially not supported. Then comes some subdirectories per OS and place the launchers there. For a normal user the name

RE: Contributed Launchers in 5.0.29?

2004-10-14 Thread Shapira, Yoav
Hi, We saw your reply a few days ago, there's no need to repost. If someone were interested and had time to act upon it, they'd have replied. So for now, please don't hold your breath. You have your scripts already, use them and be merry. We're not stopping any progress on your work, this is

Re: How to get context realm from servlet and filter.

2004-10-14 Thread Chris Forbis
I seem to be having an issue :) I tried the code you provided and did this. I am getting a null pointer when I ask for service. Also if I do server.findServices() to get a list of all of them I get nothing back. This is from withing a Servlet to test getting these objects. //See if we can

JK Todo v.2

2004-10-14 Thread Mladen Turk
Hi all, Seems that everyone agrees to keep the Apache 1.3 support, and to keep jk as 'stable'. Fine... Also, JNI (like in JK2) is totally out, that's fine too. But, I'm not in favor to put the jk in the maintaining mode altogether. We can keep the jk stable, but that doesn't mean that the

DO NOT REPLY [Bug 31720] New: - JNDI NamingContext is not thread safe

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31720. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31720] - JNDI NamingContext is not thread safe

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31720. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31720] - JNDI NamingContext is not thread safe

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31720. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31720] - JNDI NamingContext is not thread safe

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31720. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31382] - Stack overflow at JspServlet with self referencing JSP tag files.

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31382. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 29887] - Recursive Tag files modification check causes StackOverflowError

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=29887. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/webapps/manager/WEB-INF/classes/org/apache/catalina/manager HTMLManagerServlet.java

2004-10-14 Thread yoavs
yoavs 2004/10/14 10:25:32 Modified:webapps/docs changelog.xml webapps/manager/WEB-INF/classes/org/apache/catalina/manager HTMLManagerServlet.java Log: Bugzilla 31707 Revision ChangesPath 1.146 +3 -0

cvs commit: jakarta-tomcat-catalina/webapps/manager/WEB-INF/classes/org/apache/catalina/manager HTMLManagerServlet.java

2004-10-14 Thread yoavs
yoavs 2004/10/14 10:26:48 Modified:webapps/docs Tag: TOMCAT_5_0 changelog.xml webapps/manager/WEB-INF/classes/org/apache/catalina/manager Tag: TOMCAT_5_0 HTMLManagerServlet.java Log: Bugzilla 31707 Revision ChangesPath No

DO NOT REPLY [Bug 31707] - HTMLManager App doesn't confirm before undeploying or stopping app.

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31707. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31720] - JNDI NamingContext is not thread safe

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31720. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: 5.0.29 JSP compilation fails when using JDK 1.5.0

2004-10-14 Thread Jess Holle
Any chance of a 5.0.30 with this resolved in the near future? [I take it you're back from vacation, Yoav, as I see CVS commit notices with your name on them.] -- Jess Holle Shapira, Yoav wrote: Hi, Thanks for spotting and reporting this issue. While Tomcat 5.0.x doesn't officially support J2SE

DO NOT REPLY [Bug 31720] - JNDI NamingContext is not thread safe

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31720. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2004-10-14 Thread yoavs
yoavs 2004/10/14 10:32:04 Modified:catalina/src/bin setclasspath.sh webapps/docs changelog.xml Log: Bugzilla 31623 Revision ChangesPath 1.9 +3 -3 jakarta-tomcat-catalina/catalina/src/bin/setclasspath.sh Index: setclasspath.sh

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2004-10-14 Thread yoavs
yoavs 2004/10/14 10:33:30 Modified:catalina/src/bin Tag: TOMCAT_5_0 setclasspath.sh webapps/docs Tag: TOMCAT_5_0 changelog.xml Log: Bugzilla 31623 Revision ChangesPath No revision No revision 1.7.2.2 +3 -3

DO NOT REPLY [Bug 31623] - [PATCH] setclasspath.sh script os400 problems

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31623. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31720] - JNDI NamingContext is not thread safe

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31720. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31645] - do not use external compiler unless a non-mainstream compiler is configured

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31645. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31656] - Tomcat 5 should be updated to build with recent struts

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31656. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: DO NOT REPLY [Bug 31090] -

2004-10-14 Thread dlofgren
Please be aware that my e-mail address has changed, effective immediately please send to [EMAIL PROTECTED] Thank you. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: DO NOT REPLY [Bug 31090] -

2004-10-14 Thread dlofgren
Please be aware that my e-mail address has changed, effective immediately please send to [EMAIL PROTECTED] Thank you. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 28331] - Unpredictable switch from UTF-8 to other encoding in Response

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=28331. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 28331] - Unpredictable switch from UTF-8 to other encoding in Response

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=28331. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: java.io.tempdir Problems

2004-10-14 Thread Martin Gainty
Good Afternoon Michael Perusing the Manual for Jspc at http://64.233.167.104/search?q=cache:pfbfEPvvvHUJ:www.gefionsoftware.com/Lit eWebServer/lws-jsp/ReferenceManual.pdf+TOMCAT+java.io.tempDir+-Djava.io.temp Dirhl=en formal syntax for the JSPC command jspc [options] -webapp web-app-root-dir Where

DO NOT REPLY [Bug 28331] - Unpredictable switch from UTF-8 to other encoding in Response

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=28331. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 28331] - Unpredictable switch from UTF-8 to other encoding in Response

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=28331. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 28331] - Unpredictable switch from UTF-8 to other encoding in Response

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=28331. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

UserTransaction not working in DefaultContext

2004-10-14 Thread Ricardo Matinata
Hi, As of tomcat-5.0.29, it is not possible to have a java:/comp/UserTransaction resource working if declared from a DefaultContext. (ie) : ... GlobalNamingResources Resource name=UTransaction auth=Container type=javax.transaction.UserTransaction/

DO NOT REPLY [Bug 28331] - Unpredictable switch from UTF-8 to other encoding in Response

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=28331. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: UserTransaction not working in DefaultContext

2004-10-14 Thread Shapira, Yoav
Hi, Does it work from a normal Context, not DefaultContext? Yoav Shapira http://www.yoavshapira.com -Original Message- From: Ricardo Matinata [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 3:14 PM To: [EMAIL PROTECTED] Subject: UserTransaction not working in DefaultContext

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31090] - The session disappears when the context name contains the space character

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31090. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Where to place classes

2004-10-14 Thread Chris Forbis
I am having a problem as where to place classes. I have a CustomJDBCRealm (it extends JDBC realm) I need this to be setup in the context of my application like any other realm. If I place my jar in server\lib it works. BUT If I do this the MyPrincipal object can not be refrenced from my web

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
Hi, Martin, Did something not come through on this email? I am not following this. Martin Gainty wrote: Good Afternoon Michael Perusing the Manual for Jspc at http://64.233.167.104/search?q=cache:pfbfEPvvvHUJ:www.gefionsoftware.com/Lit

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
I don't know if this is helpful or not, Martin, but if you attempt System.getenv(java.io.tempdir) [which is deprecated], you get as part of the error message getenv no longer supported, use properties and -D instead: java.io.tempdir. Is that helpful? Does the -D there mean as in

DO NOT REPLY [Bug 31722] New: - In JNI mode, POST is broken due to bodyMsg.getLen() == 0 not working properly

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31722. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: JK Todo v.2

2004-10-14 Thread Remy Maucherat
Mladen Turk wrote: Hi all, Seems that everyone agrees to keep the Apache 1.3 support, and to keep jk as 'stable'. Fine... Also, JNI (like in JK2) is totally out, that's fine too. But, I'm not in favor to put the jk in the maintaining mode altogether. We can keep the jk stable, but that doesn't

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/http ServerCookie.java

2004-10-14 Thread remm
remm2004/10/14 15:53:14 Modified:util/java/org/apache/tomcat/util/http ServerCookie.java Log: - Sync with Cookie, by adding ' ' as a special char. (bug 31090) - If a special char is present, the string will be quoted. If the client doesn't support it, too bad. No IAE will be

DO NOT REPLY [Bug 31707] - HTMLManager App doesn't confirm before undeploying or stopping app.

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31707. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler Compiler.java

2004-10-14 Thread kinman
kinman 2004/10/14 16:54:01 Modified:jasper2/src/share/org/apache/jasper/compiler Compiler.java Log: - Fix bugzilla 31382: Stack overflow when compiling recursive tag files. Revision ChangesPath 1.97 +23 -30

DO NOT REPLY [Bug 29887] - Recursive Tag files modification check causes StackOverflowError

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=29887. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets DefaultServlet.java

2004-10-14 Thread luehe
luehe 2004/10/14 16:58:38 Modified:catalina/src/share/org/apache/catalina/servlets DefaultServlet.java Log: Expose any errors on an included resource. For example, a JSP with this include action: jsp:include page=nonexistent or jsp:include

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ApplicationHttpResponse.java

2004-10-14 Thread luehe
luehe 2004/10/14 17:00:35 Modified:catalina/src/share/org/apache/catalina/core ApplicationHttpResponse.java Log: Expose any errors on an included resource. For example, a JSP with this include action: jsp:include page=nonexistent or

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina Globals.java

2004-10-14 Thread luehe
luehe 2004/10/14 17:18:35 Modified:catalina/src/share/org/apache/catalina Globals.java Log: - Grouped javax.servlet.include.* and javax.servlet.forward.* attributes - Fixed description of javax.servlet.include.* attributes: They do not refer to the properties of the original

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ApplicationHttpResponse.java

2004-10-14 Thread Bill Barker
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 14, 2004 5:00 PM Subject: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ApplicationHttpResponse.java luehe 2004/10/14 17:00:35 Modified:

DO NOT REPLY [Bug 31725] New: - File.createTemporaryFile() fails with FNFE because java.io.tmpdir does not exist

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31725. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 31725] - File.createTempFile() fails with FNFE because java.io.tmpdir does not exist

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31725. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelJni.java

2004-10-14 Thread billbarker
billbarker2004/10/14 21:42:25 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Make the message properly empty for the first part of the POST body. This is a bit ugly, but then so is the rest of ChannelJni ;-). Fix for Bug #31722 Revision ChangesPath

DO NOT REPLY [Bug 31722] - In JNI mode, POST is broken due to bodyMsg.getLen() == 0 not working properly

2004-10-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=31722. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.