Minor Bug in HessianServlet

From: Andrus Adamchik <andrus@xxx.org>
Date: Sat Apr 01 2006 - 02:03:21 PST

I am using Hessian 3.0.13. HessianServlet doesn't set serializer
factory on the HessianInput instance (see the patch below).

Thanks
Andrus

--- HessianServlet.java.orig 2006-04-01 13:59:02.000000000 +0400
+++ HessianServlet.java 2006-04-01 13:59:52.000000000 +0400
@@ -333,6 +333,7 @@
        OutputStream os = response.getOutputStream();
        HessianInput in = new HessianInput(is);
+ in.setSerializerFactory(getSerializerFactory());
        HessianOutput out = new HessianOutput();
        out.setSerializerFactory(getSerializerFactory());
        out.init(os);
Received on Sat 01 Apr 2006 02:03:21 -0800

This archive was generated by hypermail 2.1.8 : Thu Sep 28 2006 - 20:16:41 PDT