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