View Single Post
  #3 (permalink)  
Old 07-04-2007, 02:39 PM
bbq bbq is offline
Senior Member
 
Join Date: Jun 2007
Posts: 134
bbq is on a distinguished road
Handling the XML once it has been received is pretty straight forward. You can use for instance JAXB to create Java objects based on the XML data. JAXB is part of the JWSDP. This will work for amounts of data that are small enough to fit in memory. If you want to process larger data sets, using a SAX parser is probably best.
Reply With Quote