Message from discussion
inheritance and soap
MIME-Version: 1.0
Received: by 10.150.12.4 with SMTP id 4mr77368ybl.10.1223672187286; Fri, 10
Oct 2008 13:56:27 -0700 (PDT)
Date: Fri, 10 Oct 2008 13:56:27 -0700 (PDT)
In-Reply-To: <0bec97ce-0768-45c7-bd48-d66a22eea408@d1g2000hsg.googlegroups.com>
X-IP: 81.146.11.63
References: <0bec97ce-0768-45c7-bd48-d66a22eea408@d1g2000hsg.googlegroups.com>
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.8.1.17)
Gecko/20080925 Fedora/2.0.0.17-1.oc2 (CK-IBM) Firefox/2.0.0.17,gzip(gfe),gzip(gfe)
Message-ID: <bfe2aad1-60e1-4529-a4df-c6c3edb1b93f@k7g2000hsd.googlegroups.com>
Subject: Re: inheritance and soap
From: Graham Charters <gchart...@googlemail.com>
To: phpsoa <phpsoa@googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Hi Flo,
Are you using SCA on the client side? Could you post a small sample
which demonstrates the problem and I'll take a look?
Regards, Graham.
On 3 Oct, 20:58, flo <f...@flobittner.de> wrote:
> I just ran into a problem with my soap connection. Server is java6 and
> client is php5.
>
> Everything works fine, but as soon as i work with a hierarchical
> structure of objects i get the problem that subclasses are lost.
> Following example shows a simple setup:
>
> Classes:
> class a
> class b extends a
> class c extends a
> class d extends a
>
> Via soap i send an array of a. On the client side b, c and d are lost
> now. Is there a way to keep subclasses?
>
> Thanks,