public static void main(String[] args) throws Exception {
ApplicationContext ctx = new FileSystemXmlApplicationContext(
"./ch16/src/conf/jaxrpc/messageServiceClient.xml");
MessageService service = (MessageService)ctx.getBean("messageService");
MessageBean bean = service.getMessage();
System.out.println(bean);
}