-
JShooter VS others?
Hi every one.
I need a to distribute my project in Network and I m searching for a reliable, powerful and well-structured thing to work with it easy.
I heard about Corba,RMI,JMS,JShooter.and I know that all of them can do great job for me . but I wanted to know more in detail .Actually I need someone who works with them compare them? for example which one is more confusing and which one increase the coast and resource.
-
Hi, RMI or EJB are good, but they communicate through their own protocol, if you’d like to communicate over HTTP: Hessian and Burlap have proprietary messages and their own serialization mechanism. HTTP Invoker requires both sides of a
service to be running on the Java platform and using the Spring framework but it can serialize all kinds of Java objects. If you need to use several languages/platforms, you can use SOAP or RESTful web services.