PROTECTED]>
Sent: Tuesday, September 10, 2002 5:46 PM
Subject: RE: SOAP Serialization problem
Hi Scott
This has been very helpful. I will try it out and I will let you know if
it worked.
Out of curiosity do you know if Apache Axis handles this kind of
situation better?
Thanks again for
: Tuesday, September 10, 2002 8:35 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: SOAP Serialization problem
For an interface, you can use the BeanSerializer to serialize, assuming
the interface has getters for all the properties you want to serialize.
You can use the BeanSerializer to
wish SOAP provided a means to specify the structure in
which something is serialized separately from its actual type, but it does
not.
Scott Nichol
- Original Message -
From: "Alexandros Panaretos" <[EMAIL PROTECTED]>
To: "'Scott Nichol'" <[EMAIL PRO
m: Scott Nichol [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 10, 2002 7:03 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: SOAP Serialization problem
You are allowed to map just the interface, but you must provide the
interface as the data type for the parameter, n
r("arg2", MyClass.class, c, null));
params.addElement(new Parameter("arg3", MyClass2.class, c2, null));
Scott Nichol
- Original Message -
From: "Alexandros Panaretos" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Cc: <
you very much for your help.
Alex
-Original Message-
From: Scott Nichol [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 10, 2002 5:42 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: SOAP Serialization problem
You can pass a JavaBean that has a property
>
To: "'Scott Nichol'" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, September 10, 2002 5:27 AM
Subject: RE: SOAP Serialization problem
Hi Scott,
Thanks for your e-mail. The problems I had before I managed to solve. I
disco
nday, September 09, 2002 9:08 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: SOAP Serialization problem
Can you describe the problems you are having? Assuming you have getters
and setters for all properties you wish to serialize, and the properties
have data types that have seriali
Can you describe the problems you are having? Assuming you have getters and
setters for all properties you wish to serialize, and the properties have
data types that have serializers, BeanSerializer should work. As you have
experienced, there are no serializers for URL or DataInputStream.
Scott