Re: Mail Delivery (failure tomcat-dev@jakarta.apache.org)

2004-12-12 Thread newsletter
This is an automated message that will hopefully answer any questions you might 
have:


HOW TO UNSUBSCRIBE:
Visit www.insanepictures.com/unsubscribe.shtml and enter your email address 
into the unsubscribe box.


HOW TO SUBSCRIBE:
Visit www.insanepictures.com and enter your email address into the subscribe 
box.


HOW TO CHANGE YOUR EMAIL ADDRESS:
First unsubscribe, then subscribe with your new email address, using the 
instructions above.


HOW TO CONTACT US:
If you would like to send us a comment, ask a question, submit a picture or 
joke, or are interested in advertising, you can email us at [EMAIL PROTECTED]


Regards,
InsanePictures.com



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Error in document

2004-12-12 Thread pier . fumagalli
Your important document, correction is finished!


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

[ANN] Apache Jakarta Tomcat 5.5.6-alpha Released

2004-12-12 Thread Yoav Shapira
The Apache Jakarta Tomcat team is proud to announce the immediate availability
of Tomcat 5.5.6-alpha. This build contains numerous bug fixes, documentation
updates, and other improvements. 

Release notes: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES 

Please refer to the change log for the list of changes:
http://jakarta.apache.org/tomcat/tomcat-5.5-doc/changelog.html 

Downloads: Binaries: http://jakarta.apache.org/site/binindex.cgi#tomcat-5.5 
Sources: http://jakarta.apache.org/site/sourceindex.cgi#tomcat-5.5 

The Apache Jakarta Tomcat Team


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Improving jk_uri_worker_map in mod_jk

2004-12-12 Thread Mladen Turk
Rainer Jung wrote:
Hi,
while trying to improve parts of the mod_jk documentation I made some
observations concerning mod_jk's jk/native/common/jk_uri_worker_map.c I
wanted to discuss. I'm willing to provide patches but wanted to get some
opinions first.
Major matching algorithm is longest context match or longest
suffix match. All others are considered as helpers, and are there
to do 'quick tests'. I agree that pattern and even possible future
regex matching has performance penalties, but those are not for
production support.
If one wishes to fine tune performance of mod_jk uri mappings it has
to get it hands dirty and add all mappings manually using longest match
routines, or simply use auto generated mappings.
3) Further there is a decision needed, which matches should be done case
sensitive on Win32. At the moment matches are only done case insensitive
in the case, when a suffix match is needed and the suffix starts with a
'.'. Anything special about that case?
I agree, all win32 mappings should be case insensitive.
Mladen.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-12 Thread mturk
mturk   2004/12/12 07:14:59

  Modified:jk/native/apache-2.0 mod_jk.c
  Log:
  The stupid CRLF's are constantly emerging. Remove them.
  
  Revision  ChangesPath
  1.108 +9 -9  jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c
  
  Index: mod_jk.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c,v
  retrieving revision 1.107
  retrieving revision 1.108
  diff -u -r1.107 -r1.108
  --- mod_jk.c  7 Dec 2004 13:46:55 -   1.107
  +++ mod_jk.c  12 Dec 2004 15:14:59 -  1.108
  @@ -717,7 +717,7 @@
 jk_module);
   const char *c, *w;
   
  -if (worker != NULL  cmd-path == NULL ) {

  +if (worker != NULL  cmd-path == NULL ) {
   c = context;
   w = worker;
   }
  @@ -726,9 +726,9 @@
   w = context;
   }
   else {
  -if (worker == NULL)

  -return JkMount needs a path when not defined in a location;

  -else 

  +if (worker == NULL)
  +return JkMount needs a path when not defined in a location;
  +else 
   return JkMount can not have a path when defined in a location;
   }
   
  @@ -760,7 +760,7 @@
   char *uri;
   const char *c, *w;
   
  -if (worker != NULL  cmd-path == NULL ) {

  +if (worker != NULL  cmd-path == NULL ) {
   c = context;
   w = worker;
   }
  @@ -769,9 +769,9 @@
   w = context;
   }
   else {
  -if (worker == NULL)

  -return JkUnMount needs a path when not defined in a location;

  -else 

  +if (worker == NULL)
  +return JkUnMount needs a path when not defined in a location;
  +else 
   return JkUnMount can not have a path when defined in a 
location;
   }
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/common jk_logger.h

