xstream « XML « Spring Q&A





1. XStream Attribute Handling    forum.springsource.org

Hello: Does anyone know how to use the attribute functionality of Xstream http://xstream.codehaus.org/alias-tutorial.htm using the org.springframework.oxm.xstream.XStreamMarshaller class. As far as I have seen the only attributes that you can manage are ...

2. AbstractMarshallPayloadEndPoint with Xstream    forum.springsource.org

Sep 18th, 2007, 05:48 PM #1 jayws View Profile View Forum Posts Private Message Junior Member Join Date Sep 2007 Posts 1 AbstractMarshallPayloadEndPoint with Xstream Hi, I m new to spring ...

3. XStream and Namespaces    forum.springsource.org

XStream and Namespaces Hi, I know XStream has limited Namespace suport. What does that mean? No namespaces at all? My requests have a root namespace and I can not unmarshal them. ...

4. [oxm] XStream and useAttributeFor    forum.springsource.org

Hi all, How can I configure the useAttributeFor XStreamMarshaller's property in xml configuration file ? I can't do it by directly providing the class name, as setUserAttributeFor takes a map or ...

5. XStream - omitting fields with AnnotationXStreamMarshaller    forum.springsource.org

Hi. I want to use the AnnotationXStreamMarshaller to create XML streams from POJOs. This works fine so far. The problem Im facing is the annotation @XStreamOmitField and @XStreamAsAttribute. These annotations arent ...

6. Enhanced Spring-oxm's XStream's useAttributeFor    forum.springsource.org

I took the source code of Spring-OXM-1.5.7 and enhance the setAttributeFor to accept class mapped to comma separated fields, similar to setOmittedFields. I attached the patch if the module owner wants ...

7. XStream Marshalling Strangeness    forum.springsource.org

XStream Marshalling Strangeness I am using xstream to marshal an XML view and it works differently depending on the ClassName of the object I'm trying to marshal. On one output I ...

8. spring xstream xml ?    forum.springsource.org

How do i process xml input request for a spring service ? For example - Code: @RequestMapping(value = "/books/{isbn}") public ModelAndView getBookByIsbn(@PathVariable String isbn) { Book book = bookService.getBookByIsbn(isbn); ModelAndView mav ...