@Test
public void testOneWay() throws Exception {
ServerFactoryBean svrBean = new ServerFactoryBean();
svrBean.setAddress("http://localhost/Hello2");
svrBean.setTransportId("http://schemas.xmlsoap.org/soap/http");
svrBean.setServiceBean(new GreeterImplDoc());
svrBean.setServiceClass(Greeter.class);
svrBean.setEndpointName(new QName("http://apache.org/hello_world_doc_lit",
"SoapPort"));
svrBean.setServiceName(new QName("http://apache.org/hello_world_doc_lit",
"SOAPService"));