I see that attachments are still getting stripped from the list :). The problem is yet-another-typo. The check for a comma cookie-delimiter ends up re-setting the returned cookie value to NULL, so the lb thinks that no cookie was sent. If this attachment comes through, it's the patch for it. I'll commit it later (PST), if nobody else wants it.
----- Original Message ----- From: "Bill Barker" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Tuesday, July 20, 2004 11:35 AM Subject: Re: mod_jk 1.2.6 release ? - session tracking cookie > I was thinking something like attached. > > ----- Original Message ----- > From: "Sandy McArthur" <[EMAIL PROTECTED]> > To: "Tomcat Developers List" <[EMAIL PROTECTED]> > Sent: Tuesday, July 20, 2004 7:04 AM > Subject: Re: mod_jk 1.2.6 release ? - session tracking cookie > > > > > > On Jul 20, 2004, at 5:27 AM, Henri Gomez wrote: > > > > > Could you send us you workers.properties ? > > > > attached. > > > > > -------------------------------------------------------------------------- -- > ---- > > > > > > > > >> If > > >> you feel like putting more work into this, adding > > >> 'fprintf(stderr,...)' > > >> statements should go to the Apache error_log. > > > > > > Where did you want me put fprint ? > > > > Let us know where you want them and we'll test that code too. > > > > Sandy McArthur > ---------------------------------------------------------------------------- ---- > > This message is intended only for the use of the person(s) listed above as the intended recipient(s), and may contain information that is PRIVILEGED and CONFIDENTIAL. If you are not an intended recipient, you may not read, copy, or distribute this message or any attachment. If you received this communication in error, please notify us immediately by e-mail and then delete all copies of this message and any attachments. > > In addition you should be aware that ordinary (unencrypted) e-mail sent through the Internet is not secure. Do not send confidential or sensitive information, such as social security numbers, account numbers, personal identification numbers and passwords, to us via ordinary (unencrypted) e-mail. > > ---------------------------------------------------------------------------- ---- > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED]
*** jk_lb_worker.cvs Tue Jul 20 11:02:38 2004 --- jk_lb_worker.c Tue Jul 20 12:09:57 2004 *************** *** 139,145 **** if((id_end = strchr(id_start, ';')) != NULL) { *id_end = '\0'; } ! if((id_start = strchr(id_start, ',')) != NULL) { *id_end = '\0'; } return id_start; --- 139,145 ---- if((id_end = strchr(id_start, ';')) != NULL) { *id_end = '\0'; } ! if((id_end = strchr(id_start, ',')) != NULL) { *id_end = '\0'; } return id_start;
This message is intended only for the use of the person(s) listed above as the intended recipient(s), and may contain information that is PRIVILEGED and CONFIDENTIAL. If you are not an intended recipient, you may not read, copy, or distribute this message or any attachment. If you received this communication in error, please notify us immediately by e-mail and then delete all copies of this message and any attachments. In addition you should be aware that ordinary (unencrypted) e-mail sent through the Internet is not secure. Do not send confidential or sensitive information, such as social security numbers, account numbers, personal identification numbers and passwords, to us via ordinary (unencrypted) e-mail.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]