[ 
https://issues.apache.org/jira/browse/AXIS-2250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14259518#comment-14259518
 ] 

Adi commented on AXIS-2250:
---------------------------

Hi , 

I am using RAD to generate the  wsdl from java using axis1.4.  I am   facing 
the same issue. I am returning the Array in response, but the response is 
coming like:
<Details>
   <Details><Details/>
   <Details></Details>
<Details>

but expected is:

<Details>
   <item><item/>
   <item></item>
<Details>

is this fixed?

> AXIS array serialization: Incorrect element names of items in a list
> --------------------------------------------------------------------
>
>                 Key: AXIS-2250
>                 URL: https://issues.apache.org/jira/browse/AXIS-2250
>             Project: Axis
>          Issue Type: Bug
>          Components: Serialization/Deserialization
>         Environment: plattform: i386, OS: WinXP Pro, Java: 1.4.2_06
>            Reporter: Denis Schlesinger
>            Priority: Critical
>              Labels: array-items
>         Attachments: Post.zip, beans.zip
>
>
> -Web Service deployed as "wrapped/literal"
> The web service returns a custom bean style class which has an array of 
> another custom bean style class as a member.
> In the WSDL-file the array of the custom type is being described correctly:
> <complexType name="ArrayOf_tns1_EntityTypeBean">
>       <sequence>
>             <element maxOccurs="unbounded" minOccurs="0" name="item" 
> type="tns1:EntityTypeBean"/>
>         </sequence>
> </complexType>
> But when the Java object is being serialized during runtime the array is 
> being transfered to a list whose member elements DO NOT have the name "item" 
> as expected from the WSDL-file. All members of the list have the same name as 
> the list itself:
> <entities>
>     <entities>
>         ...
>     </entities>
>     <entities>
>           ... 
>     </entities>
>     <entities>
>           ... 
>     </entities>
> </entities>
> But this is expected: 
> <entities>
>     <item>
>         ...
>     </item>
>     <item>
>           ... 
>     </item>
>     <item>
>           ... 
>     </item>
>  </entities>



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to