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

Amila Chinthaka Suriarachchi resolved AXIS2-3765.
-------------------------------------------------

    Resolution: Fixed

Already fix in the trunk

> BeanUtil.deserialize() tries to deserialize the wrong OMNode for byte[]
> -----------------------------------------------------------------------
>
>                 Key: AXIS2-3765
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3765
>             Project: Axis2
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>         Environment: Axis2/Tomcat 6 Serverside; C#.net on client side
>            Reporter: Sven Blösl
>            Assignee: Deepal Jayasinghe
>         Attachments: CountAbos.wsdl
>
>
> BeanUtil decodes the wrong node for byte[] which are part of a complex type 
> contained in a sequence due to a bug in 
> deserialize(Class beanClass,
>                                   OMElement beanElement,
>                                   ObjectSupplier objectSupplier,
>                                   String arrayLocalName) :
> BeanUtil class lines 381-383 do not take byte arrays into account:
>                             } else if (parameters.isArray()) {
>                                 partObj = deserialize(parameters, 
> (OMElement)parts.getParent(),
>                                         objectSupplier, prty.getName());
>                             }  ...
> so that  line 308 tries to decode the text of the parent node.
>                 if ("byte".equals(arrayClassType.getName())) {
>                     return 
> Base64.decode(beanElement.getFirstElement().getText());
>                 } else {
> The following patch to lines 381-383 performs the recursive call with the 
> correct node for byte arrays.
>                            } else if (parameters.isArray()) {
>                               if 
> ("byte".equals(parameters.getComponentType().getName())) {
>                                       partObj = deserialize(parameters, 
> (OMElement) parts, objectSupplier, prty.getName());
>                               } else {                                
>                                       partObj = deserialize(parameters, 
> (OMElement)parts.getParent(),
>                                                       objectSupplier, 
> prty.getName());
>                               }
>                            } ...
> Additionally Base64.decode(beanElement.getFirstElement().getText()) must be 
> replaced with Base64.decode(beanElement.getText()) 
> I'll attach my WSDL which was generated from my POJOs.

-- 
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to