The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

XStream JavaBeanConverter Spring config to serialize using getter

I would like to register XStream JavaBeanConverter in Spring config. I see test examples where JavaBeanConverter is registered as below. xstream.registerConverter(new ...
0
votes
1answer
38 views

Use of Spring oxm

I am new to spring. I was looking into spring-oxm's XStreamMarshaller. I was hoping to find a way to convert my objects into xml using this. The spring site tells me clearly how to do it but it still ...
3
votes
1answer
71 views

Does it work to put Java XML and persistance annotations on the same bean?

I haven't worked an implementation yet but I'm wondering if it's okay to put XML annotations as well as persistance annotations onto the same bean. The reason I'm asking is because I want to read in ...
0
votes
1answer
346 views

Producing a XML view with a XStreamMarshaller Spring

I am using the spring framework 3.1 (with hibernate) and I am trying to produce an XML representation like: <user> <iduser>1</iduser> <email>bla@hello.com</email> ...
0
votes
1answer
207 views

Multiple marshallers/unmarshallers with Spring OXM

I have a legacy web service project that receives two different XML schemas, but with the same attribute name (including the root element). I'm using Spring, OXM and JAXB2 for ...
1
vote
1answer
385 views

UnmarshalException in Spring 3.1 Restful Service Using xml Request

i use spring web 3.1.1 and spring oxm 3.1.1. when jaxb2marshaller attempt to unmarshall xml source to object blow Exception occured. 2012-12-03 ...
2
votes
1answer
233 views

Ignoring DTDs when unmarshalling with EclipseLink MOXy

When trying to unmarshall some XML into a POJO using EclipseLink MOXy I'm getting a FileNotFoundException where it's looking for the document's DTD as a relative path. Exception in thread "main" ...
5
votes
3answers
3k views

Managing JAXB-generated classes in a Maven project

I have a Maven-based project, in which I trying to add some JAXB classes automatically generated by the "jaxb2-maven-plugin" Maven plugin. However, my first cut has me in a circular dependency loop: ...
1
vote
2answers
587 views

Setting castor properties using Spring Oxm

Spring Oxm allows you to use different marshallers/unmarshallers and Castor is one of them. By default castor marshalles xml documents unindented and official documents tell that putting a ...
0
votes
1answer
2k views

Issue with JAXB and Spring OXM

I am trying to unmarshall a basic XML document which is as follows: <?xml version="1.0" encoding="UTF-8"?> <personnes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
0answers
282 views

Issue with Spring OXM When Unmarshalling XML data(oxm:jaxb2-marshaller)

Im trying to unmarshall the XML data into Object using Spring OXM Marshaller. Please find the code below that we have written for converting the same. In our project, we are using Rest Service to ...
0
votes
1answer
304 views

Spring OXM 3 + JiBXException: No marshaller defined for class

I have used Spring OXM and JiBX in my application. below is my Spring Config file <context:component-scan base-package="com.controller"/> <bean ...
1
vote
0answers
184 views

JiBX Marshalling: Omit XML Declaration?

I am using Spring to marshall Java objects to XML via JiBX. Some of the XML documents I am generating are really XML snippets that will be aggregated into a larger XML document. For this reason, I do ...
0
votes
2answers
858 views

(Solved) JAXB marshalling failure with “unsupported javax.xml.parser.transform.Result parameter”

I'm using Spring 3.1.1 with their OXM stuff, using the RestTemplate to post a request to another server. I'm using a class called ClassTermCollection as both the request and response sides of this, ...
1
vote
3answers
232 views

how to marshall more than one pojo's in a single xml?

Is it possible to marshall all pojo (of same type) in a single xml using o/x mappers? like I want to generate the following xml file <xml> <record1> <id>1</id> ...
0
votes
1answer
165 views

Spring OXM doesn't work with Struts 1

I use Spring OXM as well as Struts 1 but without using integrating Struts with Spring IOC. This is because the application is an old one and I'm just adding a module that involves the XML binding and ...
2
votes
1answer
1k views

Marshalling Different Classes with Spring MVC and JIBX

We are trying to build some RESTful services with Spring MVC. We will be providing several representations: XML, HTML, & JSON. We would like to use JiBX as the OXM technology. We are currently ...