INFARM, IL SUPPORTO LOGISTICO ALLA RISTRUTTURAZIONE IN FARMACIA

2011-07-14 Thread Farmacia.it
div style=margin:0 auto; margin-top:15px; border:0px solid #ccc; padding-top:5px: Per rimuovere il tuo indirizzo email dalla mailing list e non ricevere questa newsletter clicca qui: http://farmacia.it/index.php?ACT=5id=qCNTpHSY0e /div

Re: getAllClusterSessions gives OptionalDataException

2011-07-14 Thread Ronald Klop
Op vrijdag, 8 juli 2011 21:55 schreef Christopher Schultz ch...@christopherschultz.net: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ronald, On 7/8/2011 5:33 AM, Ronald Klop wrote: After some fun with debugging Tomcat on my live server (because I couldn't reproduce it in

Re: Sticky Session Not Working With Apache 2.0.54 and Tomcat 7.0.8

2011-07-14 Thread Pid
On 13/07/2011 20:17, Christopher Schultz wrote: Mark, On 7/13/2011 3:12 PM, Mark Thomas wrote: On 13/07/2011 19:39, Lataxes, Karl wrote: We're not using cookies. Our application is not web based, but accepts HTTP PUTS via client requests that enter our network from external sources. We

Re: Sticky Session Not Working With Apache 2.0.54 and Tomcat 7.0.8

2011-07-14 Thread Pid
On 14/07/2011 10:25, Pid wrote: On 13/07/2011 20:17, Christopher Schultz wrote: Mark, On 7/13/2011 3:12 PM, Mark Thomas wrote: On 13/07/2011 19:39, Lataxes, Karl wrote: We're not using cookies. Our application is not web based, but accepts HTTP PUTS via client requests that enter our

Re: Terminating Timer Thread Gracefully

2011-07-14 Thread Pid
On 14/07/2011 06:05, Terence M. Bandoian wrote: On 1:59 PM, Pid wrote: ATimerTask is a private instance in AServletContextListener, is this necessary and if so, why? What logic is contained in ATimerTask? Are you overriding TimerTask.cancel() and do you catch InterruptedException? p

response headers missing ?

2011-07-14 Thread André Warnier
Hi. This is a bit of a side question, or let's say a question-by-proxy. I happen to be also subscribed to a support list for mod_perl, and someone there made the following comment as part of a post : quote We have 100+ web servers where apache fronts a separate tomcat server using

Re: response headers missing ?

2011-07-14 Thread Konstantin Kolinko
2011/7/14 André Warnier a...@ice-sa.com: Hi. This is a bit of a side question, or let's say a question-by-proxy. I happen to be also subscribed to a support list for mod_perl, and someone there made the following comment as part of a post : quote We have 100+ web servers where apache

Re: response headers missing ?

2011-07-14 Thread Pid
On 14/07/2011 11:29, André Warnier wrote: Hi. This is a bit of a side question, or let's say a question-by-proxy. I happen to be also subscribed to a support list for mod_perl, and someone there made the following comment as part of a post : quote We have 100+ web servers where

Re: response headers missing ?

2011-07-14 Thread Mark Thomas
On 14/07/2011 11:29, André Warnier wrote: Hi. This is a bit of a side question, or let's say a question-by-proxy. I happen to be also subscribed to a support list for mod_perl, and someone there made the following comment as part of a post : quote We have 100+ web servers where

Re: AJP-APR failures on Tomcat 7.0.16 with ISAPI Redirector 1.2.32

2011-07-14 Thread André Warnier
eurotrans-Verlag wrote: Hi Rainer, -Original Message- From: Rainer Jung [mailto:rainer.j...@kippdata.de] Sent: Thursday, July 14, 2011 12:17 AM At least there was trouble about Java2D for several users in the past. One such issue:

Re: response headers missing ?

2011-07-14 Thread André Warnier
Mark Thomas wrote: On 14/07/2011 11:29, André Warnier wrote: Hi. This is a bit of a side question, or let's say a question-by-proxy. I happen to be also subscribed to a support list for mod_perl, and someone there made the following comment as part of a post : quote We have 100+ web servers

RE: Tomcat Pool and XA datasource

2011-07-14 Thread Siemback, Chris
Fabulous doc - thanks Filip! The examples are very helpful and that's the most thorough description of the pool options available. I've yet to test the XA commit/rollback functionality, but the pool itself is up now. Thanks for your assistance, it was extremely helpful. Cheers, Chris

mod_jk under RedHat ?

2011-07-14 Thread André Warnier
Hi. Would anyone happen to know the package name of the mod_jk binary package under RedHat Linux Enterprise 6 ? - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail:

RE: AJP-APR failures on Tomcat 7.0.16 with ISAPI Redirector 1.2.32

2011-07-14 Thread eurotrans-Verlag
Hi André, -Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Thursday, July 14, 2011 1:00 PM To: Tomcat Users List Subject: Re: AJP-APR failures on Tomcat 7.0.16 with ISAPI Redirector 1.2.32 As a comment purely from a general programming point of view, not a

RE: Session cookie max age

2011-07-14 Thread Josh Simmons
Thanks for the info on the doctype, I will look into that. Version information: Server version: Apache Tomcat/7.0.14 Server built: May 9 2011 10:40:56 Server number: 7.0.14.0 For your issue #1, that's the entire reason I was asking. Since its a session cookie I was curious as to why the max

Re: response headers missing ?

2011-07-14 Thread Stefan Mayr
Am 14.07.2011 13:25, schrieb André Warnier: Mark Thomas wrote: On 14/07/2011 11:29, André Warnier wrote: Hi. This is a bit of a side question, or let's say a question-by-proxy. ... I think for this problem, I have to treat tomcat as a little, rather inefficient, black box and try to fixup

Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine. Now I need to add some new functionality to the web site that will be using my tomcat webapp, and I don't

RE: Passing user id from web page to tomcat webapp

2011-07-14 Thread Savoy, Melinda
David, You might try the following, instead of getRemoteUser, as we use this to get the USERID from IIS. I inherited this code so I really can't speak to it a lot but it's working. Regards. ' get user ID from header ** XUserID = Request.ServerVariables(AUTH_USER)

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine. Now I need to add some new functionality to the web site that will be using my

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
Savoy, Melinda wrote: David, You might try the following, instead of getRemoteUser, as we use this to get the USERID from IIS. I inherited this code so I really can't speak to it a lot but it's working. Regards. ' get user ID from header ** XUserID =

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine. Now I need to add some new functionality to

Re: mod_jk question about lingering close_waits

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 7/13/2011 5:16 PM, André Warnier wrote: 1) this is the right list for Apache/Tomcat connectors (mod_jk among them) Yes. When the question is about mod_proxy_ajp, we usually try our best but defer to the Apache httpd user's list when

