You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by ax...@ws.apache.org on 2004/08/30 08:16:19 UTC

[jira] Resolved: (AXISCPP-142) Invalid prefixes and postfix used in serializer/deserialzer methods in generated code

Message:

   The following issue has been resolved as FIXED.

   Resolver: Samisa Abeysinghe
       Date: Sun, 29 Aug 2004 11:15 PM

The problem was fixed for c++ code generated for document literal style WSDL.
RPC style C++ generated code looks different from document style related code and hence nothing was done.
---------------------------------------------------------------------
View the issue:
  http://issues.apache.org/jira/browse/AXISCPP-142

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: AXISCPP-142
    Summary: Invalid prefixes and postfix used in serializer/deserialzer methods in generated code
       Type: Bug

     Status: Resolved
   Priority: Major
 Resolution: FIXED

    Project: Axis-C++
 Components: 
             WSDL processing
   Fix Fors:
             1.3 Beta

   Assignee: Samisa Abeysinghe
   Reporter: Samisa Abeysinghe

    Created: Sun, 29 Aug 2004 9:41 PM
    Updated: Sun, 29 Aug 2004 11:15 PM
Environment: 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.




---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira