1. JDom dependecy fails forum.springsource.orgHi 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.orgI 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.orgJDOM & 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.orgHi 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", ... |