This post originated from an RSS feed registered with Java Buzz
by Arjen Poutsma.
Original Post: Thoughts on a SOA, part 5: To serialize or not to serialize
Feed Title: The Ancient Art of Programming
Feed URL: http://feeds.feedburner.com/TheAncientArtOfProgramming
Feed Description: A blog about programming in .NET and Java
Most SOAP stacks offer some sort of XML serialization. Using this type of serialization, you can transform the parameters of your class to SOAP messages, and back again. This seems very handy: within certain limits, you do not need to change your class to SOAPify it! Useful, yes, but harmless?, ...