String thisHost = NetworkUtils.getLocalHostname();
String thisPort = System.getProperty("test.functional.ServicePort","8080");
String[] args = {thisHost,thisPort};
String xml = "<x:hello xmlns:x=\"urn:foo\">a string</x:hello>";
System.out.println("Sending : " + xml );
String res = TestElem.doit(args, xml);
System.out.println("Received: " + res );
assertEquals("TestElementSample.doit(): xml must match", res, xml);