You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/08/29 16:41:18 UTC

[1/2] cxf git commit: [CXF-7448] Updating the test a bit

Repository: cxf
Updated Branches:
  refs/heads/master 12df8ab26 -> 472c37bca


[CXF-7448] Updating the test a bit


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/923ffe7c
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/923ffe7c
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/923ffe7c

Branch: refs/heads/master
Commit: 923ffe7c5c321ba8386aa9030b7fea24a24cfe61
Parents: ca1fa2f
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Tue Aug 29 17:40:25 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Tue Aug 29 17:40:25 2017 +0100

----------------------------------------------------------------------
 .../org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/923ffe7c/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
----------------------------------------------------------------------
diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
index 577f0e2..67a9cab 100644
--- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
+++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
@@ -111,8 +111,8 @@ public class JAXRSClientServerBookTest extends AbstractBusClientServerTestBase {
         String address = "http://localhost:" + PORT + "/bookstore/retrieve";
         WebClient wc = WebClient.create(address);
         wc.type("application/xml").accept("application/xml");
-        if (useReflection) {
-            WebClient.getConfig(wc).getRequestContext().put("use.httpurlconnection.method.reflection", true);
+        if (!useReflection) {
+            WebClient.getConfig(wc).getRequestContext().put("use.httpurlconnection.method.reflection", false);
         }
         // CXF RS Client code will set this property to true if the http verb is unknown
         // and this property is not already set. The async conduit is loaded in the tests module


[2/2] cxf git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cxf

Posted by se...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cxf


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/472c37bc
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/472c37bc
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/472c37bc

Branch: refs/heads/master
Commit: 472c37bcab01a476d283608a593484f308c39fc5
Parents: 923ffe7 12df8ab
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Tue Aug 29 17:40:48 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Tue Aug 29 17:40:48 2017 +0100

----------------------------------------------------------------------
 .../http/netty/server/NettyHttpServerEngine.java   |  5 +++++
 .../netty/server/NettyHttpServerEngineTest.java    | 17 +++++++++++++++++
 2 files changed, 22 insertions(+)
----------------------------------------------------------------------