You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2018/10/03 10:21:21 UTC

[cxf-fediz] branch master updated: Updating Jetty9

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git


The following commit(s) were added to refs/heads/master by this push:
     new 6c306eb  Updating Jetty9
6c306eb is described below

commit 6c306eb725e28e21bc3b8e124fa380fbb9bba5af
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Oct 3 11:21:06 2018 +0100

    Updating Jetty9
---
 .../main/java/org/apache/cxf/fediz/jetty9/FederationAuthenticator.java | 3 ++-
 pom.xml                                                                | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/plugins/jetty9/src/main/java/org/apache/cxf/fediz/jetty9/FederationAuthenticator.java b/plugins/jetty9/src/main/java/org/apache/cxf/fediz/jetty9/FederationAuthenticator.java
index dc25950..c658699 100644
--- a/plugins/jetty9/src/main/java/org/apache/cxf/fediz/jetty9/FederationAuthenticator.java
+++ b/plugins/jetty9/src/main/java/org/apache/cxf/fediz/jetty9/FederationAuthenticator.java
@@ -227,7 +227,8 @@ public class FederationAuthenticator extends LoginAuthenticator {
                         && HttpMethod.POST.asString().equals(request.getMethod())) {
                         Request baseRequest = (Request)req;
                             //(req instanceof Request)?(Request)req:HttpConnection.getCurrentConnection().getRequest();
-                        baseRequest.extractParameters();
+                        // Load the parameters (previously extractParameters)
+                        baseRequest.getParameterMap();
                         session.setAttribute(J_POST, new MultiMap<String>(baseRequest.getQueryParameters()));
                     }
                 }
diff --git a/pom.xml b/pom.xml
index de197da..b8a1f33 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,7 +54,7 @@
         <javassist.version>3.19.0-GA</javassist.version>
         <javax.el.version>3.0.0</javax.el.version>
         <javax.validation.version>1.1.0.Final</javax.validation.version>
-        <jetty9.version>9.3.9.v20160517</jetty9.version>
+        <jetty9.version>9.3.25.v20180904</jetty9.version>
         <junit.version>4.12</junit.version>
         <kerby.version>1.1.1</kerby.version>
         <log4j.version>1.2.17</log4j.version>