Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 37e743ec8 -> fe97922c9
DBF fix Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/f06650ab Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/f06650ab Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/f06650ab Branch: refs/heads/3.0.x-fixes Commit: f06650ab0d0bc7f77998f4c98ed2100b5856dfd1 Parents: 37e743e Author: Colm O hEigeartaigh <[email protected]> Authored: Mon May 16 15:28:26 2016 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Mon May 16 15:51:25 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/f06650ab/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 3570d32..08f3e7f 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");
