Yeah, one of the things my team at work is looking at is building web services in Java that provide CRUD functionality for Databases. In doing this, we figured that it's only logical to keep the information in an XML format because our transport is SOAP/XML and rarely do we do anything except display this data on a web page... So, if we can get the information in XML from the DB (namespaced so we don't have to do any crazy namespacing), we can keep it in XML until it gets to the client where they'd simply put it through a stylesheet for output! No unnecessary Java Objects!
|