Re: Incorporating changes and compiling Tomcat

2011-09-27 Thread Mark Eggers
- Original Message - > From: "gilbert.be...@bcbssc.com" > To: users@tomcat.apache.org > Cc: > Sent: Tuesday, September 27, 2011 1:58 PM > Subject: Incorporating changes and compiling Tomcat > > Can any one please direct me to instructions on how to incorporate fixes and > then recompil

RE: bind webapps to different IP addresses on a single instance of tomcat

2011-09-27 Thread Caldarale, Charles R
> From: Robert Lafleur [mailto:rlafl...@vbridges.com] > Subject: Re: bind webapps to different IP addresses on a single instance of > tomcat > Are these options available in Tomcat 6? Yes, all of them are. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MAT

Re: bind webapps to different IP addresses on a single instance of tomcat

2011-09-27 Thread Robert Lafleur
Are these options available in Tomcat 6? I apologize for not including this earlier ... Regards, Robert Lafleur • Sr. Systems Engineer • rlafl...@vbridges.com Office: 512.343.1100 x313 | Cell: 512.657.7283 | Fax: 512.343.1101 On Tue, Sep 27, 2011 at 5:11 PM, Caldarale, Charles R < chuck.ca

RE: bind webapps to different IP addresses on a single instance of tomcat

2011-09-27 Thread Caldarale, Charles R
> From: Robert Lafleur [mailto:rlafl...@vbridges.com] > Subject: bind webapps to different IP addresses on a single instance of tomcat > Is there a way to configure a single instance of tomcat > to bind webapps to different ip addresses, or do I have > to configure two tomcat instance to host ea

bind webapps to different IP addresses on a single instance of tomcat

2011-09-27 Thread Robert Lafleur
I have a single instance of tomcat this is running two web applications. The server hosting tomcat has IP addresses on two separate networks. I was able to add address="" for the Connectors in server.xml, but this is a global setting. Is there a way to configure a single instance of tomcat to bind

Re: Incorporating changes and compiling Tomcat

2011-09-27 Thread Konstantin Kolinko
2011/9/28 : > Can any one please direct me to instructions on how to incorporate fixes and > then recompile.  Target OS is Windows Server 2003.  Thanks! RTFM? - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For ad

Incorporating changes and compiling Tomcat

2011-09-27 Thread GILBERT.BERRY
Can any one please direct me to instructions on how to incorporate fixes and then recompile. Target OS is Windows Server 2003. Thanks! Gilbert Berry Blue Cross/Blue Shield of South Carolina Tricare Post Adjudication Reporting (803) 763-1873 x 31873 (803) 466-7282 cell gilbert.be...@mytricare.c

Re: cannot connect to server pc within a network

2011-09-27 Thread Christopher Schultz
To whom it may concern, On 9/27/2011 3:51 PM, avengine wrote: I have installed tomcat7 in 1 pc as a server and do all the test using localhost:8080, no problem then I use cmd in window xp to find the ip of the server using ipconfig /all and find it is 192.168.1.111 then on second pc on the same

cannot connect to server pc within a network

2011-09-27 Thread avengine
I have installed tomcat7 in 1 pc as a server and do all the test using localhost:8080, no problem then I use cmd in window xp to find the ip of the server using ipconfig /all and find it is 192.168.1.111 then on second pc on the same network http://192.168.1.111:8080/acts/member/login.jsp error co

Re: 7.0.21 Redirects failing randomly

2011-09-27 Thread Jacob Champlin
Konstantin, Ok, so I see now why you added the flushBuffer() from spec: http://java.sun.com/javaee/6/docs/api/javax/servlet/http/HttpServletResponse.html#sendRedirect%28java.lang.String%29 "Sends a temporary redirect response to the client using the specified redirect location URL and clears t

Re: 7.0.21 Redirects failing randomly

2011-09-27 Thread Jacob Champlin
Konstantin, I believe the new flushBuffer() call you added to Response.java sendRedirect() line #1340. Is breaking all ServletFilters but sending buy flushing the response before filters have a chance to modify the response. Jacob On 09/27/2011 10:35 AM, Jacob Champlin wrote: Last night

