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 11:00:43 UTC

[cxf-fediz] branch 1.4.x-fixes updated: Updating Jetty9

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

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


The following commit(s) were added to refs/heads/1.4.x-fixes by this push:
     new 02f2207  Updating Jetty9
02f2207 is described below

commit 02f2207c938a44001b9e4b579b5e18ea3ffd6852
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 6d66077..6734134 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 23d18ec..867e4be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <javax.validation.version>1.1.0.Final</javax.validation.version>
         <jericho.version>3.3</jericho.version>
         <jetty8.version>8.1.22.v20160922</jetty8.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>