Uploaded image for project: 'Axis-C++'
  1. Axis-C++
  2. AXISCPP-142

Invalid prefixes and postfix used in serializer/deserialzer methods in generated code

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 1.3 Beta
    • WSDL processing - RPC
    • 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.

      Attachments

        Activity

          People

            samisa Don Samisa Abeysinghe
            samisa Don Samisa Abeysinghe
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: