[GUMP] Build Failure - Tomcat 3.x

2001-03-08 Thread Sam Ruby
This email is autogenerated from the output from: http://jakarta.apache.org/builds/gump/2001-03-08/jakarta-tomcat.html Buildfile: build.xml init: prepare: [mkdir] Created dir:

secureRandom

2001-03-08 Thread Alfredo Solano Martinez
Greetings, I'd like to know if there is a way to initialize the secureRandom at Tomcat' startup, so that the first getSession(true) doesn't take too long. Thanks in advance for any suggestion, Alfredo - To unsubscribe,

cvs commit: jakarta-tomcat-4.0/connectors/webapplib wa_application.h wa_config.h wa_memorypool.c wa_memorypool.h wa_virtualhost.h wa_webserver.h wa.c wa.h wa_connection.h wa_host.h wa_provider.h

2001-03-08 Thread pier
pier01/03/08 03:33:50 Modified:connectors/webapplib wa.c wa.h wa_connection.h wa_host.h wa_provider.h Added: connectors/webapplib wa_application.h wa_config.h wa_memorypool.c wa_memorypool.h wa_virtualhost.h

Re: Patches in Bugzilla

2001-03-08 Thread Pier P. Fumagalli
Dan Milstein [EMAIL PROTECTED] wrote: I'm having a problem using Bugzilla, and I'm hoping someone can point me towards an easy solution. When people post bug reports, they often include patches in the text of the description (which is great). However, it's very difficult for me to get

RE: secureRandom

2001-03-08 Thread Marc Saegesser
This has already been addressed in Tomcat 3.2.2 (currently in beta). -Original Message- From: Alfredo Solano Martinez [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 08, 2001 4:35 AM To: [EMAIL PROTECTED] Subject: secureRandom Greetings, I'd like to know if there is a way

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

2001-03-08 Thread costin
costin 01/03/08 06:31:35 Modified:src/share/org/apache/tomcat/core Request.java Log: Ops, wrong directory... Fix the last night's commit - sorry about it. ( the CVS should be closed during night time :-) Revision ChangesPath 1.97 +9 -3

RE: secureRandom

2001-03-08 Thread Todd Carmichael
Do you know the specifics and files where the changes were made for this improvement? -Original Message- From: Marc Saegesser [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 08, 2001 6:14 AM To: [EMAIL PROTECTED] Subject: RE: secureRandom This has already been addressed in Tomcat

Problem with JspWriterImpl

2001-03-08 Thread Oren Deri, Nice-Eye
Hi, when printing in jsp some String that is null (String str = null;) the output html is the string "null". Look at the code of JspWriterImpl.print(String s) public void print(String s) throws IOException { if (s == null) { s = "null"; } write(s); }

[PATCH] for StaticInterceptor.FileHandler bug in filenames with spaces

2001-03-08 Thread Orlando Caro
Patch for org.apache.tomcat.request.StaticInterceptor.FileHandler Bug confirmed on Tomcat 3.2.1 and 3.2.2b1 Patch tested under Win2K On filenames with spaces Context.getRealPath() doesn't convert %20 back to spaces. FileUtil.safePath() which is used by the method above comments state "On

[PATCH] ResponseStream.java / Tomcat 4.0

2001-03-08 Thread David
It was not possible to specify an offset when calling write() on the Outputstream returned by HttpServletResponse. For this reason it was impossible to run a SOAP 2.0 Server on Tomcat 4 (it uses an offset in write() for the output). Cause: In ResponseStream's write(byte b[], int off, int len)

Logging Issues

2001-03-08 Thread Thomas Riemer
Here's a couple of thoughts/notes on logging: (3_3_1_m1) 1. I ran into a problem with mod_jk where I got hideous performance once my mod_jk log file got up over a certain size. (requests that normally take 1200 ms, taking 12,000 ms). The solution seemed to be to pare down mod_jk logging to a

RE: Problem with JspWriterImpl

2001-03-08 Thread Marc Saegesser
This is the expected operation of a PrintWriter. Read the JavaDoc for java.io.PrinterWriter.print(String s). print public void print(String s) Print a string. If the argument is null then the string "null" is printed. Otherwise, the string's characters are converted into bytes according to

Re: secureRandom

2001-03-08 Thread Alfredo Solano Martinez
Greetings again I'm also interested in those files so I could make a little patch. Is it too difficult? BTW, how stable is that Beta? Thanks for those replies - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Problem with caching

2001-03-08 Thread Aarkoti, Udaypal
Hi, what should i do so that if a user logins in and caches a dynamic page, other users do not have access to this page. Or i'll be more than happy even if i know how to make the server not cache these pages so that only users who go step by step only will have access to those respective

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector ResponseStream.java

2001-03-08 Thread remm
remm01/03/08 13:41:04 Modified:catalina/src/share/org/apache/catalina/connector ResponseStream.java Log: - It was not possible to specify an offset when calling write() on the Outputstream returned by HttpServletResponse. For this reason it was

Re: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown

2001-03-08 Thread Dan Milstein
First off, it's GREAT that you are working on this -- it's a very heavily requested improvement. I haven't had time to do a full review yet, but I've taken a quick look and I have a few questions/suggestions: 1) This work will end up being committed in the 3.3 branch, rather than the 3.2

RE: secureRandom

2001-03-08 Thread Marc Saegesser
The update was to util.SessionIdGenerator, I think, but its been a long time I don't recall if any other files were involved. The beta is stable. 3.2.2 is a bug fix release so most of the changes have been minor. I expect to release the second beta release early next week. -Original

RE: FW: problem w/ ajp13 - if Tomcat is shutdown

2001-03-08 Thread GOMEZ Henri
Title: RE: FW: problem w/ ajp13 - if Tomcat is shutdown I revue your patch and I notice : We could use select to determine if something happen to the connection, typically readfds will be set if something is to read. With ajp13 protocol where everything is consumed after reading the

RE: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown

2001-03-08 Thread Shinta Tjio
Title: RE: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown Dan, thanks for reviewing See my inline comments. First off, it's GREAT that you are working on this -- it's a very heavily requested improvement. I haven't had time to do a full review

RE: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown

2001-03-08 Thread GOMEZ Henri
First off, it's GREAT that you are working on this -- it's a very heavily requested improvement. 1) This work will end up being committed in the 3.3 branch, rather than the 3.2 branch. 3.2 is only bug fixes now, not new features. The mod_jk C code is very similar in 3.3 and 3.2, but not

