Return-Path: Delivered-To: apmail-incubator-cxf-user-archive@locus.apache.org Received: (qmail 20015 invoked from network); 5 Nov 2007 18:39:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Nov 2007 18:39:47 -0000 Received: (qmail 13403 invoked by uid 500); 5 Nov 2007 18:38:51 -0000 Delivered-To: apmail-incubator-cxf-user-archive@incubator.apache.org Received: (qmail 13372 invoked by uid 500); 5 Nov 2007 18:38:51 -0000 Mailing-List: contact cxf-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-user@incubator.apache.org Delivered-To: mailing list cxf-user@incubator.apache.org Received: (qmail 13352 invoked by uid 99); 5 Nov 2007 18:38:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Nov 2007 10:38:51 -0800 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of ajvespa@cbs.com designates 170.20.0.80 as permitted sender) Received: from [170.20.0.80] (HELO mail80.bc.fw.cbsig.net) (170.20.0.80) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 05 Nov 2007 18:39:18 +0000 Received: (qmail 23194 invoked from network); 5 Nov 2007 18:38:29 -0000 Received: from unknown (HELO NYBCSG1.cbs.ad.cbs.net) (170.20.38.124) by mail80.bc.fw.cbsig.net with SMTP; 5 Nov 2007 18:38:29 -0000 Received: from NYDCSX13.cbs.ad.cbs.net ([170.20.28.231]) by NYBCSG1.cbs.ad.cbs.net with Microsoft SMTPSVC(6.0.3790.3959); Mon, 5 Nov 2007 13:38:29 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: Help! Aegis not mapping Java.Util.Collection properly Date: Mon, 5 Nov 2007 13:38:27 -0500 Message-ID: <1997218A615DFB4C9B04CF503B2DF63494FF85@NYDCSX13.cbs.ad.cbs.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Help! Aegis not mapping Java.Util.Collection properly Thread-Index: Acgf2w3NBUfhs3ubSqaXYC3fNaFQCw== From: "Vespa, Anthony J" To: X-OriginalArrivalTime: 05 Nov 2007 18:38:29.0265 (UTC) FILETIME=[0F283010:01C81FDB] X-Virus-Checked: Checked by ClamAV on apache.org Hello, I am having a problem trying to return a 'complex object' that contains a java.util.collection as one of the properties. I've written a SOAP service using Aegis binding and I want to pass in a generic return type from the various data accessing functions I have written. I am getting this error in my SOAPUI: Mon Nov 05 13:17:48 EST 2007:WARN: error: src-resolve: type 'ArrayOfAnyType@http://www.w3.org/2001/XMLSchema' not found. I have defined the class as such: @XmlType(name =3D "wsResponse", namespace =3D = "http://soap.ws.test.com/") public class wsResponse { protected Collection response; protected String sName; protected String sessionId; public wsResponse(Collection os) { this.response =3D os; } public wsResponse() { } public void setResponse(Collection response) { this.response =3D response; } public Collection getResponse() { return response; } ... (other setters//getters) } Please help, I have been held up for 2 days! Though there are no real examples out there, the Xfire/CXF docs 'claim' this should be automatic with Java 1.5 Thanks! -Tony