Re: 7.0.21 Redirects failing randomly

2011-09-27 Thread Konstantin Kolinko
2011/9/27 Jacob Champlin : > We have finished debugging this issue.  It turns out that what is happening > is in 7.0.21 responses are returning to the client before the filter chain > is complete.  In 7.0.20 all filters complete before the response is returned > to the client. It depends on the si

Re: combination of RemoteAddrValve und basic authentication

2011-09-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 9/27/2011 7:40 AM, André Warnier wrote: > The reason why I was mentioning further complexity for the Valve > solution, is that as far as I know, the HttpServletRequest object > is "immutable" (iow read-only), as it is received. For the mos

Re: 7.0.21 Redirects failing randomly

2011-09-27 Thread Jacob Champlin
We have finished debugging this issue. It turns out that what is happening is in 7.0.21 responses are returning to the client before the filter chain is complete. In 7.0.20 all filters complete before the response is returned to the client. In our particular case, we have a TransactionFilter

Re: combination of RemoteAddrValve und basic authentication

2011-09-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Remon, On 9/27/2011 5:14 AM, Remon Sadikni wrote: > Hi André, hi Christopher, > > thanks for your answers. >> >> The use of HTTP BASIC authentication confuses things here because >> of the credential transfer mechanism (HTTP headers). I suppose >> y

Re: endpoint.warn.unlockAcceptorFailed

2011-09-27 Thread Konstantin Kolinko
2011/9/27 Konstantin Kolinko : > 2011/9/27 Leo Donahue - PLANDEVX : >> Tomcat 6.0.32 and 6.0.33 32-bit windows zip - Windows XP Pro >> >> Running the shutdown.bat script, on .32 and .33, hung at trying to stop the >> coyote connector, which then produces the error message in the command >> prompt

Re: 7.0.21 Redirects failing randomly

2011-09-27 Thread Konstantin Kolinko
2011/9/27 Jacob Champlin : > Last night we went to 7.0.21, and this morning I had to roll it back because > very randomly redirects were failing.  It was very much like all parameters > to the redirect were lost. > > I am still trying to debug this, but its clear its not happening in 7.0.20, > whic

Re: endpoint.warn.unlockAcceptorFailed

2011-09-27 Thread Konstantin Kolinko
2011/9/27 Leo Donahue - PLANDEVX : > Tomcat 6.0.32 and 6.0.33 32-bit windows zip - Windows XP Pro > > [OT] I was experimenting with trying to profile memory on Tomcat when it is > started via a Windows Service using jvisualvm.exe  Profiling tomcat memory > using visualvm works great when Tomcat i

Tomcat 7 Embedded: Manager

2011-09-27 Thread Dark Before Dawn
Hi guys, I am sorry to resurrect this topic, but I got stuck for weeks now. I would like to provide an embedded Tomcat 7 instance in my JavaSE 1.6 application (diploma thesis). This instance should run the Manager-Application for easy War-Deployment via ANT. With help of this mailing-list I m

7.0.21 Redirects failing randomly

2011-09-27 Thread Jacob Champlin
Last night we went to 7.0.21, and this morning I had to roll it back because very randomly redirects were failing. It was very much like all parameters to the redirect were lost. I am still trying to debug this, but its clear its not happening in 7.0.20, which leads me to believe its: 41718

endpoint.warn.unlockAcceptorFailed

2011-09-27 Thread Leo Donahue - PLANDEVX
Tomcat 6.0.32 and 6.0.33 32-bit windows zip - Windows XP Pro [OT] I was experimenting with trying to profile memory on Tomcat when it is started via a Windows Service using jvisualvm.exe Profiling tomcat memory using visualvm works great when Tomcat is started as a script using the startup.bat

Re: catalina_pid file contains +1 pid number instead of correct pid

