Re: SOAP Serialization problem

2002-09-10 Thread Scott Nichol
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

RE: SOAP Serialization problem

2002-09-10 Thread Alexandros Panaretos
: 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

Re: SOAP Serialization problem

2002-09-10 Thread Scott Nichol
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

RE: SOAP Serialization problem

2002-09-10 Thread Alexandros Panaretos
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

Re: SOAP Serialization problem

2002-09-10 Thread Scott Nichol
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: <

RE: SOAP Serialization problem

2002-09-10 Thread Alexandros Panaretos
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

Re: SOAP Serialization problem

2002-09-10 Thread Scott Nichol
> 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

RE: SOAP Serialization problem

2002-09-10 Thread Alexandros Panaretos
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

Re: SOAP Serialization problem

2002-09-09 Thread Scott Nichol
. Scott Nichol - Original Message - From: "Alexandros Panaretos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 02, 2002 11:03 AM Subject: SOAP Serialization problem Hi there, I am quite new to SOAP and would like some help with the following if

SOAP Serialization problem

2002-09-02 Thread Alexandros Panaretos
Hi there, I am quite new to SOAP and would like some help with the following if possible: Well, I am trying to pass my user defined object through SOAP. Now, I have read various tutorials about passing user defined objects through SOAP. From what I have understood there two ways of doing so: A.