Hi Richard,

Web services and Lists (collections) are not good friends.  :(  
 
Ie. I cannot serialize a POJO if it contains a List property - because it
then becomes opaque to the WSDL.



> -----Original Message-----
> From: Richard Yee [mailto:[EMAIL PROTECTED]
> Sent: Sunday, October 08, 2006 5:13 AM
> To: user-java@ibatis.apache.org
> Subject: Re: Arrays instead of java.util.List?
> 
> Abdullah,
> Why do you want to use Arrays[]? Lists are better because they can grow
> and can always be converted into an array.
> 
> -Richard
> 
> Abdullah Kauchali wrote:
> > Hi Larry,
> >
> > Yup, I can do that.  But how can I make iBatis' internal 1:M feature
> > populate arrays of POJO's instead of java.util.List?
> >
> > What's the best way of doing that?
> >
> > Regards,
> >
> > A
> >
> >
> >
> >
> >
> >
> >> -----Original Message-----
> >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf
> >> Of Larry Meadors
> >> Sent: Saturday, October 07, 2006 7:12 PM
> >> To: user-java@ibatis.apache.org
> >> Subject: Re: Arrays instead of java.util.List?
> >>
> >> Nope, but you can do this easy enough:
> >>
> >> return (YourType[])queryForList("blah.query", parms).toArray(new
> >> YourType[0]);
> >>
> >> Larry
> >>
> >> On 10/7/06, Abdullah Kauchali <[EMAIL PROTECTED]> wrote:
> >>
> >>> Abdullah Kauchali:
> >>>
> >>>> I have a complex type as a Java Bean that I'd like to populate using
> >>>>
> >> the
> >>
> >>>> 1:M
> >>>> ibatis facility and I cannot serialize a java.util.List - only array
> >>>>
> >> of
> >>
> >>>> objects.
> >>>>
> >>> Complex type as in a web services complex type.
> >>>
> >>>
> >>>
> >
> >
> >

Reply via email to