Re: Sticky Session Not Working With Apache 2.0.54 and Tomcat 7.0.8

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pid, On 7/14/2011 5:45 AM, Pid wrote: http://www.cafepress.com/cp/customize/product2.aspx?number=556022568 $21? boo... - -chris -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Mozilla -

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:00 AM, André Warnier wrote: Savoy, Melinda wrote: David, You might try the following, instead of getRemoteUser, as we use this to get the USERID from IIS. I inherited this code so I really can't speak to it a lot but it's working. Regards. ' get user ID from header

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread Pid
On 14/07/2011 15:04, David kerber wrote: On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine.

RE: Passing user id from web page to tomcat webapp

2011-07-14 Thread Propes, Barry L
Looks like ASP code. -Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Thursday, July 14, 2011 9:01 AM To: Tomcat Users List Subject: Re: Passing user id from web page to tomcat webapp Savoy, Melinda wrote: David, You might try the following, instead of

Re: mod_jk under RedHat ?

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 7/14/2011 8:06 AM, André Warnier wrote: Would anyone happen to know the package name of the mod_jk binary package under RedHat Linux Enterprise 6 ? I don't have a RHL box handy, but could it just be mod_jk? This page has a link to an (old,

Re: Sticky Session Not Working With Apache 2.0.54 and Tomcat 7.0.8

2011-07-14 Thread Pid
On 14/07/2011 15:11, Christopher Schultz wrote: Pid, On 7/14/2011 5:45 AM, Pid wrote: http://www.cafepress.com/cp/customize/product2.aspx?number=556022568 $21? boo... I couldn't change the price... s signature.asc Description: OpenPGP digital signature

Re: Session cookie max age

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Konstantin, On 7/13/2011 8:54 PM, Konstantin Kolinko wrote: AFAIK, 1) Tomcat won't send Set-Cookie when session id is already known (either from this webapp or from webapp on its parent path such as ROOT). That would sound like a bug. If the

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine. Now I need to add some

Re: response headers missing ?

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pid, On 7/14/2011 6:37 AM, Pid wrote: I'd ask the OP to back that up with an explanation and some proof, contrary to the below: Can you clarify this? It looks like request and response headers jumbled together. Request

Re: mod_jk under RedHat ?

2011-07-14 Thread André Warnier
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 7/14/2011 8:06 AM, André Warnier wrote: Would anyone happen to know the package name of the mod_jk binary package under RedHat Linux Enterprise 6 ? I don't have a RHL box handy, but could it just be mod_jk? I

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:20 AM, Pid wrote: On 14/07/2011 15:04, David kerber wrote: On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as

