Re: [s2]: Populating an array of java beans in action classes

2008-08-26 Thread vics
Thanks for your quick response. I can do this, but problem is that: in my application there 15 - 20 such beans . I have used this code only for demo. Moreover, all these beans come from a jar file generated from clientgen ant tool from BEA. basically I am just consuming the web services & creati

Re: [s2]: Populating an array of java beans in action classes

2008-08-26 Thread Dave Newton
--- On Tue, 8/26/08, vics wrote: > What I can't do in my application is: > * Can not convert an array of beans into java.util.List You can, however, convert a list of beans into the array required by your application; this is probably the approach I'd take for now. Dave