Hello
I have a client, the following source code:
ApplicationContext applicationContext = new
ClassPathXmlApplicationContext(APPL_CONFIG);
JaxWsProxyFactoryBean factory =
applicationContext.getBean(CLIENT_FACTORY, JaxWsProxyFactoryBean.class);
MyServiceInterface client = (MyServiceInterface)factory.create();
String reply = client.greetMeString("Hans");
LOGGER.info(reply);
reply = client.greetMeString("Ruedi");
LOGGER.info(reply);
How can I shutdown or disconnect from the broker without making an exception
on the service side (not System.exit()!)?
Thanks for your help.
Regards
tim