FactoryBean for HTTP invoker proxies. Exposes the proxied service for
use as a bean reference, using the specified service interface.
The service URL must be an HTTP URL exposing an HTTP invoker service.
Optionally, a codebase URL can be specified for on-demand dynamic code download
from a remote location. For details, see HttpInvokerClientInterceptor docs.
Serializes remote invocation objects and deserializes remote invocation
result objects. Uses Java serialization just like RMI, but provides the
same ease of setup as Caucho's HTTP-based Hessian and Burlap protocols.
HTTP invoker is the recommended protocol for Java-to-Java remoting.
It is more powerful and more extensible than Hessian and Burlap, at the
expense of being tied to Java. Nevertheless, it is as easy to set up as
Hessian and Burlap, which is its main advantage compared to RMI.
author: Juergen Hoeller since: 1.1 See Also: HttpInvokerProxyFactoryBean.setServiceInterface See Also: HttpInvokerProxyFactoryBean.setServiceUrl See Also: HttpInvokerProxyFactoryBean.setCodebaseUrl See Also: HttpInvokerClientInterceptor See Also: HttpInvokerServiceExporter See Also: org.springframework.remoting.rmi.RmiProxyFactoryBean See Also: org.springframework.remoting.caucho.HessianProxyFactoryBean See Also: org.springframework.remoting.caucho.BurlapProxyFactoryBean |