Re: response headers missing ?

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 7/14/2011 7:25 AM, André Warnier wrote: quote [...] I would also add that most of the sites are dynamically driven pages, even involving MySQL querying, but once launched, the data remains fairly static - eg GET X will always resolve to

Re: Session cookie max age

2011-07-14 Thread Konstantin Kolinko
2011/7/14 Christopher Schultz ch...@christopherschultz.net: Konstantin, On 7/13/2011 8:54 PM, Konstantin Kolinko wrote: AFAIK, 1) Tomcat won't send Set-Cookie when session id is already known (either from this webapp or  from webapp on its parent path such as ROOT). That would sound like

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is the the newly-released authenticator Valve (?) available in Tomcat 7 solution I was talking about. David,

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, On 7/14/2011 10:35 AM, David kerber wrote: On 7/14/2011 10:20 AM, Pid wrote: On 14/07/2011 15:04, David kerber wrote: I'm not forwarding at all. The call to tomcat from the IIS page is just the action parameter of the form. The only

RE: Passing user id from web page to tomcat webapp

2011-07-14 Thread Savoy, Melinda
It is not java code. As I stated, I inherited this stuff. In speaking to my co-worker, he basically said that the DNS entry maps to an ASP page that contains the code below and then that value is sent back to my index.jsp page where I grab it via a servlet and validate it through my java

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:31 AM, André Warnier wrote: David kerber wrote: On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:45 AM, André Warnier wrote: David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is the the newly-released authenticator Valve (?) available in

Re: Session cookie max age

2011-07-14 Thread Pid
On 14/07/2011 15:27, Christopher Schultz wrote: Konstantin, On 7/13/2011 8:54 PM, Konstantin Kolinko wrote: AFAIK, 1) Tomcat won't send Set-Cookie when session id is already known (either from this webapp or from webapp on its parent path such as ROOT). That would sound like a bug. If

Re: Session cookie max age

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Konstantin, On 7/14/2011 10:40 AM, Konstantin Kolinko wrote: 2011/7/14 Christopher Schultz ch...@christopherschultz.net: Konstantin, On 7/13/2011 8:54 PM, Konstantin Kolinko wrote: AFAIK, 1) Tomcat won't send Set-Cookie when session id is

Re: Session cookie max age

2011-07-14 Thread André Warnier
Konstantin Kolinko wrote: ... 1) Updating it with every response sounds lame. 2) max-age value should be consistent between all web applications that might share the session cookie. Otherwise there will be inconsistencies and breakages. Are you not confusing max-age with last access ? The

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:51 AM, David kerber wrote: On 7/14/2011 10:45 AM, André Warnier wrote: David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is the the

Re: Session cookie max age

2011-07-14 Thread Pid
On 14/07/2011 15:54, André Warnier wrote: Konstantin Kolinko wrote: ... 1) Updating it with every response sounds lame. 2) max-age value should be consistent between all web applications that might share the session cookie. Otherwise there will be inconsistencies and breakages. Are you

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: On 7/14/2011 10:51 AM, David kerber wrote: On 7/14/2011 10:45 AM, André Warnier wrote: David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is

Re: Terminating Timer Thread Gracefully

2011-07-14 Thread Terence M. Bandoian
On 1:59 PM, Pid wrote: On 14/07/2011 06:05, Terence M. Bandoian wrote: On 1:59 PM, Pid wrote: ATimerTask is a private instance in AServletContextListener, is this necessary and if so, why? What logic is contained in ATimerTask? Are you overriding TimerTask.cancel() and do you catch

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Leon, On 7/12/2011 7:42 PM, Leon Kolchinsky wrote: Go to http://tomcat.apache.org/download-connectors.cgi and download the source code: # tar -xvzf tomcat-connectors-1.2.30-src.tar.gz Read docs/webserver_howto/apache.html or

Re: Terminating Timer Thread Gracefully

2011-07-14 Thread Mark Thomas
On 14/07/2011 06:11, Terence M. Bandoian wrote: I can live with this. It's just one of those it would be nice not to have to explain things and if Thread.sleep does the trick, I'm happy. As I mentioned in my original post, I wanted to find out if there was a another way to accomplish the same

Re: mod_jk under RedHat ?

2011-07-14 Thread Mark Eggers
- Original Message - From: André Warnier a...@ice-sa.com To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Thursday, July 14, 2011 7:34 AM Subject: Re: mod_jk under RedHat ? Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 7/14/2011

