If you are using a Servlet then SSL will make no difference to Hessian as
the container will manage this.
>Saqib Rasul wrote:
>
>>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
Received on Sun 06 Nov 2005 15:59:48 -0800
This archive was generated by hypermail 2.1.8 : Thu Sep 28 2006 - 20:16:41 PDT