Mantis - Resin
Viewing Issue Advanced Details
199 minor always 05-20-05 00:00 11-30-05 14:44
user72  
 
urgent  
closed 3.0.13  
3.0.13 fixed  
none    
none 3.0.14  
0000199: HessianInputStream does not get its SerializerFactory set in HessianServlet
RSN-205
Line 335 in HessianServlet creates a HessianInput, but that input does not subesequently get its serializer factory set to the one configured on the servlet.

Currently:

HessianInput in = new HessianInput(is);

Should be:

HessianInput in = new HessianInput(is);
in.setSerializerFactory(getSerializerFactory());

Notes
(0000228)
ferg   
05-20-05 00:00   
ejb/3502