return "http://localhost:" + CXFTestSupport.getPort2() + "/WSSecurityRouteTest/GreeterPort";
}
@Test
public void testInvokeService() throws Exception {
Client client = new Client(getRouterAddress());
Greeter greeter = client.getClient();
assertEquals("Get a wrong response", "Hello Security", greeter.greetMe("Security"));
}