Spring remoting substitutes the need for an EJB component (session bean), by just using java beans and providing it the dual capability of operating in a local and distributed environment with Spring IOC configuration.
With simple configuration of the spring bean factory xml you can change the protocol for distribution of you methods. This comes with support for,
- Rmi
- Http
- Hessian & Burlap - Hessian is a small protocol, J2ME devices like cell-phones can use it to connect to Resin servers
Burlap & Hessain are light weight protocols from caucho. Use the reference ling to know more.
Reference:
http://www.caucho.com/resin-3.0/protocols/hessian.xtp
http://www.caucho.com/resin-3.0/protocols/burlap.xtp
http://www.springframework.org/documentation
2 comments:
Looks great.how heavy it is?
Compare to seesion bean, I can switch toSpring becas it may not require the container stuffs.
is this arichtecture is same as .Net Remoting?
Spring Remoting is very powerful and you may want to move to it. Not sure about the .Net Remoting either.
-Sen
Post a Comment