(How) does Axis handle Bean serialization/deserialization for beans with read-only properties ?
It seems that without a setter property, you wouldn't be able to deserialize, and in fact I am getting an NPE at BeanDeserializer line 198 (3/13/02 CVS) because the code assumes that getWriteMethod() can't return null. But there have to be many standard classes with RO properties. The specific ones I'm tripping over are the various EJB interfaces such as EJBObject and EJBHome, which have getters for associated properties like Handles but no setters. Is there something I need to code in either <BeanMapping> or registerTypeMapping() for this ? Thanks, Frank