JDom « XML « Spring Q&A





1. JDom dependecy fails    forum.springsource.org

Hi all, I'm developing an addon for Spring ROO and I used JDom into it. When I tried to install my bundle into Spring ROO, it shows me that error: Code: ...

2. JDOM version 1.0    forum.springsource.org

I noticed that Spring uses JDOM b9. JDOM has been in 1.0 for more than half a year, b9 is old as the hills. http://www.jdom.org/news/ * Does anyone have any experience ...

3. JDOM & deserialising...    forum.springsource.org

JDOM & deserialising... I'm trying to write a Spring portlet that will be a client to a .Net Web Service. The service returns an XML document and uses a return type ...

4. XML String to JDom Document or Element?    forum.springsource.org

Hi guys I'm currently using the following code Code: JDOMSource source = new JDOMSource(parent); StringWriter sw = new StringWriter(); StreamResult result = new StreamResult(sw); getWebServiceTemplate().sendSourceAndReceiveToResult(source, result); SAXBuilder saxBuilder = new SAXBuilder("org.apache.xerces.parsers.SAXParser", ...