2004-12-12 Thread mturk
mturk   2004/12/12 07:34:08

  Modified:jk/native/common jk_logger.h
  Log:
  Fix typo.
  
  Revision  ChangesPath
  1.19  +2 -2  jakarta-tomcat-connectors/jk/native/common/jk_logger.h
  
  Index: jk_logger.h
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_logger.h,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- jk_logger.h   1 Dec 2004 07:27:09 -   1.18
  +++ jk_logger.h   12 Dec 2004 15:34:08 -  1.19
  @@ -59,7 +59,7 @@
   #define JK_LOG_EMERG_LEVEL   5
   #define JK_LOG_REQUEST_LEVEL 6
   
  -#define JK_LOG_TRACE_WERB   trace
  +#define JK_LOG_TRACE_VERB   trace
   #define JK_LOG_DEBUG_VERB   debug
   #define JK_LOG_INFO_VERBinfo
   #define JK_LOG_WARNING_VERB warn
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32659] New: - Thread issue on Tomcat

2004-12-12 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=32659.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32659

   Summary: Thread issue on Tomcat
   Product: Tomcat 5
   Version: 5.5.2
  Platform: Sun
OS/Version: SunOS
Status: NEW
  Severity: blocker
  Priority: P1
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]


Hello,

We are having an issue in production on Tomcat 5.0.28 on Sun OS 5.8.

The number of Threads keeps increasing till a point when there is hardly any 
free memory left.Eventually, we get OutOfMemory Exception. I have a webapp 
that queries a local and a remote database. I have noticed that some queries 
do timeout sometimes.

Any help would be greatly appreciated.

Thanks,

Sameer

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32547] - Tag Within Tag Generate Incorrect .java File

2004-12-12 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=32547.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32547





--- Additional Comments From [EMAIL PROTECTED]  2004-12-13 04:24 ---
I found out the real cause for this error.  It seems that if a tag that exports
a variable is nested inside itself, and this is all nested inside a tag
implemented as a tag file, then the incorrect java source is generated.

For instance, this will cause incorrect java source to be generated:

tags:myTagFile
 x:tagThatExportsVariable
   x:tagThatExportsVariable
   ...
   /x:tagThatExportsVariable
 /x:tagThatExportsVariable
/tags:myTagFile

Remove tags:myTagFile and it will work.

Is this a bug in Jasper?  I think it should be supported.  If not, a more useful
error message should be generated.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp_common.c

2004-12-12 Thread mturk
mturk   2004/12/12 23:39:51

  Modified:jk/native/common jk_ajp_common.c
  Log:
  Fix the bug initializing ajp. The worker will not initialize if cache_size
  was set to zero.
  
  Revision  ChangesPath
  1.66  +7 -6  
jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c
  
  Index: jk_ajp_common.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- jk_ajp_common.c   26 Nov 2004 16:59:51 -  1.65
  +++ jk_ajp_common.c   13 Dec 2004 07:39:51 -  1.66
  @@ -1666,7 +1666,7 @@
jk_map_t *props, jk_worker_env_t *we, jk_logger_t *l, int proto)
   {
   int cache;
  -
  +int rc = JK_FALSE;
   /*
* start the connection cache
*/
  @@ -1682,7 +1682,7 @@
   jk_log(l, JK_LOG_ERROR,
  unknown protocol %d\n, proto);
   JK_TRACE_EXIT(l);
  -return JK_FALSE;
  +return rc;
   }
   
   if (pThis  pThis-worker_private) {
  @@ -1782,19 +1782,20 @@
   p-ep_cache[i] = NULL;
   }
   JK_INIT_CS((p-cs), i);
  -if (i) {
  +if (i == JK_FALSE) {
   JK_TRACE_EXIT(l);
  -return JK_TRUE;
  +return JK_FALSE;
   }
   }
   }
  +rc = JK_TRUE;
   }
   else {
   JK_LOG_NULL_PARAMS(l);
   }
   
   JK_TRACE_EXIT(l);
  -return JK_FALSE;
  +return rc;
   }
   
   int ajp_destroy(jk_worker_t **pThis, jk_logger_t *l, int proto)
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/common jk_uri_worker_map.c

2004-12-12 Thread mturk
mturk   2004/12/12 23:41:07

  Modified:jk/native/common jk_uri_worker_map.c
  Log:
  Use case insensitive mapping for WIN32, cause Admin equals admin on
  windows. Also force nomatces before any other mappings.
  
  Revision  ChangesPath
  1.36  +138 -62   
jakarta-tomcat-connectors/jk/native/common/jk_uri_worker_map.c
  
  Index: jk_uri_worker_map.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_uri_worker_map.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- jk_uri_worker_map.c   7 Dec 2004 14:30:23 -   1.35
  +++ jk_uri_worker_map.c   13 Dec 2004 07:41:07 -  1.36
  @@ -42,6 +42,14 @@
   /* match multiple wild characters (*) and (?) */
   #define MATCH_TYPE_WILDCHAR_PATH (5)
   
  +#ifdef WIN32
  +#define JK_STRCMP   strcasecmp
  +#define JK_STRNCMP  strnicmp
  +#else
  +#define JK_STRCMP   strcmp
  +#define JK_STRNCMP  strncmp
  +#endif
  +
   struct uri_worker_record
   {
   /* Original uri for logging */
  @@ -81,10 +89,13 @@
   uri_worker_record_t **maps;
   
   /* Map Number */
  -unsigned size;
  +unsigned int size;
   
   /* Map Capacity */
  -unsigned capacity;
  +unsigned int capacity;
  +
  +/* NoMap Number */
  +unsigned int no_size;
   };
   
   static int worker_compare(const void *elem1, const void *elem2)
  @@ -165,8 +176,8 @@
   if ((('.' == *after_suffix) || ('/' == *after_suffix)
|| (' ' == *after_suffix))
(0 ==
  -strncmp(uw_map-maps[i]-context, uri,
  -uw_map-maps[i]-ctxt_len))) {
  +JK_STRNCMP(uw_map-maps[i]-context, uri,
  +   uw_map-maps[i]-ctxt_len))) {
   /* 
* Security violation !!!
* this is a fraud.
  @@ -421,7 +432,10 @@
   
   uw_map-maps[uw_map-size] = uwr;
   uw_map-size++;
  -
  +if (uwr-no_match) {
  +/* If we split the mappings this one will be calculated */
  +uw_map-no_size++;
  +}
   worker_qsort(uw_map);
   JK_TRACE_EXIT(l);
   return JK_TRUE;
  @@ -543,6 +557,108 @@
   *d = '\0';
   }
   
  +static int is_nomap_match(jk_uri_worker_map_t *uw_map,
  +  const char *uri, jk_logger_t *l)
  +{
  +unsigned int i;
  +
  +JK_TRACE_ENTER(l);
  +
  +for (i = 0; i  uw_map-size; i++) {
  +uri_worker_record_t *uwr = uw_map-maps[i];
  +
  +/* Check only nomatch mappings */
  +if (!uwr-no_match)
  +continue;
  +
  +if (uwr-match_type == MATCH_TYPE_WILDCHAR_PATH) {
  +char *wname;
  +/* Map is already sorted by ctxt_len */
  +if (wildchar_match(uri, uwr-context,
  +#ifdef WIN32
  +   1
  +#else
  +   0
  +#endif
  +   ) == 0) {
  +wname = uwr-worker_name;
  +jk_log(l, JK_LOG_DEBUG,
  +   Found a wildchar no match %s - %s\n,
  +   uwr-worker_name, uwr-context);
  +JK_TRACE_EXIT(l);
  +return JK_TRUE;
  + }
  +}
  +else if (JK_STRNCMP(uwr-context, uri, uwr-ctxt_len) == 0) {
  +if (uwr-match_type == MATCH_TYPE_EXACT) {
  +if (strlen(uri) == uwr-ctxt_len) {
  +jk_log(l, JK_LOG_DEBUG,
  +   Found an exact no match %s - %s\n,
  +uwr-worker_name, uwr-context);
  +JK_TRACE_EXIT(l);
  +return JK_TRUE;
  +}
  +}
  +else if (uwr-match_type == MATCH_TYPE_CONTEXT) {
  +jk_log(l, JK_LOG_DEBUG,
  +   Found a context no match %s - %s\n,
  +   uwr-worker_name, uwr-context);
  +JK_TRACE_EXIT(l);
  +return JK_TRUE;
  +}
  +else if (uwr-match_type == MATCH_TYPE_GENERAL_SUFFIX) {
  +int suffix_start = last_index_of(uri, uwr-suffix[0]);
  +if (suffix_start = 0
  + 0 == JK_STRCMP(uri + suffix_start, uwr-suffix)) {
  +jk_log(l, JK_LOG_DEBUG,
  +   Found a general no suffix match for %s - 
%s\n,
  +   uwr-worker_name, uwr-uri);
  +JK_TRACE_EXIT(l);
  +return JK_TRUE;
  +}
  +}
  +else if (uwr-match_type == MATCH_TYPE_CONTEXT_PATH) {
  +char *suffix_path = NULL;
  +if (strlen(uri)  1

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_util.c

2004-12-12 Thread mturk
mturk   2004/12/12 23:51:28

  Modified:jk/native/common jk_util.c
  Log:
  Rename balanced_workers directive to balance_workers keeping old
  one for backward compatibility.
  Norm says that this makes more sense from English grammar point of view.
  
  Revision  ChangesPath
  1.49  +11 -1 jakarta-tomcat-connectors/jk/native/common/jk_util.c
  
  Index: jk_util.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_util.c,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- jk_util.c 12 Dec 2004 15:35:50 -  1.48
  +++ jk_util.c 13 Dec 2004 07:51:28 -  1.49
  @@ -55,7 +55,9 @@
   #define SOCKET_KEEPALIVE_OF_WORKER  (socket_keepalive)
   #define RECYCLE_TIMEOUT_OF_WORKER   (recycle_timeout)
   #define LOAD_FACTOR_OF_WORKER   (lbfactor)
  +/* deprecated directive. Use balance_workers instead */
   #define BALANCED_WORKERS(balanced_workers)
  +#define BALANCE_WORKERS (balance_workers)
   #define STICKY_SESSION  (sticky_session)
   #define LOCAL_WORKER_ONLY_FLAG  (local_worker_only)
   #define LOCAL_WORKER_FLAG   (local_worker)
  @@ -679,6 +681,14 @@
   if (m  list  num_of_wokers  lb_wname) {
   char **ar = NULL;
   
  +sprintf(buf, %s.%s.%s, PREFIX_OF_WORKER, lb_wname,
  +BALANCE_WORKERS);
  +ar = jk_map_get_string_list(m, buf, num_of_wokers, NULL);
  +if (ar) {
  +*list = ar;
  +return JK_TRUE;
  +}
  +/* Try old balanced_workers directive */
   sprintf(buf, %s.%s.%s, PREFIX_OF_WORKER, lb_wname,
   BALANCED_WORKERS);
   ar = jk_map_get_string_list(m, buf, num_of_wokers, NULL);
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/common jk_util.c

2004-12-12 Thread mturk
mturk   2004/12/12 07:35:50

  Modified:jk/native/common jk_util.c
  Log:
  Add warn level checking. Also make emerge the same as error,
  having emerge as type of error. Use info as default log level.
  Thanks Rainer.
  
  Revision  ChangesPath
  1.48  +16 -8 jakarta-tomcat-connectors/jk/native/common/jk_util.c
  
  Index: jk_util.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_util.c,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- jk_util.c 7 Dec 2004 13:29:55 -   1.47
  +++ jk_util.c 12 Dec 2004 15:35:50 -  1.48
  @@ -91,7 +91,7 @@
   
   
   static const char *jk_level_werbs[] = {
  -[ JK_LOG_TRACE_WERB ] ,
  +[ JK_LOG_TRACE_VERB ] ,
   [ JK_LOG_DEBUG_VERB ] ,
   [ JK_LOG_INFO_VERB  ]  ,
   [ JK_LOG_WARNING_VERB  ]  ,
  @@ -172,23 +172,31 @@
   
   int jk_parse_log_level(const char *level)
   {
  +if (0 == strcasecmp(level, JK_LOG_TRACE_VERB)) {
  +return JK_LOG_TRACE_LEVEL;
  +}
  +
  +if (0 == strcasecmp(level, JK_LOG_DEBUG_VERB)) {
  +return JK_LOG_DEBUG_LEVEL;
  +}
  +
   if (0 == strcasecmp(level, JK_LOG_INFO_VERB)) {
   return JK_LOG_INFO_LEVEL;
   }
   
  +if (0 == strcasecmp(level, JK_LOG_WARNING_VERB)) {
  +return JK_LOG_WARNING_LEVEL;
  +}
  +
   if (0 == strcasecmp(level, JK_LOG_ERROR_VERB)) {
   return JK_LOG_ERROR_LEVEL;
   }
   
   if (0 == strcasecmp(level, JK_LOG_EMERG_VERB)) {
  -return JK_LOG_EMERG_LEVEL;
  -}
  -
  -if (0 == strcasecmp(level, JK_LOG_DEBUG_VERB)) {
  -return JK_LOG_DEBUG_LEVEL;
  +return JK_LOG_ERROR_LEVEL;
   }
   
  -return JK_LOG_TRACE_LEVEL;
  +return JK_LOG_INFO_LEVEL;
   }
   
   int jk_open_file_logger(jk_logger_t **l, const char *file, int level)
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


DO NOT REPLY [Bug 32659] - Thread issue on Tomcat

2004-12-12 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=32659.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32659


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID
Version|5.5.2   |5.0.28




--- Additional Comments From [EMAIL PROTECTED]  2004-12-12 21:16 ---
Bugzilla is not a support forum. Please ask questions like this on the tomcat-
user mailing list.

If that discussions leads to the conclusion that there is a bug in tomcat, 
feel free to re-open this bug.

Also correcting the version based on the text of the report.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


cvs commit: jakarta-tomcat-site/docs/faq/printer memory.html

2004-12-12 Thread funkman
funkman 2004/12/12 15:02:41

  Modified:xdocs-faq memory.xml
   docs/faq memory.html
   docs/faq/printer memory.html
  Log:
  Add tidbit about MaxPermSize
  
  Revision  ChangesPath
  1.5   +6 -1  jakarta-tomcat-site/xdocs-faq/memory.xml
  
  Index: memory.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-site/xdocs-faq/memory.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- memory.xml19 Dec 2003 17:23:59 -  1.4
  +++ memory.xml12 Dec 2004 23:02:41 -  1.5
  @@ -69,7 +69,7 @@
   You may wish to tune the JSP compiler configuration to prevent
   memory leaks.  Of course, these are documents you should have
   read by now anyways..
  -  /p  
  +  /p
 /subsection
   
   /section
  @@ -127,6 +127,11 @@
 of threads which may be executed by a single process. (Which is 
what the
 JVM is.) Refer to your OS docs for more information on how to 
raise this
 threshold.
  +  /li
  +  li
  +If you have a lot of servlets or JSP's, you may need to increase your
  +permanent generation. By default, it is 64MB.
  +Doubling it to be code-XX:MaxPermSize=256m/code might be a good 
start.
 /li
 liYour OS limits the amount of memory your process may take. OK, this
 one is grasping at straws.
  
  
  
  1.11  +163 -158  jakarta-tomcat-site/docs/faq/memory.html
  
  Index: memory.html
  ===
  RCS file: /home/cvs/jakarta-tomcat-site/docs/faq/memory.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- memory.html   10 Nov 2004 17:52:15 -  1.10
  +++ memory.html   12 Dec 2004 23:02:41 -  1.11
  @@ -1,159 +1,164 @@
  -htmlheadMETA http-equiv=Content-Type content=text/html; 
charset=iso-8859-1titleTomcat FAQ - Memory/titlemeta value=Tim Funk 
name=authormeta value=[EMAIL PROTECTED] name=emailstyle
  -  dt { font-size : larger;  font-weight : bold }
  -  dd {padding-bottom : 10px;}
  -/style/headbody vlink=#525D76 alink=#525D76 link=#525D76 
text=#00 bgcolor=#fftable cellspacing=4 width=100% 
border=0!--PAGE HEADER--trtd colspan=2!--JAKARTA LOGO--a 
href=http://jakarta.apache.org/;img border=0 alt=The Jakarta Project 
align=left 
src=http://jakarta.apache.org//images/jakarta-logo.gif;/a!--PROJECT 
LOGO--a href=http://jakarta.apache.org/tomcat/;img border=0 alt=
  -  Tomcat FAQ
  - align=right src=../images/tomcat.gif/a/td/tr!--HEADER 
SEPARATOR--trtd colspan=2hr size=1 noshade=/td/trtr!--LEFT 
SIDE NAVIGATION--td nowrap=true valign=top 
width=20%pstrongLinks/strong/pullia href=..Tomcat 
Home/a/lilia href=index.htmlFAQ 
Home/a/li/ulpstrongContents/strong/pullia 
href=bugs.htmlBugs/a/lilia href=classnotfound.htmlClass Not 
Found/a/lilia href=connectors.htmlConnectors/a/lilia 
href=database.htmlDatabase/a/lilia 
href=deployment.htmlDeployment/a/lilia href=fda-validation.htmlFDA 
Validation/a/lilia 
href=http://wiki.apache.org/jakarta-tomcat/HowTo;How do I/a/lilia 
href=unix.htmlLinux / Unix/a/lilia 
href=otherOperatingSystems.htmlOther Operating Systems/a/lilia 
href=logging.htmlLogging/a/lilia 
href=memory.htmlMemory/a/lilia href=meta.htmlMeta/a/lilia 
href=misc.htmlMiscellaneous/a/lilia 
href=performance.htmlMonitoring / Performance/a/lilia 
href=http://wiki.apache.org/jakarta-tomcat/UsefulLinks;Other 
Resources/a/lilia href=security.htmlSecurity/a/lilia 
href=version.htmlWhich Version/a/lilia href=tomcatuser.htmlTomcat 
User List/a/lilia 
href=http://wiki.apache.org/jakarta-tomcat/;Wiki/a/lilia 
href=windows.htmlWindows/a/li/ul/td!--RIGHT SIDE MAIN BODY--td 
align=left valign=top width=80%table cellspacing=4 width=100% 
border=0trtd nowrap=true valign=top align=lefth1Tomcat 
FAQ/h1h2Memory/h2/tdtd nowrap=true valign=top 
align=rightsmalla href=printer/memory.htmlimg alt=Printer Friendly 
Version border=0 src=../images/printer.gifbrprint-friendlybrversion
  -/a/small/td/tr/tabletable cellpadding=2 
cellspacing=0 border=0trtd bgcolor=#525D76font 
face=arial,helvetica.sanserif color=#ffa 
name=PrefacestrongPreface/strong/a/font/td/trtrtdblockquote
  -  p
  -This page discusses various memory issues. In a nutshell - if your
  -computer has less than 128MB of ram - you will probably have trouble.
  -Anyhow, also read the following threads for other memory related issues:
  -ul
  -  li
  -a href=http://marc.theaimsgroup.com/?t=10438897306r=1w=2;
  -  java.lang.OutOfMemoryError during deploy
  -/a
  -  /li
  -
  -  li
  -a href=http://marc.theaimsgroup.com/?t=10437834777r=1w=2;
  -  Memory requirements
  -/a
  -  /li
  -
  -  li
  -a 

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp_common.c

2004-12-12 Thread newsletter
This is an automated message that will hopefully answer any questions you might 
have:


HOW TO UNSUBSCRIBE:
Visit www.insanepictures.com/unsubscribe.shtml and enter your email address 
into the unsubscribe box.


HOW TO SUBSCRIBE:
Visit www.insanepictures.com and enter your email address into the subscribe 
box.


HOW TO CHANGE YOUR EMAIL ADDRESS:
First unsubscribe, then subscribe with your new email address, using the 
instructions above.


HOW TO CONTACT US:
If you would like to send us a comment, ask a question, submit a picture or 
joke, or are interested in advertising, you can email us at [EMAIL PROTECTED]


Regards,
InsanePictures.com



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]