@Test
public void testHandler() throws Exception {
String content = "<Root xmlns='http://springframework.org/spring-ws/1' " +
"xmlns:child='http://springframework.org/spring-ws/2'>" +
"<child:Child attribute='value'>Content</child:Child></Root>";
Source source = new StringSource(content);
Result result = new SAXResult(handler);
transformer.transform(source, result);
Name rootName = envelope.createName("Root", "", "http://springframework.org/spring-ws/1");
Iterator<?> iterator = envelope.getBody().getChildElements(rootName);
Assert.assertTrue("No child found", iterator.hasNext());