1
vote
2answers
20 views
How to stream large Files using JAXB Marshaller?
Hi.
The Problem I'm facing is how to marshall a large list of objects into a single XML File, so large I can not marshall the complete list in one step. I have a method that retur …
0
votes
0answers
8 views
grails webservices returning an object List
I'm trying to expose a webservice via grails & cxf grails plugin.
this is the skeleton of the webservice:
class IssueService {
static expose=['cxf']
def List issue …
0
votes
0answers
24 views
STaX code is not working with JAXB
Found a sample STaX code in below link:
http://www.javarants.com/2006/04/30/simple-and-efficient-xml-parsing-using-jaxb-2-0/comment-page-1/
The below code doesn't work. I am not w …
1
vote
2answers
79 views
How do I add a namespace attribute to an element in JAXB when marshalling?
I'm working with eBay's LMS (Large Merchant Services) and kept running into the error:
org.xml.sax.SAXException:
SimpleDeserializer encountered a child
element, which is NO …
1
vote
3answers
212 views
How to generate @XmlRootElement Classes for Base Types in XSD?
I am having some issues with generating Java Classes with appropriate JAXB annotations from an XSD using XJC.
I have a relatively simple XSD file defining my XML schema. The compl …
0
votes
1answer
47 views
Is there a problem initializing a JAXBContext with a package in a library?
I'm trying to initialize a JAXBContext like so:
JAXBContext jaxbContext = JAXBContext.newInstance("ebay.apis.eblbasecomponents");
When the code is run, however, I get the follow …
0
votes
2answers
37 views
Need help in finding exception “javax.xml.bind.UnmarshalException - with linked exception:”
I tried to store a resume in an online CRM on trying to save that i got the following exception
javax.xml.bind.UnmarshalException
- with linked exception: [javax.xml.stream. …
1
vote
2answers
35 views
Jaxb2Marshaller and primitive types
Is it possible to create a web service operation using primitive or basic Java types when using the Jaxb2Marschaller in spring-ws? For example a method looking like this:
@Overrid …
2
votes
2answers
51 views
Is there any way to restict the marshalling depth for object graphs in JAXB?
I'm using JAXB for quick-and-dirty XML generation. I have a class that represents a tree structure:
@XmlRootElement(name = "element")
public class Element {
// [...]
@XmlEle …
0
votes
1answer
40 views
What do I need to do to accept an array parameter in webservice?
Hi I am use JAX-WS to make a web service. As parameters I am taking in two strings and an array of a objects whose type are a class in my project.
I have the webservice interface …
3
votes
1answer
58 views
How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?
I have a JAXB class like this:
public class Game {
private Date startTime;
@XmlElement
public Date getStartTime() {
return startTime;
}
public void s …
2
votes
1answer
46 views
How to handle different versions of xsd files in one java application?
The Facts
In my java application I have to handle XML files with different schema versions (xsd files) simultaneously. The content of the XML files changed only a little between t …
0
votes
1answer
24 views
How to write an external binding file for xjc?
The documentation of JAXB xjc says:
-b
Specify one or more external binding files to process. (Each binding file must have it's own "-b" switch.) The syntax of the exter …
0
votes
0answers
39 views
How to marshal a DataHandler annotated as @XmlAttachmentRef with JAXB?
I'm trying to marshal an object which has a DataHandler field with JAXB (2.1.12). For streaming support, the DataHandler is annotated with @XmlAttachmentRef. Serialization and stre …
0
votes
1answer
52 views
wsimport multiple generated wsdl’s
I am using jbossws (with jax-ws) to serve 3 webservices generated from annotated POJOs.
These 3 webservices share a few data classes and also have a common method (ping).
They all …
