}
}
protected Object resolveProxy(){
// client side
PluggableRmiProxyFactoryBean bean = new PluggableRmiProxyFactoryBean();
// set service URI amd interface
bean.setServiceUrl(getServiceUrl());
_log.debug("resolveProxy serviceURL: " + bean.getServiceUrl());
bean.setServiceInterface(MethodInvoker.class);
// TF:13/05/2009:Set this method to retry a connection if the server connection drops out for some reason
bean.setRefreshStubOnConnectFailure(true);
bean.afterPropertiesSet();
// get the proxy
return bean.getObject();
}