public void testHelloService() throws Exception {
JaxWsProxyFactoryBean cpfb = new JaxWsProxyFactoryBean();
String address = serviceURL + "Hello";
cpfb.setServiceClass(Hello.class);
cpfb.setAddress(address);
Hello hello = (Hello) cpfb.create();
String reply = hello.sayHi(" Willem");
assertEquals("Get the wrongreply ", reply, "get Willem");
}