How to learn complex object serialization?

2004-11-11 Thread John Menke
I've been having problems with trying to get axis to serialize / deserialize a set of two beans where one bean contains a reference to the other bean -- my service also returns an array of these complex objects. Can somebody point me to any resources for doing this? I have asked a few questions o

RE: Non-Bean Object Serialization

2004-01-23 Thread Keith Hatton
One other thing I forgot to mention is that in some cases you may find that you do not need to write a serializer. For many of my value objects the BeanSerializer or SimpleSerializer did just fine, it was only the deserialization that required me to write code. The WSDD files need somethin

RE: Non-Bean Object Serialization

2004-01-22 Thread Keith Hatton
Is there a good reference you can point me to for hand-creation of WSDL and WSDD that would include use of non-bean objects? I think that lack of knowledge is part of my stumbling. My knowledge is based mainly on "Building Web Services with Java" by Steve Graham et al, published by SAMS. The

Re: Non-Bean Object Serialization

2004-01-22 Thread Jason McCormick
> That's my experience - Java2WSDL would tend to generate a file > without most of the section, which was a pain, but > work-around-able. In my case these objects tended to be read-only, > without a default constructor, and with getX methods but no > corresponding setX methods. This is very simil

RE: Non-Bean Object Serialization

2004-01-22 Thread Keith Hatton
So for non-bean serialization/deserialization I can't use Java2WSDL and WSDL2Java? That's my experience - Java2WSDL would tend to generate a file without most of the section, which was a pain, but work-around-able. In my case these objects tended to be read-only, without a default constructo

Re: Non-Bean Object Serialization

2004-01-21 Thread Jason McCormick
xis.client.Call) using one of the registerTypeMapping() > methods. > > Let me know if you need any help figuring out the > Serializer/Deserializer interfaces. > > > Ian > > > > > > Jason > McCormickTo: >

Re: Non-Bean Object Serialization

2004-01-21 Thread ian_d_stewart
ckTo: [EMAIL PROTECTED] <[EMAIL PROTECTED] cc: com>

Non-Bean Object Serialization

2004-01-21 Thread Jason McCormick
Greetings everyone. I'm trying to use AXIS to extend a client-server app we have to start using SOAP as the transport and I'm running into a problem creating the WSDL. We have a quantity of code that are not beans for one reason or another and I'm trying to figure out how to send these over

RE: [Axis with C#.NET] Custom object serialization / deserialization

2003-07-27 Thread Kartik
L/path to the WSDL for your SOAP service. > > Bang, you're done. > > VS.net should create all the necessary mappings for > you. > > -Chris > > > -Original Message- > > From: Kartik [mailto:[EMAIL PROTECTED] > > Sent: Sunday, July 27, 2003 2:04 PM

RE: [Axis with C#.NET] Custom object serialization / deserialization

2003-07-27 Thread Chris Means
> -Original Message- > From: Kartik [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 27, 2003 2:04 PM > To: [EMAIL PROTECTED] > Subject: [Axis with C#.NET] Custom object serialization / > deserialization > > > Hello All. > > I have created a webservice using Ax

[Axis with C#.NET] Custom object serialization / deserialization

2003-07-27 Thread Kartik
Hello All. I have created a webservice using Axis is hosted on Tomcat - probably the simplest scenario. I have a GUI client app written in C# (using VS.net). I have an "embedded" webservice client in this C# application, that knows how to contact a given webservice and invoke a web method. As e

RE: object serialization

2002-06-18 Thread Pamela Fong
Never mind. Found the problem. It didn't like the member named 'A'. Renaming the data member seems to have solved the problem. -Original Message- From: Pamela Fong [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 1:50 PM To: '[EMAIL PROTECTED]' Subject:

object serialization

2002-06-18 Thread Pamela Fong
I have couple questions regarding object serialization. 1) Is there an easy way to serialize a java HashMap without having to write my own custom serializer? I only need to pass some key-value pairs as strings. I guess I can pass them as two string arrays if it's easier. 2) I have a simple