Re: Issue with Axis when sending abstract class to .NET webservice

2007-09-02 Thread vladicaognjanovic
Can some please help, I have a same problem but once again: server side (web service in c#): public abstract class CatalogValue { public int id; public CatalogValue next; public CatalogValue() { } } public class CatalogValueImpl : CatalogValue //Linked list {

RE: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread David Elliott
s.apache.org> Subject: Re: Issue with Axis when sending abstract > class to .NET webservice> > David,> > You cannot send an element of an > abstract type. Your choices:> - don't send the element (requires > minOccurs="0")> - define it as a concrete t

Re: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread Anne Thomas Manes
yeeServiceProxy(); admin = service.getAdmin(person); Dave > Date: Fri, 2 Mar 2007 09:11:03 -0500 > From: [EMAIL PROTECTED] > To: axis-user@ws.apache.org > Subject: Re: Issue with Axis when sending abstract class to .NET webservice > > David, > &g

RE: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread David Elliott
11 -0500> From: [EMAIL PROTECTED]> To: > axis-user@ws.apache.org> Subject: Re: Issue with Axis when sending abstract > class to .NET webservice> > In the message that generates the fault, you send > an empty element.> That's not allowed:> >

Re: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread Anne Thomas Manes
Walker, Jeff <[EMAIL PROTECTED]> wrote: If he uses nillable="true" in the Schema, it might work? -jeff -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, March 02, 2007 4:04 PM To: axis-user@ws.apache.org Subject: Re: Issue with Axis when sendi

RE: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread Walker, Jeff
If he uses nillable="true" in the Schema, it might work? -jeff -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, March 02, 2007 4:04 PM To: axis-user@ws.apache.org Subject: Re: Issue with Axis when sending abstract class to .NET webservi

Re: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread Anne Thomas Manes
David, You cannot send an element of an abstract type. Your choices: - don't send the element (requires minOccurs="0") - define it as a concrete type Anne On 3/1/07, David Elliott <[EMAIL PROTECTED]> wrote: I am testing some interoperability between a Java Client using Axis and a .NET ASMX