Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 3806 invoked from network); 22 Jul 2005 16:48:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Jul 2005 16:48:39 -0000 Received: (qmail 82877 invoked by uid 500); 22 Jul 2005 16:48:27 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 82779 invoked by uid 500); 22 Jul 2005 16:48:26 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 82675 invoked by uid 99); 22 Jul 2005 16:48:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jul 2005 09:48:25 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of davanum@gmail.com designates 64.233.170.195 as permitted sender) Received: from [64.233.170.195] (HELO rproxy.gmail.com) (64.233.170.195) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jul 2005 09:48:19 -0700 Received: by rproxy.gmail.com with SMTP id 34so39482rns for ; Fri, 22 Jul 2005 09:48:23 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=AtB/WB6wFWDFkpB7Phgq+UoBuRe94MHBIzz0/neY6o8TgKxFg86CWq3OnIXqVueb+ghZqJsubOKUfDBtQikGjpqN/QzfasIWF45jVdn7uLB34J3J+Hucrjqxf/MAo+BSznVY1gHXmuQwjiM7JYyUoZ5UJy0A6GmIjSO9c9rvNo0= Received: by 10.38.8.47 with SMTP id 47mr53301rnh; Fri, 22 Jul 2005 09:48:23 -0700 (PDT) Received: by 10.38.8.28 with HTTP; Fri, 22 Jul 2005 09:48:23 -0700 (PDT) Message-ID: <19e0530f050722094852ffeb23@mail.gmail.com> Date: Fri, 22 Jul 2005 12:48:23 -0400 From: Davanum Srinivas Reply-To: dims@apache.org To: axis-dev@ws.apache.org Subject: Re: Even more symbolTable woes? In-Reply-To: <1122046474.22963.15.camel@batgirl.epokinc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <1121983244.4458.22.camel@batgirl.epokinc.com> <19e0530f0507211529f75b242@mail.gmail.com> <1122046474.22963.15.camel@batgirl.epokinc.com> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N +1 to report a new one with this info. -- dims On 7/22/05, Steve Green wrote: > On Thu, 2005-07-21 at 18:29 -0400, Davanum Srinivas wrote: > > not a known problem. please dive in. > > > > -- dims >=20 > I dived in but I am not in too deep yet. It looks like the problem is > in JavaBeanHelperWriter and came as the result of: >=20 > revision 1.50 > date: 2005/03/20 18:58:49; author: gdaniels; state: Exp; > lines: +6 -7 > branches: 1.50.2; > Fix: >=20 > http://issues.apache.org/jira/browse/AXIS-1869 >=20 > Don't walk the ref chain unless the TypeEntry is a CollectionTE > - this should DTRT for true derived types. >=20 > Specifically, >=20 > // Otherwise, use the type at the end of the ref > // chain. > while (elemType.getRefType() !=3D null) { > elemType =3D elemType.getRefType(); > } >=20 > was changed to >=20 > // Otherwise, use the first non-Collection type we > // encounter up the ref chain. > while (elemType instanceof CollectionTE) { > elemType =3D elemType.getRefType(); > } >=20 > At this point, I am quickly reaching the depth of my understanding as to > what it going on here. Anyone (glen) want to shed some light? >=20 > Does it make sense to reopen/back-out AXIS-1869 or shall I create a new > report? >=20 > ~S >=20 >=20 --=20 Davanum Srinivas -http://blogs.cocoondev.org/dims/