Author: jleroux
Date: Tue Jan 16 11:02:17 2018
New Revision: 1821230

URL: http://svn.apache.org/viewvc?rev=1821230&view=rev
Log:
Fixed: Fix the HttpServletRequestWrapper in ContextFilter.doFilter()
(OFBIZ-10167)

As reported by Deepak on dev ML the returned name should be a parameter and not 
enforced to "Authorisation"

This removes a wrong comment (no functional change)

Thanks: Deepak for bug report

Modified:
    
ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ContextFilter.java

Modified: 
ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ContextFilter.java
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ContextFilter.java?rev=1821230&r1=1821229&r2=1821230&view=diff
==============================================================================
--- 
ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ContextFilter.java
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ContextFilter.java
 Tue Jan 16 11:02:17 2018
@@ -206,7 +206,7 @@ public class ContextFilter implements Fi
                     value = 
ExternalLoginKeysManager.createJwt(externalServerUserLoginId, dnsName, 
webAppName , timeToLive);
                 }
                 if (value != null) return value;
-                return super.getHeader(name); // Here name is always 
"Authorisation"
+                return super.getHeader(name);
             }
         };
         // we're done checking; continue on


Reply via email to