RE: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Leffingwell, Jonathan R CTR FRCSE, JAX 7.2.2
Thanks, Chris. Unfortunately, I don't have root access, and I know just enough Linux to be dangerous! LOL! The Linux S.A. doesn't know anything about compiling (don't get me started on THAT), so he was asking if there were a binary module to drop into the modules folder. I was hoping to

RE: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Leffingwell, Jonathan R CTR FRCSE, JAX 7.2.2
Chris, something DID just dawn on me... I have my own account on that Linux server, though not with root access or anything. Would it be possible for me to compile mod_jk.so into my own space and then tell him where the mod_jk.so is? If so, would the following steps be how I would generate

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Mark Eggers
- Original Message - From: Leffingwell, Jonathan R CTR FRCSE, JAX 7.2.2 jonathan.leffingwell@navy.mil To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Thursday, July 14, 2011 10:08 AM Subject: RE: Binary of mod_jk.so for Apache 2.2.x Chris, something DID just dawn on

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread André Warnier
As things happen, I am just in the process of trying to locate a RedHat mod_jk package for a client of mine, whose admin also does not seem to find it in RHEL6. See the other thread entitled mod_jk under RedHat ? for some recent interesting answers.

RE: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Leffingwell, Jonathan R CTR FRCSE, JAX 7.2.2
André, if you would be so kind as to let me know what you find, I would greatly appreciate it. I will watch the other thread, too. :) -Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Thursday, July 14, 2011 1:49 PM To: Tomcat Users List Subject: Re: Binary of

Re: mod_jk under RedHat ?

2011-07-14 Thread André Warnier
Mark Eggers wrote: - Original Message - From: André Warnier a...@ice-sa.com To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Thursday, July 14, 2011 7:34 AM Subject: Re: mod_jk under RedHat ? Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread André Warnier
Leffingwell, Jonathan R CTR FRCSE, JAX 7.2.2 wrote: André, if you would be so kind as to let me know what you find, I would greatly appreciate it. I will watch the other thread, too. :) Well, according to the one and the same Mark Eggers who also provided your last response, the answer

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread André Warnier
André Warnier wrote: Leffingwell, Jonathan R CTR FRCSE, JAX 7.2.2 wrote: André, if you would be so kind as to let me know what you find, I would greatly appreciate it. I will watch the other thread, too. :) Well, according to the one and the same Mark Eggers who also provided your last

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jonathan, On 7/14/2011 1:08 PM, Leffingwell, Jonathan R CTR FRCSE, JAX 7.2.2 wrote: Chris, something DID just dawn on me... I have my own account on that Linux server, though not with root access or anything. Would it be possible for me to

Re: Comet over HTTPS: END event recieved immeidately for the first few times

2011-07-14 Thread Filip Hanik - Dev Lists
why dont you 1. package up a sample application and configuration 2. open a bugzilla issue 3. https://issues.apache.org/bugzilla/enter_bug.cgi that way we can take a look ait it. Filip On 7/13/2011 2:54 PM, Sudeep Pradhan wrote: Hi Filip, Thanks for the reply. I don't think that I am using

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Mark Eggers
- Original Message - From: Christopher Schultz ch...@christopherschultz.net To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Thursday, July 14, 2011 11:36 AM Subject: Re: Binary of mod_jk.so for Apache 2.2.x -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jonathan, On

Re: response headers missing ?

2011-07-14 Thread Rainer Jung
On 14.07.2011 12:29, André Warnier wrote: Hi. This is a bit of a side question, or let's say a question-by-proxy. I happen to be also subscribed to a support list for mod_perl, and someone there made the following comment as part of a post : quote We have 100+ web servers where

Re: response headers missing ?

2011-07-14 Thread André Warnier
Rainer Jung wrote: On 14.07.2011 12:29, André Warnier wrote: Hi. This is a bit of a side question, or let's say a question-by-proxy. I happen to be also subscribed to a support list for mod_perl, and someone there made the following comment as part of a post : quote We have 100+ web servers

Re: Terminating Timer Thread Gracefully

2011-07-14 Thread Terence M. Bandoian
On 1:59 PM, Mark Thomas wrote: On 14/07/2011 06:11, Terence M. Bandoian wrote: I can live with this. It's just one of those it would be nice not to have to explain things and if Thread.sleep does the trick, I'm happy. As I mentioned in my original post, I wanted to find out if there was a

Re: Binary of mod_jk.so for Apache 2.2.x

2011-07-14 Thread Leon Kolchinsky
Hi, Hmm, I didn't know that you're not managing this box ;) I'm actually a Linux SysAdmin and not a big specialist in mod_jk ;) What version of RedHat it is? What application do you want to run on Tomcat behind Apache Httpd? If you want I could help your SysAdmin with compilation and basic