Re: Mixed User Session

2021-01-15 Thread juan
Hi, Below is the connector definition, we had 1 case reported that we know of but during the reported incident couldn't find anything in the logs during the transactions. We haven't been able to reproduce the issue. We do have another environment that was added into the mix and handles the

Re: Mixed User Session

2021-01-15 Thread Olaf Kock
On 15.01.21 15:57, juan wrote: > Hi, > > We were running tomcat 8.5.57 on CentOS 7 and together with CAS SSO, we > have multiple servers behind an AWS load balancer setup with sticky > sessions. We encountered a weird situation where a user who logged into > their application was presented with

Re: Mixed User Session

2021-01-15 Thread Christopher Schultz
Juan, On 1/15/21 10:58, Christopher Schultz wrote: Juan, On 1/15/21 09:57, juan wrote: We were running tomcat 8.5.57 on CentOS 7 and together with CAS SSO, we have multiple servers behind an AWS load balancer setup with sticky sessions. We encountered a weird situation where a user who logged

what is the exact order of filters?

2021-01-15 Thread Johan Compagner
Hi here we have a case: 51754 – Tomcat7 filters from conf/web.xml are applied after filters defined in WEB-INF/web.xml (apache.org) that already says that the conf/web.xml are later then WEB-INF/web.xml is it so that the order is something

Re: Mixed User Session

2021-01-15 Thread Christopher Schultz
Juan, On 1/15/21 09:57, juan wrote: We were running tomcat 8.5.57 on CentOS 7 and together with CAS SSO, we have multiple servers behind an AWS load balancer setup with sticky sessions. We encountered a weird situation where a user who logged into their application was presented with another

Mixed User Session

2021-01-15 Thread juan
Hi, We were running tomcat 8.5.57 on CentOS 7 and together with CAS SSO, we have multiple servers behind an AWS load balancer setup with sticky sessions. We encountered a weird situation where a user who logged into their application was presented with another users profile after login. Has

Re: TomCat 9 service failed to start on Windows after TomCat 9 update

2021-01-15 Thread Christopher Schultz
Igor, On 1/15/21 08:23, Igor Sluge wrote: I updated TomCat for my app to the latest TomCat 9.0.41 and after update TomCat service failed to start successfully as Windows service. I just see 404 error when trying to open the TomCat app. Also there are no logs at all in the log directory! If I

Re: Tomcat server not considering Mime Type - Request urgent help!!

2021-01-15 Thread Christopher Schultz
Swathi, On 1/15/21 08:41, Jonnalagadda, Swathi (External) wrote: My web application is trying to open the xls file by passing the file to request.getDispatcher method. It is supposed open up download dialogue box but it is not doing. After you get a request dispatcher, what are you doing with

Re: Tomcat server not considering Mime Type - Request urgent help!!

2021-01-15 Thread Mounika Reddy
As Niranjan said, pls validate the headers first and it may be not the case in Tomcat7 but there are multiple points which must have updated probably triggering it. Only way to verify is set Content-Disposition header accurately and verify if browser can see it On Fri, Jan 15, 2021, 8:41 AM

RE: Tomcat server not considering Mime Type - Request urgent help!!

2021-01-15 Thread Jonnalagadda, Swathi (External)
Hi Chris My web application is trying to open the xls file by passing the file to request.getDispatcher method. It is supposed open up download dialogue box but it is not doing. If I set the content-type explicitly to response it is showing up the box. With Tomcat 7 it was never an issue and

Re: TomCat 9 service failed to start on Windows after TomCat 9 update

2021-01-15 Thread Robert Turner
I would check permissions on the folders/files. The account running the windows service may not have permissions to execute the programs or maybe access the directories. That's the first thing I would check. (Also check Event Viewer for any related messages). On Fri, Jan 15, 2021 at 8:24 AM Igor

TomCat 9 service failed to start on Windows after TomCat 9 update

2021-01-15 Thread Igor Sluge
  Hello, I updated TomCat for my app to the latest TomCat 9.0.41 and after update TomCat service failed to start successfully as Windows service. I just see 404 error when trying to open the TomCat app. Also there are no logs at all in the log directory! If I start TomCat locally by the

Re: Tomcat server not considering Mime Type - Request urgent help!!

2021-01-15 Thread tomcat/perl
Hi again. Sorry for the noise. The page which you quoted (https://www.geeksforgeeks.org/http-headers-content-disposition/), itself contains a formal reference to RFC 5987 (https://tools.ietf.org/html/rfc5987), which formally defines the extended "filename*" header parameter below. On

Re: Tomcat server not considering Mime Type - Request urgent help!!

2021-01-15 Thread tomcat/perl
On 14.01.2021 22:55, Christopher Schultz wrote: Content-Disposition: attachment; filename="[filename]"; filename*=utf-8''[filename in UTF-8 encoding] Hi Chris. Do you have any reference for the above ? (the "utf8''" part is new to me)