On Oct 6, 2007, at 11:40 AM, Avinash Lakshman wrote: > I am new to Hessian and trying to evaluate it for use. Does Hessian > absolutely need a web server or can RPC's be performed over TCP by > having the server listen on some port?
Hessian is flexible; it doesn't require a web server. You can use the Hessian2Input and Hessian2Output with any kind of underlying stream. Your application would be responsible for marshalling/unmarshalling the arguments, of course. If you have a streaming application (i.e. sending one-way packets of data for a long-lived connection as opposed to RPC), you might look at the new Hessian2StreamingInput and Hessian2StreamingOutput. -- Scott > > Thanks > A > _______________________________________________ > hessian-interest mailing list > [email protected] > http://maillist.caucho.com/mailman/listinfo/hessian-interest _______________________________________________ hessian-interest mailing list [email protected] http://maillist.caucho.com/mailman/listinfo/hessian-interest