2011-09-27 Thread Konstantin Kolinko
2011/9/27 Raghu GS : > > Hello Everybody > > We are using Tomcat 6.20 in CentOS 5.3 server. 6.0.20 ?? You should read http://tomcat.apache.org/security-6.html as well as all the fixed issues in changelog. > I have recently enabled catalina_pid functionality using environment > variable. > The P

Re: combination of RemoteAddrValve und basic authentication

2011-09-27 Thread André Warnier
Remon Sadikni wrote: Hi André, hi Christopher, thanks for your answers. The use of HTTP BASIC authentication confuses things here because of the credential transfer mechanism (HTTP headers). I suppose you could write a Valve that sniffs the user's IP address and then adds HTTP headers to the r

Re: Overriding web.xml parameters

2011-09-27 Thread Romaric
Ok. Thank you for your help. Link for those looking for the bug : https://issues.apache.org/bugzilla/show_bug.cgi?id=50700 Romaric Le 27/09/2011 11:40, Rainer Frey a écrit : On 27.09.2011, at 11:38, Romaric wrote: Le 27/09/2011 11:33, Rainer Frey a écrit : On 27.09.2011, at 11:00, Romaric

Re: Overriding web.xml parameters

2011-09-27 Thread Rainer Frey
On 27.09.2011, at 11:38, Romaric wrote: > Le 27/09/2011 11:33, Rainer Frey a écrit : >> On 27.09.2011, at 11:00, Romaric wrote: >> >>> Hi, >>> >>> The problem is that the values in web.xml override those in context.xml >>> when it should be the other way around. >>> Do you have any idea what th

Re: Overriding web.xml parameters

2011-09-27 Thread Romaric
6.0.32. That might be the issue. Is there a way to work this around other than removing the parameters from web.xml ? Thanks for you help. Le 27/09/2011 11:33, Rainer Frey a écrit : On 27.09.2011, at 11:00, Romaric wrote: Hi, The problem is that the values in web.xml override those in con

catalina_pid file contains +1 pid number instead of correct pid

2011-09-27 Thread Raghu GS
Hello Everybody We are using Tomcat 6.20 in CentOS 5.3 server. I have recently enabled catalina_pid functionality using environment variable. The PID file got created and contains +1 PID number. If the Tomcat's real PID number 5446, the pid file would contain 5447 as PID number. Please help me t

Re: Overriding web.xml parameters

2011-09-27 Thread Rainer Frey
On 27.09.2011, at 11:00, Romaric wrote: > Hi, > > The problem is that the values in web.xml override those in context.xml when > it should be the other way around. > Do you have any idea what the problem might be ? Which exact version? The behavior sounds like a bug that was present from (AFAI

Re: Overriding web.xml parameters

2011-09-27 Thread Romaric
Right, sorry for the typo. The actual file is valid. In addition, if I remove the parameters from web.xml, the values in context.xml are used. Le 27/09/2011 11:10, Markus Schönhaber a écrit : 27.09.2011 11:00, Romaric: context.xml : ---^ The problem is that the va

Re: combination of RemoteAddrValve und basic authentication

2011-09-27 Thread Remon Sadikni
Hi André, hi Christopher, thanks for your answers. The use of HTTP BASIC authentication confuses things here because of the credential transfer mechanism (HTTP headers). I suppose you could write a Valve that sniffs the user's IP address and then adds HTTP headers to the request for the "Authen

Re: Overriding web.xml parameters

2011-09-27 Thread Markus Schönhaber
27.09.2011 11:00, Romaric: > context.xml : > > > ---^ > > > The problem is that the values in web.xml override those in context.xml > when it should be the other way around. > > Do you have any idea what the problem might be ? The above is not valid XML. The attribute n

Overriding web.xml parameters

2011-09-27 Thread Romaric
Hi, I'm using tomcat6 on fedora15 (installed via the tomcat6 package). I have context parameters defined for my application in both web.xml and conf/Catalina/localhost/AppName.xml : web.xml : name value context.xml : The problem is that the values in web.xml override those in context