You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Sathija Pavuluri (JIRA)" <ji...@apache.org> on 2007/04/26 15:23:15 UTC

[jira] Updated: (AXIS2-2055) POJO service's return object loses data from parent class.

     [ https://issues.apache.org/jira/browse/AXIS2-2055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sathija Pavuluri updated AXIS2-2055:
------------------------------------

    Attachment: adb.patch

> POJO service's return object loses data from parent class.
> ----------------------------------------------------------
>
>                 Key: AXIS2-2055
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2055
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: rpc
>    Affects Versions: 1.1.1
>         Environment: Linux, Java 6.
>            Reporter: Sathija Pavuluri
>         Assigned To: Deepal Jayasinghe
>         Attachments: adb.patch, pojo-src.zip, tcpmon-response.txt
>
>
> I have a POJO service that returns an object which was populated with data on its fields and its parent fields as well.
> The client however retrieves null values for the parent's fields.
> The tcpmon response does not have the parent's fields in the soap response.
> Here are the objects.
>  public class CustomerDTO {
>      private String name;
>      private String phone;
>      private String address;
>  // public getters/setters
>  }
>  public class PremierCustomerDTO extends CustomerDTO {
>      private String clubName;
>      private String vipNumber;
>  // public getters/setters
>  }
>  My service class returns a PremierCustomerDTO with data populated on it for all
> five attributes.
>  Whereas, after I retrieve the PremierCustomerDTO at the client side, only the 2
> attrs (clubName, vipNumber) declared
>  on it are returned.
>  The other 3 from the parent are null.
> The entire source code is attached here.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org