|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: What is XML For?
Similar functionality is available in the .NET Framework via XML Serialization. The following article on XML.com compares both mechanisms http://www.xml.com/pub/a/2002/07/24/databinding.html -----Original Message----- From: Jeff Lowery [mailto:jlowery@s...] Sent: Thu 10/24/2002 11:35 AM To: tblanchard@m...; xml-dev Cc: 'Paul Prescod' Subject: RE: What is XML For? > > That last bit - manipulate the data and then write a > modified version of > > it is something I don't see an analog for in XML. > > node.appendChildNode("foo") > doc.toXML() Or you can map class objects to XML structures using introspection: /** * Helper method for marshalling objects to XML. * * @param obj Object to marshal. */ private static void marshallBean( Object obj ) { if (obj == null ) throw new RuntimeException( "obj is null" ); OutputStream os = System.out; PrintWriter writer = new PrintWriter( os ); try { Marshaller.marshal(obj, writer); } catch (MarshalException e) { System.out.println( e.toString() ); } catch (ValidationException e) { System.out.println( e.toString() ); } writer.close(); } The above code uses Castor's Java Bean marshaller. http://www.castor.org/xml-mapping.html Don't like the default marshalling behavior? Change it with a mapping file (XML format). Unfortunately Castor is written in, and only works with, dirty old Java. However Castor code is open source, so porting it to Smalltalk is possible by motivated individuals such as yourself. ----------------------------------------------------------------- The xml-dev list is sponsored by XML.org <http://www.xml.org>, an initiative of OASIS <http://www.oasis-open.org> The list archives are at http://lists.xml.org/archives/xml-dev/ To subscribe or unsubscribe from this list use the subscription manager: <http://lists.xml.org/ob/adm.pl>
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