RE: FW: problem w/ ajp13 - if Tomcat is shutdown

2001-03-08 Thread Shinta Tjio
Title: RE: FW: problem w/ ajp13 - if Tomcat is shutdown I revue your patch and I notice : We could use select to determine if something happen to the connection, typically readfds will be set if something is to read. With ajp13 protocol where everything is consumed after reading the

RE: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown

2001-03-08 Thread Shinta Tjio
Title: RE: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown 3) For option (1), I have a few questions - Is there a way in which data could be lost? Specifically, as you state, the send() will return without error, and then it will only get the

RE: FW: problem w/ ajp13 - if Tomcat is shutdown

2001-03-08 Thread GOMEZ Henri
Okay so this means, you would prefer my proposed solution #1? That was my inclination too. Proposed solution #1 without the errno check. My idea : get the service code in a loop for (i = 0; i RETRIES; i++) { if (send_request() 0) continue; if

RE: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown

2001-03-08 Thread GOMEZ Henri
Title: RE: Design Review for ajp13's changes: WAS problem w/ ajp13 - if Tomc at is shutdown To keep high performance in this connector, it will be better to handle the tomcat restart as an exceptionnal condition ;-) La prise de conscience de votre propre ignorance est un grand pas vers la

RE: FW: problem w/ ajp13 - if Tomcat is shutdown

2001-03-08 Thread Shinta Tjio
Title: RE: FW: problem w/ ajp13 - if Tomcat is shutdown Okay, I basically agree with you. I'll take out the check for errno and just have recv() == -1 be considered a recoverable error (i.e: retry it). However, I disagree with making the retry in a loop for RETRIES times. This is because

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

2001-03-08 Thread remm
remm01/03/08 15:40:57 Modified:catalina/src/share/org/apache/catalina/servlets DefaultServlet.java Log: - Set content length when doing a single range ranged request. Fixes problems with WinAMP 2.72 new HTTP seek feature (which apparently doesn't

Re: Logging Issues

2001-03-08 Thread cmanolache
Hi Thomas, It would be great if you can help adding log4j support in tomcat3.3. My only problem ( and I'm very strong about this ) is that I don't like the "only one way to implement something" aproach. Log4j has great features, I like the code - but it's not the solution for all cases. I

Re: secureRandom

2001-03-08 Thread Alfredo Solano Martinez
Fine! I'll try it as soon as I can :-) PD : i'll make you know of my experience - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

[PATCH] Install instructions using Ant 1.3

2001-03-08 Thread Christopher Cain
The attached adds building instructions to the README file for the new Ant 1.3 release (and fixes a minor typo). Unfortunately, I do not currently have access to a Win box. If someone could please verify the steps under Windows, that would probably be good. I doubt there are any noteworthy

what's mean wrong name. message?

2001-03-08 Thread Steve,Park\(\)
Help me...following error occurs. and i have no com.lgeds.jdf.servlet.UploadedFile class. but What does Tomcat talking to me ? Help me.. what's mean wrong name.? i already store a class file "UploadedFile.class" to "/usr/local/tomcat/webapps/en/WEB-INF/classes/com/filonet/jdf/servlet/"

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

2001-03-08 Thread remm
remm01/03/08 21:03:52 Modified:catalina/src/share/org/apache/catalina/core StandardWrapperValve.java Log: - Don't display status for 1xx and no content. Revision ChangesPath 1.20 +11 -5

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

2001-03-08 Thread remm
remm01/03/08 21:04:22 Modified:catalina/src/share/org/apache/catalina/servlets DefaultServlet.java Log: - A POST request on the default servlet should be equivalent to a GET. Revision ChangesPath 1.28 +5 -4

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/util SimplePool.java

2001-03-08 Thread remm
remm01/03/08 21:20:16 Removed: catalina/src/share/org/apache/catalina/util SimplePool.java Log: - Remove SimplePool (which isn't used anywhere). - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: FW: problem w/ ajp13 - if Tomcat is shutdown

2001-03-08 Thread Dan Milstein
Henri, You say that checking errno isn't safe in a multithreaded env (which would certainly makes sense to me, since it looks like a global var). However, after searching online, and reading up in "Programming Threads", by Kleiman, Shah and Smaalders, I find on p. 47: "Each thread has its own

please help

2001-03-08 Thread JeremyRayYoo
hi I am knew at this so I was hoping someone could help me. I recently downloaded the tomcat jakarta server. I set the environment variables JAVA_HOME to point to my jdk1.1.8 and TOMCAT_HOME to point to the home tomcat directory. When I run startup I get this message: Out of environment space

Re: please help

2001-03-08 Thread nigel
You need to add a line like this to your config.sys shell=c:\command.com c:\/p /e:32000 - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 09, 2001 7:17 AM Subject: please help hi I am knew at this so I was hoping someone could help me. I recently