System.getProperties().remove("com.sun.CORBA.POA.ORBPersistentServerPort");
URL wsdlUrl = this.getClass().getResource("/wsdl_systest/hello_world_corba.wsdl");
new SpringBusFactory().createBus("org/apache/cxf/systest/corba/hello_world_client.xml");
GreeterCORBAService gcs = new GreeterCORBAService(wsdlUrl, SERVICE_NAME);
Greeter port = gcs.getGreeterCORBAPort();
try {
port.pingMe("USER");
} catch (PingMeFault pe) {
assertTrue("Caught right exception ", pe != null);
return;
}
fail("Didn't catch an exception");