soap-serialization

Which SOAP XML object serialization library for Java would you recommend?

Which Java SOAP XML object serialization library would you recommend for Java object exchange with other platforms / languages (.NET, Delphi)? Communication scenarios could look like this: Java object writer -> SOAP XML text -> .NET or Delphi object reader .NET or Delphi object writer -> SOAP XML text -> Java object reader I know th...

SoapFormatter versioning problem

In the application(C#) I am maintaining, there are some serialized object stored in the database, and some are created several versions ago. Now when the app tries to deserialize those objects, it throws an exception: Parse Error, no assembly associated with Xml key .... (the assembly name and version) As I understand it, when the Soap...

Converting binary serialization to Soap serialization

I want to send binary serialized messages, but I am worried that if there is an error when de-serializing, I won't be able to figure out the problem. For SOAP, I would just be able to see the messages, but I don't want all of the CPU overhead for XML processing of SOAP messages. The other problem with SOAP messages is that they fail if...

Serialization bugs in .NET?

I'm reading up on serialization, and have so far been messing with BinaryFormatter and SoapFormatter. So far, so good - and everything have both Serialized and Deserialized perfectly. However, when I try the code below, I would expect my datafile to NOT contains the info for Name - and it does. Why would it contain that, when I specify ...