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:32:45 UTC

cxf git commit: DBF fix

Repository: cxf
Updated Branches:
  refs/heads/master 42c4f5a8d -> a351032f5


DBF fix


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

Branch: refs/heads/master
Commit: a351032f544e823c788cb0c0c29edbf39ee0b2eb
Parents: 42c4f5a
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:30:08 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/a351032f/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 1e18f29..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
@@ -181,6 +181,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");