try {
String application_context_resource = args[0];
ApplicationContext app_context = new ClassPathXmlApplicationContext( new String[] {application_context_resource} );
SearchSession search_service = (SearchSession) app_context.getBean("SearchService",SearchSession.class);
log.info("JZKit server startup completed");
}
catch ( Exception e ) {
log.log(Level.SEVERE,"Problem",e);