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

2005-02-22 Thread mturk
mturk   2005/02/22 00:25:29

  Modified:jk/native/common jk_lb_worker.c
  Log:
  Set found worker to NULL when iterating over multiple session id's.
  
  Revision  ChangesPath
  1.68  +2 -1  jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c
  
  Index: jk_lb_worker.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -u -r1.67 -r1.68
  --- jk_lb_worker.c22 Feb 2005 07:26:55 -  1.67
  +++ jk_lb_worker.c22 Feb 2005 08:25:29 -  1.68
  @@ -482,6 +482,7 @@
   }
   /* Try next partial sessionid if present */
   sessionid = next;
  +rc = NULL;
   }
   if (!rc  p-s-sticky_session_force) {
  JK_LEAVE_CS((p-cs), r);
  
  
  

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



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

2005-02-22 Thread mturk
mturk   2005/02/22 00:30:46

  Modified:jk/native/common jk_lb_worker.c
  Log:
  Remove unused code. No functional change.
  
  Revision  ChangesPath
  1.69  +1 -6  jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c
  
  Index: jk_lb_worker.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- jk_lb_worker.c22 Feb 2005 08:25:29 -  1.68
  +++ jk_lb_worker.c22 Feb 2005 08:30:46 -  1.69
  @@ -537,12 +537,7 @@
   int service_ok = JK_FALSE;
   jk_endpoint_t *end = NULL;
   
  -/* XXX: No need to strdup here ? */
  -#if 0
  -s-jvm_route = jk_pool_strdup(s-pool, rec-r);
  -#else
   s-jvm_route = rec-r;
  -#endif
   rc = rec-w-get_endpoint(rec-w, end, l);
   
   if (JK_IS_DEBUG_LEVEL(l))
  
  
  

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



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

2005-02-22 Thread mturk
mturk   2005/02/22 00:42:45

  Modified:jk/native/common jk_lb_worker.c jk_lb_worker.h jk_util.c
jk_util.h
  Log:
  Move recover_time to jk_util.c to be consistent with how other
  properties are handled. No functional change.
  
  Revision  ChangesPath
  1.70  +3 -8  jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c
  
  Index: jk_lb_worker.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- jk_lb_worker.c22 Feb 2005 08:30:46 -  1.69
  +++ jk_lb_worker.c22 Feb 2005 08:42:45 -  1.70
  @@ -39,9 +39,6 @@
   /* 
* Time to wait before retry...
*/
  -#define WAIT_BEFORE_RECOVER (60*1)
  -#define WORKER_RECOVER_TIME (recover_time)
  -
   #define JK_WORKER_IN_ERROR(w) ((w)-in_error_state  !(w)-is_disabled  
!(w)-is_busy)
   #define JK_WORKER_USABLE(w)   (!(w)-in_error_state  !(w)-is_disabled  
!(w)-is_busy)
   
  @@ -783,10 +780,8 @@
   pThis-retries = jk_get_worker_retries(props, p-s-name,
  JK_RETRIES);
   p-s-retries = pThis-retries;
  -if (jk_get_worker_int_prop(props, p-s-name,
  -   WORKER_RECOVER_TIME,
  -   i))
  -p-s-recover_wait_time = i;
  +p-s-recover_wait_time = jk_get_worker_recover_timeout(props, 
p-s-name,
  +
WAIT_BEFORE_RECOVER);
   if (p-s-recover_wait_time  WAIT_BEFORE_RECOVER)
   p-s-recover_wait_time = WAIT_BEFORE_RECOVER;
   
  
  
  
  1.14  +2 -1  jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.h
  
  Index: jk_lb_worker.h
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- jk_lb_worker.h17 Feb 2005 07:16:32 -  1.13
  +++ jk_lb_worker.h22 Feb 2005 08:42:45 -  1.14
  @@ -41,6 +41,7 @@
   #define JK_LB_BYTRAFFIC   (1)
   #define JK_LB_METHOD_REQUESTS (request)
   #define JK_LB_METHODTRAFFIC   (traffic)
  +#define WAIT_BEFORE_RECOVER   (60)
   
   struct worker_record
   {
  
  
  
  1.61  +17 -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.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- jk_util.c 17 Feb 2005 07:07:50 -  1.60
  +++ jk_util.c 22 Feb 2005 08:42:45 -  1.61
  @@ -67,6 +67,8 @@
   #define MOUNT_OF_WORKER (mount)
   #define METHOD_OF_WORKER(method)
   #define IS_WORKER_DISABLED  (disabled)
  +#define WORKER_RECOVER_TIME (recover_time)
  +
   
   #define DEFAULT_WORKER_TYPE JK_AJP13_WORKER_NAME
   #define SECRET_KEY_OF_WORKER(secretkey)
  @@ -496,6 +498,20 @@
   return jk_map_get_int(m, buf, def);
   }
   
  +int jk_get_worker_recover_timeout(jk_map_t *m, const char *wname, int def)
  +{
  +char buf[1024];
  +
  +if (!m || !wname) {
  +return -1;
  +}
  +
  +sprintf(buf, %s.%s.%s, PREFIX_OF_WORKER, wname,
  +WORKER_RECOVER_TIME);
  +
  +return jk_map_get_int(m, buf, def);
  +}
  +
   int jk_get_worker_socket_buffer(jk_map_t *m, const char *wname, int def)
   {
   char buf[1024];
  
  
  
  1.30  +3 -1  jakarta-tomcat-connectors/jk/native/common/jk_util.h
  
  Index: jk_util.h
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_util.h,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- jk_util.h 19 Feb 2005 10:54:49 -  1.29
  +++ jk_util.h 22 Feb 2005 08:42:45 -  1.30
  @@ -72,6 +72,8 @@
   
   int jk_get_worker_recycle_timeout(jk_map_t *m, const char *wname, int def);
   
  +int jk_get_worker_recover_timeout(jk_map_t *m, const char *wname, int def);
  +
   const char *jk_get_worker_domain(jk_map_t *m, const char *wname, const char 
*def);
   
   const char *jk_get_worker_redirect(jk_map_t *m, const char *wname, const 
char *def);
  
  
  

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



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

2005-02-22 Thread mturk
mturk   2005/02/22 00:59:57

  Modified:jk/native/common jk_lb_worker.c
  Log:
  Update code style to be consistent. No functional change.
  
  Revision  ChangesPath
  1.71  +3 -6  jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c
  
  Index: jk_lb_worker.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c,v
  retrieving revision 1.70
  retrieving revision 1.71
  diff -u -r1.70 -r1.71
  --- jk_lb_worker.c22 Feb 2005 08:42:45 -  1.70
  +++ jk_lb_worker.c22 Feb 2005 08:59:57 -  1.71
  @@ -52,14 +52,13 @@
   typedef struct lb_endpoint lb_endpoint_t;
   
   
  -/* = 
*/
   /* Retrieve the parameter with the given name
*/
   static char *get_path_param(jk_ws_service_t *s, const char *name)
   {
   char *id_start = NULL;
   for (id_start = strstr(s-req_uri, name);
id_start; id_start = strstr(id_start + 1, name)) {
  -if ('=' == id_start[strlen(name)]) {
  +if (id_start[strlen(name)] == '=') {
   /*
* Session path-cookie was found, get it's value
*/
  @@ -89,7 +88,6 @@
   return NULL;
   }
   
  -/* = 
*/
   /* Retrieve the cookie with the given name   
*/
   static char *get_cookie(jk_ws_service_t *s, const char *name)
   {
  @@ -97,7 +95,7 @@
   char *result = NULL;
   
   for (i = 0; i  s-num_headers; i++) {
  -if (0 == strcasecmp(s-headers_names[i], cookie)) {
  +if (strcasecmp(s-headers_names[i], cookie) == 0) {
   
   char *id_start;
   for (id_start = strstr(s-headers_values[i], name);
  @@ -142,7 +140,6 @@
   }
   
   
  -/* = 
*/
   /* Retrieve session id from the cookie or the parameter  
*/
   /* (parameter first) 
*/
   static char *get_sessionid(jk_ws_service_t *s)
  
  
  

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



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

2005-02-22 Thread mturk
mturk   2005/02/22 01:40:12

  Modified:jk/native/common jk_status.c
  Log:
  Be more dtd conformant. Patch provided by Peter Rossbach.
  
  Revision  ChangesPath
  1.24  +58 -48jakarta-tomcat-connectors/jk/native/common/jk_status.c
  
  Index: jk_status.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_status.c,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- jk_status.c   21 Feb 2005 16:40:45 -  1.23
  +++ jk_status.c   22 Feb 2005 09:40:12 -  1.24
  @@ -323,7 +323,7 @@
   {
   unsigned int i;
   
  -jk_puts(s, br /Uri Mappings:\n);
  +jk_puts(s, br/Uri Mappings:\n);
   jk_puts(s, table\ntrthMatch Type/ththUri/th
  thContext/ththSuffix/th/tr\n);
   for (i = 0; i  uwmap-size; i++) {
  @@ -336,7 +336,11 @@
   /tdtd, NULL);
   jk_puts(s, uwr-uri);
   jk_putv(s, /tdtd, uwr-context, NULL);
  -jk_putv(s, /tdtd, uwr-suffix, NULL);
  +if (uwr-suffix)
  +jk_putv(s, /tdtd, uwr-suffix, NULL);
  +else
  +jk_putv(s, /tdtd, nbsp;, NULL);
  +
   jk_puts(s, /td/tr\n);
   }
   jk_puts(s, /table\n);
  @@ -380,7 +384,7 @@
   /* Skip status, jni and ajp12 worker */
   continue;
   }
  -jk_puts(s, hr /\nh3Worker Status for );
  +jk_puts(s, hr/\nh3Worker Status for );
   if (dworker  strcmp(dworker, sw-we-worker_list[i]) == 0) {
   /* Next click will colapse the editor */
   jk_putv(s, a href=\, s-req_uri, ?cmd=show\, NULL);
  @@ -392,7 +396,7 @@
   if (lb != NULL) {
   unsigned int j;
   int selected = -1;
  -jk_puts(s, table border=\0\tr
  +jk_puts(s, tabletr
   thType/ththSticky session/th
   thForce Sticky session/th
   thRetries/th
  @@ -403,8 +407,8 @@
   jk_putv(s, td, status_val_bool(lb-s-sticky_session_force),
   /td, NULL);
   jk_printf(s, td%d/td, lb-s-retries);
  -jk_puts(s, /tr\n/table\n);
  -jk_puts(s, table border=\0\tr
  +jk_puts(s, /tr\n/table\nbr/\n);
  +jk_puts(s, tabletr
   thName/ththType/ththHost/ththAddr/th
   
thStat/ththF/ththV/ththAcc/ththErr/th
   
thWr/ththRd/ththBusy/ththRR/ththCd/th/tr\n);
  @@ -414,7 +418,7 @@
   jk_putv(s, tr\ntda href=\, s-req_uri,
   ?cmd=showw=,
   wr-s-name, \,
  -wr-s-name, /td, NULL);
  +wr-s-name, /a/td, NULL);
   if (dworker  strcmp(dworker, wr-s-name) == 0)
   selected = j;
   jk_putv(s, td, status_worker_type(wr-w-type), /td, 
NULL);
  @@ -437,76 +441,82 @@
   jk_putv(s, td, status_strfsize(wr-s-readed, buf),
   /td, NULL);
   jk_printf(s, td%u/tdtd, wr-s-busy);
  -jk_puts(s, wr-s-redirect);
  +if (wr-s-redirect  *wr-s-redirect)
  +jk_puts(s, wr-s-redirect);
  +else
  +jk_puts(s,nbsp;);
   jk_puts(s, /tdtd\n);
  -jk_puts(s, wr-s-domain);
  +if (wr-s-domain  *wr-s-domain)
  +jk_puts(s, wr-s-domain);
  +else
  +jk_puts(s,nbsp;);
   jk_puts(s, /td\n/tr\n);
   }
  -jk_puts(s, /tablebr /\n);
  +jk_puts(s, /tablebr/\n);
   if (selected = 0) {
   worker_record_t *wr = (lb-lb_workers[selected]);
  -jk_putv(s, hr /h3Edit worker settings for ,
  +jk_putv(s, hr/h3Edit worker settings for ,
   wr-s-name, /h3\n, NULL);
   jk_putv(s, form method=\GET\ action=\,
   s-req_uri, \\n, NULL);
  -jk_puts(s, table\ninput type=hidden name=\cmd\ );
  +jk_puts(s, table\ninput type=\hidden\ name=\cmd\ );
   jk_puts(s, value=\update\\n);
  -jk_puts(s, input type=hidden name=\w\ );
  +jk_puts(s, input type=\hidden\ name=\w\ );
   jk_putv(s, value=\, wr-s-name, \\n, NULL);
  -jk_puts(s, input type=hidden name=\id\ );
  +jk_puts(s, input type=\hidden\ name=\id\ );
   jk_printf(s, value=\%u\\n/table\n, selected);
  -jk_puts(s, input type=hidden name=\lb\ );
  +jk_puts(s, input type=\hidden\ name=\lb\ );
   jk_printf(s, value=\%u\\n/table\n, i);
   
  -jk_puts(s, table\ntrtdLoad 

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

2005-02-22 Thread mturk
mturk   2005/02/22 01:58:38

  Modified:jk/native/common jk_ajp_common.c
  Log:
  On END_RESPONSE mark service as readed.
  
  Revision  ChangesPath
  1.92  +4 -1  
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.91
  retrieving revision 1.92
  diff -u -r1.91 -r1.92
  --- jk_ajp_common.c   19 Feb 2005 09:13:35 -  1.91
  +++ jk_ajp_common.c   22 Feb 2005 09:58:38 -  1.92
  @@ -1527,6 +1527,9 @@
   
   /* no more data to be sent, fine we have finish here */
   if (JK_AJP13_END_RESPONSE == rc) {
  +/* XXX: Set all readed */
  +s-content_read = s-content_length;
  +s-no_more_chunks = 1;
   JK_TRACE_EXIT(l);
   return JK_TRUE;
   }
  
  
  

-
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

2005-02-22 Thread mturk
mturk   2005/02/22 02:27:38

  Modified:jk/native/common jk_ajp_common.c
  Log:
  Revert the latest patch. No help on close_wait.
  
  Revision  ChangesPath
  1.93  +1 -4  
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.92
  retrieving revision 1.93
  diff -u -r1.92 -r1.93
  --- jk_ajp_common.c   22 Feb 2005 09:58:38 -  1.92
  +++ jk_ajp_common.c   22 Feb 2005 10:27:37 -  1.93
  @@ -1527,9 +1527,6 @@
   
   /* no more data to be sent, fine we have finish here */
   if (JK_AJP13_END_RESPONSE == rc) {
  -/* XXX: Set all readed */
  -s-content_read = s-content_length;
  -s-no_more_chunks = 1;
   JK_TRACE_EXIT(l);
   return JK_TRUE;
   }
  
  
  

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



[GUMP@brutus]: Project jakarta-tomcat-jk-native (in module jakarta-tomcat-connectors) failed

2005-02-22 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project jakarta-tomcat-jk-native has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 31 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- jakarta-tomcat-jk-native :  Connectors to various web servers


Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-native/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason build failed



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-native/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-jk-native.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-jk-native (Type: 
Build)
Work ended in a state of : Failed
Elapsed: 
Command Line: make 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/jk/native]
-
Making all in common
make[1]: Entering directory 
`/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/native/common'
/bin/sh 
/usr/local/gump/public/workspace/apache-httpd/dest-22022005/build/libtool 
--silent --mode=compile gcc 
-I/usr/local/gump/public/workspace/apache-httpd/dest-22022005/include -g -O2 -g 
-O2 -pthread -DHAVE_APR 
-I/usr/local/gump/public/workspace/apr/dest-22022005/include/apr-1 -g -O2 
-DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE 
-I/home/gump/workspaces2/public/workspace/apache-httpd/srclib/pcre -I 
/opt/jdk1.4/include -I /opt/jdk1.4/include/ -c jk_ajp12_worker.c 
/usr/local/gump/public/workspace/apache-httpd/dest-22022005/build/libtool: 
/usr/local/gump/public/workspace/apache-httpd/dest-22022005/build/libtool: No 
such file or directory
make[1]: *** [jk_ajp12_worker.lo] Error 127
make[1]: Leaving directory 
`/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/native/common'
make: *** [all-recursive] Error 1
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-native/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-native/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 2022022005, brutus:brutus-public:2022022005
Gump E-mail Identifier (unique within run) #16.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



DO NOT REPLY [Bug 33688] New: - Same Filter - Different applications

2005-02-22 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=33688.
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=33688

   Summary: Same Filter - Different applications
   Product: Tomcat 4
   Version: 4.1.24
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: minor
  Priority: P2
 Component: Unknown
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


I have two different applications (A and B) running on Tomcat 4.1.24.
The applications' core is a servlet called Dispatcher.
A logging Filter is mapped to this servlet.

### in EACH web.xml: ###

!-- Filter for logging--
filter
  filter-nameLogFilter/filter-name
  filter-classlogger.LogFilter/filter-class
  !-- The path where to save the log files --
  init-param
param-nameLogPath/param-name
param-value/WEB-INF/logs/param-value
  /init-param
/filter

filter-mapping
  filter-nameLogFilter/filter-name
  servlet-nameDispatcher/servlet-name
/filter-mapping

!-- Dispatcher --
servlet
  servlet-nameDispatcher/servlet-name
  servlet-classit.mbm.servlet.Dispatcher/servlet-class
/servlet

servlet-mapping
  servlet-nameDispatcher/servlet-name
  url-pattern*.msp/url-pattern
/servlet-mapping



I thought that the filters'action was limited to the application context, 
instead each request to the application A is logged also by the filter of the 
application B

see also http://forum.java.sun.com/thread.jspa?threadID=519425 for a open 
discussion on this ...

-- 
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 33688] - Same Filter - Different applications

2005-02-22 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=33688.
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=33688





--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 15:30 ---
Where are the files for the filter and where is the logging implementation?

-- 
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/apache-2.0 mod_jk.c

2005-02-22 Thread mturk
mturk   2005/02/22 06:40:39

  Modified:jk/native/apache-1.3 mod_jk.c
   jk/native/apache-2.0 mod_jk.c
  Log:
  Use log warning if JkShmFile was not defined on non WIN32/NETWARE.
  
  Revision  ChangesPath
  1.73  +2 -2  jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c
  
  Index: mod_jk.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- mod_jk.c  21 Feb 2005 18:00:41 -  1.72
  +++ mod_jk.c  22 Feb 2005 14:40:36 -  1.73
  @@ -1985,7 +1985,7 @@
   else
   jk_log(conf-log, JK_LOG_ERROR, Initializing shm:%s errno=%d,
  jk_shm_name(), rc);
  -#if !defined (WIN32) || !defined(NETWARE)
  +#if !defined(WIN32)  !defined(NETWARE)
   if (!jk_shm_file)
   ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_NOERRNO, NULL,
No JkShmFile defined in httpd.conf. 
  
  
  
  1.130 +2 -2  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.129
  retrieving revision 1.130
  diff -u -r1.129 -r1.130
  --- mod_jk.c  21 Feb 2005 18:00:41 -  1.129
  +++ mod_jk.c  22 Feb 2005 14:40:37 -  1.130
  @@ -2348,7 +2348,7 @@
   else
   jk_log(conf-log, JK_LOG_ERROR, Initializing shm:%s errno=%d,
  jk_shm_name(), rc);
  -#if !defined (WIN32) || !defined(NETWARE)
  +#if !defined(WIN32)  !defined(NETWARE)
   if (!jk_shm_file)
   ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_NOERRNO,
0, NULL,
  
  
  

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



DO NOT REPLY [Bug 33688] - Same Filter - Different applications

2005-02-22 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=33688.
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=33688





--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 15:42 ---
 Where are the files for the filter 

If you mean the files where the filter writes the log infos, each application 
writes logs in the WEB-INF/logs directory under the application root:

  $TOMCAT_HOME/webapps/A/WEB-INF/logs/A_-MM-DD.txt

and 
  
  $TOMCAT_HOME/webapps/B/WEB-INF/logs/A_-MM-DD.txt


 and where is the logging implementation?

are you talking about the classes? If so, each application has got its own JAR 
inside the WEB-INF/lib directory under the application root..


-- 
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 33688] - Same Filter - Different applications

2005-02-22 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=33688.
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=33688





--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 15:58 ---
This report is too vague. Please use the tomcat user list to debug this and
provide a  sample configuration to reproduce the problem there. 

-- 
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]



Documentation bug about NetBeans IDE

2005-02-22 Thread Geertjan Wielenga
Hi all,
This page contains incorrect information about NetBeans IDE:
http://jakarta.apache.org/tomcat/faq/development.html#rd-netbeans
On behalf of NetBeans IDE, I have changes for this page.
Will someone contact me to discuss this?
Thanks,
Geertjan Wielenga
Technical Writer
NetBeans IDE
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Documentation bug about NetBeans IDE

2005-02-22 Thread Yoav Shapira
Hi,
Submit your changes as a Bugzilla enhancement issue please.

Yoav

 -Original Message-
 From: Geertjan Wielenga [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, February 22, 2005 10:15 AM
 To: tomcat-dev@jakarta.apache.org
 Subject: Documentation bug about NetBeans IDE
 
 Hi all,
 
 This page contains incorrect information about NetBeans IDE:
 
 http://jakarta.apache.org/tomcat/faq/development.html#rd-netbeans
 
 On behalf of NetBeans IDE, I have changes for this page.
 
 Will someone contact me to discuss this?
 
 Thanks,
 
 Geertjan Wielenga
 Technical Writer
 NetBeans IDE
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



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



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

2005-02-22 Thread mturk
mturk   2005/02/22 07:23:30

  Modified:jk/native/common jk_status.c
  Log:
  Revert some of recent dtd conformant fixes. The cheched is not an
  alue, but rather informs if the box is checked or not.
  
  Revision  ChangesPath
  1.25  +4 -4  jakarta-tomcat-connectors/jk/native/common/jk_status.c
  
  Index: jk_status.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_status.c,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- jk_status.c   22 Feb 2005 09:40:12 -  1.24
  +++ jk_status.c   22 Feb 2005 15:23:30 -  1.25
  @@ -478,7 +478,7 @@
   jk_puts(s, \//td/tr\n);
   jk_puts(s, trtdDisabled:/tdtdinput name=\wd\ 
type=\checkbox\);
   if (wr-s-is_disabled)
  -jk_puts(s,  value=\checked\);
  +jk_puts(s,  checked);
   jk_puts(s, //td/tr\n);
   jk_puts(s, /td/tr\n/table\n);
   jk_puts(s, br/input type=\submit\ value=\Update 
Worker\/\n/form\n);
  @@ -503,11 +503,11 @@
   jk_printf(s, value=\%d\//td/tr\n, 
lb-s-recover_wait_time);
   jk_puts(s, trtdSticky session:/tdtdinput 
name=\ls\ type=\checkbox\);
   if (lb-s-sticky_session)
  -jk_puts(s,  value=\checked\);
  +jk_puts(s,  checked);
   jk_puts(s, //td/tr\n);
   jk_puts(s, trtdForce Sticky session:/tdtdinput 
name=\lf\ type=\checkbox\);
   if (lb-s-sticky_session_force)
  -jk_puts(s,  value=\checked\);
  +jk_puts(s,  checked);
   jk_puts(s, //td/tr\n);
   jk_puts(s, /table\n);
   
  
  
  

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



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

2005-02-22 Thread mturk
mturk   2005/02/22 07:38:12

  Modified:jk/native/common jk_status.c
  Log:
  Set checkboxes acording to XHTML specification.
  
  Revision  ChangesPath
  1.26  +4 -4  jakarta-tomcat-connectors/jk/native/common/jk_status.c
  
  Index: jk_status.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_status.c,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- jk_status.c   22 Feb 2005 15:23:30 -  1.25
  +++ jk_status.c   22 Feb 2005 15:38:12 -  1.26
  @@ -478,7 +478,7 @@
   jk_puts(s, \//td/tr\n);
   jk_puts(s, trtdDisabled:/tdtdinput name=\wd\ 
type=\checkbox\);
   if (wr-s-is_disabled)
  -jk_puts(s,  checked);
  +jk_puts(s,   checked=\checked\);
   jk_puts(s, //td/tr\n);
   jk_puts(s, /td/tr\n/table\n);
   jk_puts(s, br/input type=\submit\ value=\Update 
Worker\/\n/form\n);
  @@ -503,11 +503,11 @@
   jk_printf(s, value=\%d\//td/tr\n, 
lb-s-recover_wait_time);
   jk_puts(s, trtdSticky session:/tdtdinput 
name=\ls\ type=\checkbox\);
   if (lb-s-sticky_session)
  -jk_puts(s,  checked);
  +jk_puts(s,  checked=\checked\);
   jk_puts(s, //td/tr\n);
   jk_puts(s, trtdForce Sticky session:/tdtdinput 
name=\lf\ type=\checkbox\);
   if (lb-s-sticky_session_force)
  -jk_puts(s,  checked);
  +jk_puts(s,  checked=\checked\);
   jk_puts(s, //td/tr\n);
   jk_puts(s, /table\n);
   
  
  
  

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



DO NOT REPLY [Bug 33692] New: - Update for: How do I remotely debug Tomcat using NetBeans?

2005-02-22 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=33692.
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=33692

   Summary: Update for: How do I remotely debug Tomcat using
NetBeans?
   Product: Tomcat 5
   Version: Unknown
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: normal
  Priority: P2
 Component: Webapps:Documentation
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


This page is out of date for NetBeans IDE:
http://jakarta.apache.org/tomcat/faq/development.html#rd-netbeans

The question should be: How do I remotely debug Tomcat using NetBeans IDE?

This is what the answer should be for How do I remotely debug Tomcat using
NetBeans IDE?:

This answer assumes that you have correctly set up a NetBeans IDE project and
that you know how to use its debugger. If not, please go to
http://www.netbeans.org/kb/using-netbeans/40/debug.html and read up on how to
use NetBeans IDE and its debugger.

Make sure that Tomcat is started, that your application is deployed, and that
the sources are all defined as resources in your application. If you have a
servlet or JSP file, set a breakpoint where its sure to hit on the next request.
Go to Run-Attach Debugger. A dialog pops up to let you specify the following
options:

* Debugger: JPDA Debugger
* Connector: SocketAttach
* Host: The IP address of the host your Tomcat installation is running on
(127.0.0.1 if it is your local machine).
* Port: The port of your Tomcat debugging interface, which should be 8000 if
you've followed the instructions above.

When you press OK, you have a debugging connection very similar to local 
debugging.

Note that NetBeans IDE has a second option -- you can debug JSP files and
servlets locally using a Tomcat server that is bundled with the IDE. The bundled
Tomcat server can be started in debug mode (its default port number is 11555)
and you can open a remote connection to it from NetBeans IDE as described above.

-- 
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 33694] New: - Tomcat start fails

2005-02-22 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=33694.
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=33694

   Summary: Tomcat start fails
   Product: Tomcat 5
   Version: 5.0.28
  Platform: Sun
OS/Version: Solaris
Status: NEW
  Severity: critical
  Priority: P1
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]


We have noticed that sometimes a Tomcat 5.0.28 instance would not start up 
properly upon restart. Unfortunately, this condition did not happen on all 
instances that we tested Tomcat 5.0.28. Also, it appears that it happens when 
samples are installed and you are starting for the first time. The symptom of 
a failed start would be a blank page in the browser when you try access any 
webapp (including the admin or manager webapps) and a message like this in 
catalina.out in CATALINA_BASE/logs directory.

- Error registering contexts
java.util.ConcurrentModificationException
 at java.util.HashMap$HashIterator.nextEntry(HashMap.java:782)
 at java.util.HashMap$EntryIterator.next(HashMap.java:824)
 at java.util.HashMap.putAllForCreate(HashMap.java:424)
 at java.util.HashMap.clone(HashMap.java:656)
 at mx4j.server.DefaultMBeanRepository.clone
(DefaultMBeanRepository.java: 
56)
 at mx4j.server.MBeanServerImpl.findMBeansByPattern
(MBeanServerImpl.java: 
1603)
 at mx4j.server.MBeanServerImpl.queryObjectNames
(MBeanServerImpl.java:1568)
...

Others who reported similar problems have resolved it by using a latest copy 
of jmxi.jar (http://java.sun.com/products/JavaManagement/download.html) from 
Sun and over-writing the jmx.jar file located in CATALINA_HOME/bin. We have 
not been able to verify if this is correct.

-- 
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 24970] - charset appended to content-type even if not text/*

2005-02-22 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=24970.
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=24970





--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 17:25 ---
(In reply to comment #25)
 OK, I read the JavaServer Pages Specification and it's clear that JSPs are
 servlets only designed to send TEXT data.

I agree that one should not send pdf with a JSP. But how about
text/vnd.rn-realtext. Of course it is silly that Real-Player chokes in the
charset, but well, it does.

So I woudl really like to have some possibility to dynamically create .rt files,
in which realplayer does not choke.

Michiel
 

-- 
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 33688] - Same Filter - Different applications

2005-02-22 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=33688.
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=33688


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 17:36 ---
Ok.
Bug resolved, resolution: INVALID.

-- 
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]



Hw to retrieve a session

2005-02-22 Thread Blot Emmanuel
Hi,

I want to retrieve the list of all session of the tomcat server within a
servlet and get some attribute.

I don't find solution can you help me ?

 Emmanuel Blot - Project Leader
 
 PROSODIE - Direction du Développement
 Tél. : +33 (0)2 32 19 09 02 / Fax : +33 (0)2 35 60 42 30
 e-mail : [EMAIL PROTECTED]
 
 www.prosodie.com 
 
 

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



dengerous virus!Re: cvs commit: jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/tcp Constants.java LocalStrings.properties

2005-02-22 Thread Rahul P Akolkar

Return Receipt
   
Your  dengerous virus!Re: cvs commit:  
document  jakarta-tomcat-catalina/modules/cluster/src/share/org/apache 
: /catalina/cluster/tcp Constants.java LocalStrings.properties 
   
was   Rahul P Akolkar/Watson/IBM   
received   
by:
   
at:   02/22/2005 12:10:50  
   





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



Re: cvs commit: jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/tcp DataSender.java AsyncSocketSender.java IDataSender.java PooledSocketSender.java ReplicationListener.java SimpleTcpCluster.java SocketSender.java TcpReplicatio

2005-02-22 Thread Rahul P Akolkar

Return Receipt
   
Your  Re: cvs commit:  
document  jakarta-tomcat-catalina/modules/cluster/src/share/org/apache 
: /catalina/cluster/tcp DataSender.java AsyncSocketSender.java 
  IDataSender.java PooledSocketSender.java 
  ReplicationListener.java SimpleTcpCluster.java   
  SocketSender.java TcpReplicatio  
   
was   Rahul P Akolkar/Watson/IBM   
received   
by:
   
at:   02/22/2005 12:10:53  
   





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



Re: DO NOT REPLY [Bug 32480] - Unterminated tag if opening taglib tag is from an include file

2005-02-22 Thread Rahul P Akolkar

Return Receipt
   
Your  Re: DO NOT REPLY [Bug 32480]  -Unterminated tag if 
document  opening taglib tag is from an include file   
:  
   
was   Rahul P Akolkar/Watson/IBM   
received   
by:
   
at:   02/22/2005 12:10:58  
   





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



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

2005-02-22 Thread Rahul P Akolkar

Return Receipt
   
Your  Re: cvs commit: jakarta-tomcat-connectors/jk/native/common   
document  jk_lb_worker.c jk_util.c jk_util.h   
:  
   
was   Rahul P Akolkar/Watson/IBM   
received   
by:
   
at:   02/22/2005 12:11:03  
   





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



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

2005-02-22 Thread yoavs
yoavs   2005/02/22 09:27:41

  Modified:docs/faq development.html
   docs/faq/printer development.html
   xdocs-faq development.xml
  Log:
  Forgot to link to NEtBeans KB in my last commit.
  
  Revision  ChangesPath
  1.3   +3 -2  jakarta-tomcat-site/docs/faq/development.html
  
  Index: development.html
  ===
  RCS file: /home/cvs/jakarta-tomcat-site/docs/faq/development.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- development.html  22 Feb 2005 17:25:39 -  1.2
  +++ development.html  22 Feb 2005 17:27:41 -  1.3
  @@ -90,8 +90,9 @@
   p
   This answer assumes that you have correctly set up a NetBeans IDE project and
   that you know how to use its debugger. If not, please go to
  -http://www.netbeans.org/kb/using-netbeans/40/debug.html and read up on how to
  -use NetBeans IDE and its debugger.
  +a href=http://www.netbeans.org/kb/using-netbeans/40/debug.html;
  +http://www.netbeans.org/kb/using-netbeans/40/debug.html/a
  + and read up on how to use NetBeans IDE and its debugger.
   /p
   p
   Make sure that Tomcat is started, that your application is deployed, and that
  
  
  
  1.3   +3 -2  jakarta-tomcat-site/docs/faq/printer/development.html
  
  Index: development.html
  ===
  RCS file: /home/cvs/jakarta-tomcat-site/docs/faq/printer/development.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- development.html  22 Feb 2005 17:25:42 -  1.2
  +++ development.html  22 Feb 2005 17:27:41 -  1.3
  @@ -89,8 +89,9 @@
   p
   This answer assumes that you have correctly set up a NetBeans IDE project and
   that you know how to use its debugger. If not, please go to
  -http://www.netbeans.org/kb/using-netbeans/40/debug.html and read up on how to
  -use NetBeans IDE and its debugger.
  +a href=http://www.netbeans.org/kb/using-netbeans/40/debug.html;
  +http://www.netbeans.org/kb/using-netbeans/40/debug.html/a
  + and read up on how to use NetBeans IDE and its debugger.
   /p
   p
   Make sure that Tomcat is started, that your application is deployed, and that
  
  
  
  1.3   +3 -2  jakarta-tomcat-site/xdocs-faq/development.xml
  
  Index: development.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-site/xdocs-faq/development.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- development.xml   22 Feb 2005 17:25:44 -  1.2
  +++ development.xml   22 Feb 2005 17:27:41 -  1.3
  @@ -101,8 +101,9 @@
   p
   This answer assumes that you have correctly set up a NetBeans IDE project and
   that you know how to use its debugger. If not, please go to
  -http://www.netbeans.org/kb/using-netbeans/40/debug.html and read up on how to
  -use NetBeans IDE and its debugger.
  +a href=http://www.netbeans.org/kb/using-netbeans/40/debug.html;
  +http://www.netbeans.org/kb/using-netbeans/40/debug.html/a
  + and read up on how to use NetBeans IDE and its debugger.
   /p
   p
   Make sure that Tomcat is started, that your application is deployed, and that
  
  
  

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



DO NOT REPLY [Bug 33692] - Update for: How do I remotely debug Tomcat using NetBeans?

2005-02-22 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=33692.
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=33692


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 18:28 ---
Fix applied.  In the future, please use a standard diff format when submitting 
patches.

-- 
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 33694] - Tomcat start fails

2005-02-22 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=33694.
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=33694


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE




--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 20:09 ---


*** This bug has been marked as a duplicate of 29671 ***

-- 
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 29671] - Context don't start with multiple HTTP 1.1 connectors

2005-02-22 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=29671.
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=29671


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 20:09 ---
*** Bug 33694 has been marked as a duplicate of this bug. ***

-- 
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 request - jakarta-tomcat-connectors

2005-02-22 Thread Jim Jagielski
I'd like to request commit privs for the jakarta-tomcat-connectors
tree. I will be working mostly on the apache/mod_jk
integration aspects to complement what is going on
in the httpd mod_proxy side.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Configure list to suitably handle return receipts

2005-02-22 Thread Rahul P Akolkar
First off, sorry about the notifications earlier in the day. I got booted, 
but I need my tomcat-dev emails.

My understanding about Delivery Status Notification (DSN) is that if the 
sender of the original email requests return receipts, then a DSN 
compliant mail server (such as the one I use), will do the expected thing 
and provide that notification. I had posted this question to 
[EMAIL PROTECTED] in relation to the same issue last year and the 
response I got on that list appears at the end of my email.

It appears this is something the list owner(s) can/should look into? 
Suggestions, anyone?

Thanks in advance,
-Rahul

-- Snippet from email exchange with [EMAIL PROTECTED] follows --

Rahul P Akolkar wrote:
 
 I was suggested this might be a good place to post apache mailing list 
 issues.
 
 It seems that the mailing lists accept return receipts. As an example:
 
 
http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]msgNo=8838 

 
 Can the list software take care of filtering out such messages?

It would be better to configure those mailing lists to remove
headers which cause return receipts. I think old lists are missing
'Disposition-Notification-To' and 'Return-Receipt-To:'

Christian



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

2005-02-22 Thread markt
markt   2005/02/22 14:00:55

  Modified:jasper2/src/share/org/apache/jasper/compiler Tag:
tomcat_4_branch Generator.java
  Log:
  Fix bug 25095. Tags generated by jsp:plugin are not well-formed.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.35.2.27 +1 -1  
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java
  
  Index: Generator.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java,v
  retrieving revision 1.35.2.26
  retrieving revision 1.35.2.27
  diff -u -r1.35.2.26 -r1.35.2.27
  --- Generator.java25 Aug 2004 20:53:29 -  1.35.2.26
  +++ Generator.java22 Feb 2005 22:00:54 -  1.35.2.27
  @@ -1021,7 +1021,6 @@
   out.printil(out.println( + quote() + ););
   
   out.printil(out.println( + quote(NOEMBED) + ););
  -out.printil(out.println( + quote(/COMMENT) + ););
   
   /*
* Fallback
  @@ -1032,6 +1031,7 @@
   }
   
   out.printil(out.println( + quote(/NOEMBED/EMBED) + ););
  +out.printil(out.println( + quote(/COMMENT) + ););
   out.printil(out.println( + quote(/OBJECT) + ););
   
   n.setEndJavaLine(out.getJavaLine());
  
  
  

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



DO NOT REPLY [Bug 25095] - The code generated by jsp:plugin is not suitable for XHTML

2005-02-22 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=25095.
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=25095


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-02-22 23:03 ---
I have fixed the overlapping tags in TC4. They were already fixed in TC5.

I agree that there is nothing to prevent XHTML support but features that are not
required by the spec, not prevented by the spec and not currently implemented
are are enhancement requests.

If you wish to raise a new bugzilla item for such an enhancement request please
do so but it is worth noting that if you do not supply a patch then the lack of
interest you have alreday identified means that such an enhancement request is
very unlikely to get implemented.

-- 
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]



Re: Configure list to suitably handle return receipts

2005-02-22 Thread William A. Rowe, Jr.
At 02:07 PM 2/22/2005, Rahul P Akolkar wrote:

My understanding about Delivery Status Notification (DSN) is that if the 
sender of the original email requests return receipts, then a DSN 
compliant mail server (such as the one I use), will do the expected thing 
and provide that notification.

But you are ignoring;

Precedence: bulk

present on all list mails, which should supercede any DSN request.


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



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

2005-02-22 Thread Charlie Zhang

(B
(B 
(BCharlie Zhang 
(BProject Manager 
(BInfosys Technologies Shanghai Company Ltd.
(B[EMAIL PROTECTED]
(B50271588 * 3120 / 13601627903
(B
(B-Original Message-
(BFrom: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
(BSent: 2005$BG/(J2$B7n(J22$BF|(J 18:28
(BTo: [EMAIL PROTECTED]
(BSubject: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp_common.c
(B
(Bmturk   2005/02/22 02:27:38
(B
(B  Modified:jk/native/common jk_ajp_common.c
(B  Log:
(B  Revert the latest patch. No help on close_wait.
(B  
(B  Revision  ChangesPath
(B  1.93  +1 -4  
(Bjakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c
(B  
(B  Index: jk_ajp_common.c
(B  ===
(B  RCS file: 
(B/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c,v
(B  retrieving revision 1.92
(B  retrieving revision 1.93
(B  diff -u -r1.92 -r1.93
(B  --- jk_ajp_common.c   22 Feb 2005 09:58:38 -  1.92
(B  +++ jk_ajp_common.c   22 Feb 2005 10:27:37 -  1.93
(B  @@ -1527,9 +1527,6 @@
(B   
(B   /* no more data to be sent, fine we have finish here */
(B   if (JK_AJP13_END_RESPONSE == rc) {
(B  -/* XXX: Set all readed */
(B  -s-content_read = s-content_length;
(B  -s-no_more_chunks = 1;
(B   JK_TRACE_EXIT(l);
(B   return JK_TRUE;
(B   }
(B  
(B  
(B  
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]