Return-Path: Delivered-To: apmail-ibatis-user-java-archive@www.apache.org Received: (qmail 14581 invoked from network); 7 Oct 2006 17:12:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Oct 2006 17:12:31 -0000 Received: (qmail 11067 invoked by uid 500); 7 Oct 2006 17:12:30 -0000 Delivered-To: apmail-ibatis-user-java-archive@ibatis.apache.org Received: (qmail 11047 invoked by uid 500); 7 Oct 2006 17:12:29 -0000 Mailing-List: contact user-java-help@ibatis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user-java@ibatis.apache.org Delivered-To: mailing list user-java@ibatis.apache.org Received: (qmail 11036 invoked by uid 99); 7 Oct 2006 17:12:29 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Oct 2006 10:12:29 -0700 Authentication-Results: idunn.apache.osuosl.org header.from=larry.meadors@gmail.com; domainkeys=good X-ASF-Spam-Status: No, hits=0.5 required=5.0 tests=DNS_FROM_RFC_ABUSE DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [64.233.182.188] ([64.233.182.188:3718] helo=nf-out-0910.google.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 41/C5-09076-9FFD7254 for ; Sat, 07 Oct 2006 10:12:26 -0700 Received: by nf-out-0910.google.com with SMTP id x30so1480978nfb for ; Sat, 07 Oct 2006 10:12:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=hsrnzGF/AQVSbeWp5q7+gIzZvNf/30VukBZ7izGvMsp0uTnVyJ76DBNcZv/1oTYyxesQTYbEm11InXxVAkcAT4C6+2PZcu9I+JNa0Dd/ci2HJbc4duHT4tGkd5H9Q0ObTRGqDpDheRxJ5NAwCjykd81Q+5qD+ddIdXjzeINRPnI= Received: by 10.49.93.13 with SMTP id v13mr7298057nfl; Sat, 07 Oct 2006 10:12:22 -0700 (PDT) Received: by 10.49.91.13 with HTTP; Sat, 7 Oct 2006 10:12:22 -0700 (PDT) Message-ID: Date: Sat, 7 Oct 2006 11:12:22 -0600 From: "Larry Meadors" Reply-To: lmeadors@apache.org Sender: larry.meadors@gmail.com To: user-java@ibatis.apache.org Subject: Re: Arrays instead of java.util.List? In-Reply-To: <000f01c6ea0d$e28ddc20$0300a8c0@isanusid800> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000e01c6ea09$92d44d30$0300a8c0@isanusid800> <000f01c6ea0d$e28ddc20$0300a8c0@isanusid800> X-Google-Sender-Auth: 2b98069f5028b35f X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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 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. > >