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 2016/05/16 14:50:57 UTC

[1/2] cxf git commit: DBF fix

Repository: cxf
Updated Branches:
  refs/heads/3.1.x-fixes f0f937e51 -> 842880b35


DBF fix


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

Branch: refs/heads/3.1.x-fixes
Commit: 54ba27524150d464798353aa87ff824c1fd17821
Parents: f0f937e
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Mon May 16 15:28:26 2016 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Mon May 16 15:43:46 2016 +0100

----------------------------------------------------------------------
 .../src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java    | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/54ba2752/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
----------------------------------------------------------------------
diff --git a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
index bd823d8..4bb31a2 100644
--- a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
+++ b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
@@ -183,6 +183,7 @@ public class FaultTest extends AbstractBusClientServerTestBase {
         
         // Creating a DOMSource Object for the request
         DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
+        dbf.setNamespaceAware(true);
         DocumentBuilder db = dbf.newDocumentBuilder();
         Document requestDoc = db.newDocument();
         Element root = requestDoc.createElementNS("http://www.example.org/schema/DoubleIt", "ns2:DoubleIt");


[2/2] cxf git commit: Re-enabling test

Posted by co...@apache.org.
Re-enabling test


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

Branch: refs/heads/3.1.x-fixes
Commit: 842880b3527f0c97bbd1d1dc9f6e1e2aeba21a0a
Parents: 54ba275
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Mon May 16 15:50:49 2016 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Mon May 16 15:50:49 2016 +0100

----------------------------------------------------------------------
 .../src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java   | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/842880b3/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
----------------------------------------------------------------------
diff --git a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
index 4bb31a2..69ad62d 100644
--- a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
+++ b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/fault/FaultTest.java
@@ -135,9 +135,7 @@ public class FaultTest extends AbstractBusClientServerTestBase {
         bus.shutdown(true);
     }
     
-    // TODO - Enable when WSS4J 2.1.5 is released
     @org.junit.Test
-    @org.junit.Ignore
     public void testSoap12Mtom() throws Exception {
         SpringBusFactory bf = new SpringBusFactory();
         URL busFile = FaultTest.class.getResource("client.xml");