Hi,
I am a Hessian Newbie, so please excuse my newbie-ness :)
1. I would like to know if Hessian can handle https URLs instead of HTTP
and is there anything i have to do to enable this?
2. Can hessian also handle Persistent Connections for more than 1 call
to the same servlet? For example:
Interface CalcService
{
int add(int a, int b)
int sub(int a, int b)
}
Class Calc extends HessianServlet implements CalcService
{
...
}
From the client:
ClacService s = factory.get();
// start persistant connection here...
s.add(1,3);
// reuse the prev connection for this call
s.sub(10,2);
// close connection here
Is it possible to do something like this?
Regards,
Saqib
------------------------------------------------------------------------
SAGA D.C. GmbH Phone : +49 (0) 6731-9428-0
Berliner Strasse 73 Fax : +49 (0) 6731-9428-26
D-55232 Alzey
mailto:saqib.rasul@xxx.de http://www.sagadc.de
Received on Sun 06 Nov 2005 05:07:40 -0800
This archive was generated by hypermail 2.1.8 : Thu Sep 28 2006 - 20:16:41 PDT