Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, so I am still relatively new to Java and I'm making pretty good progress. My task is this:

  1. Build a SOAP request to initiate communicates with a web services server (done)
  2. Retrieve the resulting XML which contains a unique session ID which must be used in step 3 (done)
  3. Create another SOAP request using the unique session ID that returns another set of XML containing 100 rows of records (done)
  4. Extract specific data from these results (in progress)

My question is, what is the best way to store this data in Java so that I can sort through it easily? The data portion of my XML looks like this:

<RawData>
<item value="1" anothervalue="2" yetanothervalue="3"/>
<item value="4" anothervalue="5" yetanothervalue="6"/>
<item value="7" anothervalue="8" yetanothervalue="9"/>
</RawData>

I have no problem using XPath and SimpleXPathEngine to retrieve specific values from the XML. But I would really love to be able to store it in some sort of ResultSet type structure so that I could easily retrieve and manipulate it. I've used ResultSet with SQL queries so I'm familiar and comfortable with it, however, I'm not sure how to use it outside of an actual DB connection and query. What would be the best way to handle this?

Thanks in advance!

share|improve this question
I'm not a specialist of web services, but I think the usual way of using SOAP in Java is to use JAX-WS, which should generate beans mapping the structure of the exchanged XML for you. You'll just have to use these beans to build and read the messages. – JB Nizet Jul 5 '11 at 21:49
Indeed, I used SOAPConnectionFactory to build and send the message, and the response is stored in a SOAPMessage. The part that was giving me trouble was a block of CDATA buried within the XML response. All sorted out now, thanks for the feedback. – AWT Jul 18 '11 at 14:18

3 Answers

up vote 4 down vote accepted

If the document is not that big, you can use a DOM parser to get all data in-memory. That's either org.w3c.dom, dom4j or jdom

share|improve this answer
Or DOM4J, another fine effort for XML processing. – duffymo Jul 5 '11 at 22:42
@duffymo - yeah, thanks, actually I meant dom4j :) adding it – Bozho Jul 6 '11 at 6:49
@Bozho Thanks mate, this worked perfectly for what I needed. – AWT Jul 18 '11 at 14:16

Well since your data seems simple and regular I'd personally use JAXB - you can either create the classes by hand or use some tool to generate them from the XML schema.

That way you can easily work with a List of your classes and can use your usual java to get at the data or manipulate it, also you can easily ignore fields you don't need in your java representation so your classes will only cover those parts of the XML file you're really interested in.

share|improve this answer

You can store the data in a memory-only database. hsqldb supports this functionality.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.