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 "Deepal Jayasinghe (JIRA)" <ji...@apache.org> on 2007/04/26 19:51:15 UTC

[jira] Resolved: (AXIS2-1899) BeanUtil.getOMElement is not working with object hierarchy

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

Deepal Jayasinghe resolved AXIS2-1899.
--------------------------------------

    Resolution: Fixed

issue is fixed in 1.2 branch

> BeanUtil.getOMElement is not working with object hierarchy
> ----------------------------------------------------------
>
>                 Key: AXIS2-1899
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1899
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: databinding
>    Affects Versions: 1.1
>            Reporter: pinston
>         Assigned To: Deepal Jayasinghe
>
> Test OK:
> ------------
> public class MyObject {
>     private String prop;
>  
>     public void setProp(String prop) {
>         this.prop = prop;
>     }
>  
>     public String getProp() {
>         return this.prop;
>     }
> }
> MyObject myObject = new MyObject();
> myObject.setProp( "test" );
> OMElement omElement = BeanUtil.getOMElement(createEmployeeMethod, new Object[] {myObject}, null, false, null);
> => xml: <arg0 xmlns=""><prop>test</prop></arg0>
> Test Failed :
> ----------------
> public class ExtObject extends MyObject {
> }
> ExtObject myObject = new ExtObject ();
> myObject.setProp( "test" );
> OMElement omElement = BeanUtil.getOMElement(createEmployeeMethod, new Object[] {myObject}, null, false, null);
> generated xml: <arg0 xmlns="" />
> Why
> ------
> I think the correction is in the method BeanUtil.getPullParser in line 83
> JProperty properties [] = jClass.getDeclaredProperties(); should be replaced by JProperty properties [] = jClass.getProperties();
> with this correction everything works fine

-- 
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