Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
All platforms
Description
The generated source has Ref postfix and _ prefix used in the Axis_DeSerialize[className] and Axis_Serialize_[className] methods.
This causes trouble in serialization/deserialization
e.g.
param->tModelKey_Ref = pIWSDZ->getAttributeAsString("tModelKey_Ref",0);
param->_operator = pIWSDZ->getAttributeAsString("_operator",0);
This should be corrected to
param->tModelKey_Ref = pIWSDZ->getAttributeAsString("tModelKey",0);
param->_operator = pIWSDZ->getAttributeAsString("operator",0);
etc.