List of usage examples for org.springframework.remoting.httpinvoker HttpInvokerProxyFactoryBean setCodebaseUrl
public void setCodebaseUrl(@Nullable String codebaseUrl)
From source file:org.jdal.remoting.httpinvoker.HttpInvokerRemoteReference.java
/** * {@inheritDoc}/*from w w w. jav a 2 s .c om*/ */ @Override public RemoteClient createRemoteClient() { HttpInvokerProxyFactoryBean factoryBean = new HttpInvokerProxyFactoryBean(); factoryBean.setServiceUrl(getServiceUrl()); factoryBean.setServiceInterface(getServiceInterface()); factoryBean.setCodebaseUrl(codebaseUrl); factoryBean.afterPropertiesSet(); return (RemoteClient) factoryBean.getObject(); }