Tagged Questions
The unmarshalling tag has no wiki summary.
8
votes
3answers
767 views
Marshalling/unmarshalling XML in Scala
I am looking at various approaches for marshalling/unmarshalling data between Scala and XML, and I'm interested in getting community feedback (preferably grounded in first-hand knowledge/experience).
...
8
votes
5answers
9k views
Unmarshalling collections in JaxB
suppose I have this class:
public class A {
private HashMap<String, B> map;
@XmlElement
private void setB(ArrayList<B> col) {
...
}
private ...
7
votes
2answers
525 views
How to marshal structs with unknown length string fields in C#
I get an array of bytes, I need to unmarshal it to C# struct.
I know the type of the struct, it has some strings fields.
The strings in the byte array appears as so: two first bytes are the length of ...
5
votes
1answer
570 views
JAXB: Problem deserializing a class B that extends a class A
Please consider the following example:
There is a ClassA and a ClassB which extends it. My problem is now that I have to unmarshall a ClassB from an xml file. Please note that ClassA can not be ...
5
votes
1answer
3k views
Grails Date unmarshalling
If I get the following json from a RESTful client, how do I elegantly unmarshal the java.util.Date? (Is it possible without providing (aka. hard-coding) the format, that's what I mean by elegantly...)
...
4
votes
1answer
147 views
Configure how JAXB unmarshalls boolean
I have some annotated JAXB beans which I am using to unmarshal some XML.
I have several attributes annotated with @XMLAttribute with the type Boolean.
@XmlAttribute
private Boolean ...
4
votes
2answers
979 views
how to use some indirection when unmarshalling json to java bean using Jersey using jaxb annotations
I'm trying to unmarshall some received json (from Jira restful web service).
Problem is: an "issue" has a "summary" property and a list of fields.
Summary is not present as an attribute in the ...
4
votes
3answers
1k views
Invalid XML Character During Unmarshall
I am marshalling objects to XML file using encoding "UTF-8". It generates file successfully. But when I try to unmarshal it back, there is an error:
An invalid XML character (Unicode:
0x{2}) was ...
4
votes
1answer
540 views
JAXB unmarshall to multiple pojo's
I was trying to figure out if it is possible to unmarshall an xml element to multiple pojos. for example:
for xml:
<type>
<id>1</id>
<cost>12</cost>
...
4
votes
4answers
2k views
JAXB - Ignore element
Is there any way to just ignore an element from Jaxb parsing?
I have a large XML file, and if I could ignore one of the large, complex elements, then it would probably parse a lot quicker.
It would ...
4
votes
2answers
163 views
JAXP for PHP (PAXP?)
Is there a framework like JAXP for PHP?
I need a framework that, as JAXP, create a XML file from an object. This framework has to know how to map the object to XML, respecting its structure when ...
4
votes
2answers
350 views
Faster/more efficient alternatives to Ruby's Marshal?
I'm looking for a drop-in replacement of Ruby's Marshal capability, which hopefully has one or more of the following advantages over Marshal:
faster serialization/deserialization
more concise (or ...
4
votes
1answer
723 views
Customizing error handling of JAXB unmarshall process
Assuming I have a schema that describes a root element class Root that contains a List<Entry> where the Entry class has a required field name.
Here is how it looks in code:
@XmlRootElement
...
3
votes
2answers
82 views
Processing XACML policies in java
I am actually working on a project that needs to parse the XACML policy file and detect the policies defined inside , to do so i've seen some of api but either they speak about how to build a request ...
3
votes
2answers
145 views
Unmarshalling an xml element which is not part of namespace
I have an xml response coming from a webservice:
<ns2:response xmlns:ns2="http://abc.com">
<ns2:msgHeader>
<ns2:empid>1234</ns2:empid>
...
3
votes
1answer
460 views
JPA persistence property interfering with JAXB
I have a library of JAXB/Entity objects I am using to unmarshall a xml stream. I can do so with no problems just running as a Java SE application. I have moved everything over to a Java EE app using ...
3
votes
1answer
301 views
@XmlElements and @XmlJavaTypeAdapter not working together
I'm having a small problem with JAXB unmarshalling in that my input XML can be wrapped by one of two elements, for example:
<Output>
<Update>
<Channel>
...
3
votes
1answer
544 views
JAXB: how to make JAXB NOT to unmarshal empty string to 0
I have a DTO class with a field such as:
@XmlAttribute
@NotNull
private Integer number = null;
I'm trying to unmarshal xml such as
... number="" ...
I need the nuber field to stay null, so ...
3
votes
1answer
472 views
JAXB Unable To Handle Attribute with Colon (:) in name?
I am attempting to use JAXB to unmarshall an XML files whose schema is defined by a DTD (ugh!).
The external provider of the DTD has specified one of the element attributes as xml:lang:
<!ATTLIST ...
3
votes
3answers
1k views
JAXB Unmarshall Created an Empty Object
I am using JAXB to unmarshal an XML file into an object tree. The root object is non-null, but all of it's members are null even though there is data in the XML file. My object classes were ...
3
votes
1answer
5k views
How to use JAXB to marshall/unmarshall a collection of MyBean
I have a MyBean annotated
@XmlRootElement
public class MyBean ...
Marshalling/Unmarshalling MyBean w/o problems, e.g.
JAXBContext jaxbCtx = JAXBContext.newInstance(MyBean.class);
Marshaller m = ...
3
votes
3answers
961 views
simple marshalling unmarshalling objects
json support is one of the new features of delphi 2009 and delphi 2010. I want to know if it's there any simple function to marshalling/unmarshalling directly between string and object like in ...
3
votes
3answers
946 views
How can I have JAXB call a method after it has completed unmarshalling an XML file into an object?
I am using JAXB to unmarshall an XML file into a Java object -- standard stuff. Once JAXB has completed this, I'd like a method to be called on the newly created object.
Is there a mechanism to do ...
2
votes
1answer
35 views
Formatting a JAXB Element during Marshalling
How do you format the value of a JAXBElement? I understand how to use an XmlAdapter to format regular classes like Float, CustomDate, etc... but if I have a JAXBElement this complicates things.
For ...
2
votes
1answer
91 views
JAXB multiple mappings for attribute
I'm just changing design errors made in the past, but want to keep backwards compatibility of my software. For this I would need some way to map two flavors of an xml file into one java bean. Can this ...
2
votes
2answers
59 views
Jax-b is interpreting too much while unmarshalling
I have a boolean field called a and two methods void setA(String a) and boolean isA(). I have set @XmlAccessorType(XmlAccessType.NONE) and used @XmlAttribute for the setter.
Because the getter ...
2
votes
1answer
68 views
JAXB: Unmarshalling multiple elements with distinct attribute into separate fields within the same java class
I am consuming a soap service that returns the following response
<...>
<SearchResult>
<Score>1</Score>
<HasImage>False</HasImage>
...
2
votes
0answers
172 views
Can't Marshal java.lang.String
Here is my dilemma:
I have a dto class for marshaling back and forth from/to XML.
Here is the trick: Because of the number of dto classes our project deals with that are collections with a plural ...
2
votes
3answers
97 views
How to ignore (efficiently) most part of an XML structure when unmarshalling with JAXB?
When processing a web service response with a quite complex XML structure, I am only interested with a very small subset of information. Lets consider the using JAXB has to be used in this context.
...
2
votes
1answer
214 views
Override declared encoding during unmarshalling with JAXB
I have an XML file with its encoding set within it: <?xml version="1.0" encoding="ISO-8859-15"?> but really file is encoded in UTF-8. Is there a way to override encoding declared in XML file ...
2
votes
1answer
899 views
“Unrecognized field (..), not marked as ignorable” while jaxb unmarshalling xml input
in a typical Spring MVC project, I am trying to access objects that are fetched from an external webservice source. The actual integration of this data wasn't actually - until now - my part within the ...
2
votes
1answer
207 views
JAXB inheritance using substitutionGroup not working when unmarshalling
I have 10 schemas under different namespaces, each with a complexType and associated element that is a substitution for an element called 'Report', for example:
<xsd:element name="MyReport" ...
2
votes
2answers
158 views
Jaxb - how do i unmarshal one xml element to multiple fields?
xml:
<root>
<element>value (something)</element>
</root>
I need to unmarshall this xml to two different fields in my java class.
I tried the following but it didn't work. ...
2
votes
3answers
1k views
JAXB partial-unmarshalling Elements without @XMLRootElement
I am using the partial-unmarshalling example of JAXB, but I am unable to unmarshal XML-Elements which are not on the root-level (cause they don't have an @XmlRootElement tag). In my example I tried to ...
2
votes
1answer
365 views
How to unmarshal empty element into empty string with JAXB
There is a pseudo code like this:
Alma alma = new Alma();
alma.setKorte(""); //Korte is a string member
marshaller.marshal(alma, stringwriter);
System.out.println(stringwriter.toString());
And it ...
2
votes
1answer
237 views
JAXB Unmarshalling to entities error
I have an issue unmarshalling a xml stream to entities. My foreign keys never get set to an object with the proper primary key, they just get set to an emtpy object.
The class with the foreign keys ...
2
votes
2answers
666 views
What is the benefit of JAXB over XSLT?
I've been going over this in my head and trying out different approaches for a few days now and I've searched SO (see What is best practice in converting XML to Java object?) and also Google for using ...
2
votes
3answers
937 views
Enums don't match schema: problem with jaxb or xsd?
I'm trying to use JAXB to unmarshal this file into Java objects. I know that there's a problem with SAX in J6 that rejects the maxOccurs line, and I've changed it to unbounded. However, when I xjc ...
2
votes
1answer
170 views
Hudson - Clean up old plugin data
I wrote some Hudson plugin's that have changed a bit in terms of the fields and class names (re factoring mostly to clean up the code). Generally speaking everything works fine, but when starting up, ...
2
votes
1answer
482 views
JAXB Web Services: Multiple Object Marshalling
I can marshal and unmarshal 1 object with no problems (in netbeans); I need to know how to do this with multiple objects? I can't generate anything but null pointer exceptions when trying to unmarshal ...
2
votes
3answers
553 views
JAXB marshalling/unmarshalling without any configuration
I'm trying to marshal/unmarshal Java ValueObject class through JAXB.
To do it, I found that it requires XML Schema file and ObjectFactory class
that can be automatically created by ant.
If so, it ...
2
votes
2answers
255 views
JAXB mapping elements with “unknown” name
I have an XML which is out of my control on how it is generated. I want to create an object out of it by unmarshaling it to a class written by hand by me.
One snippet of its structure looks like:
...
2
votes
1answer
1k views
JAXB (un)marshalling of xsd types: xsd:base64Binary and xsd:hexBinary
JAXB maps both xsd:base64Binary and xsd:hexBinary types to byte[].
Given that I have a schema/a DOM Element representing each of these types such as:
<foo>ABCD</foo> for xsd:hexBinary ...
2
votes
0answers
452 views
Unmarshalling SOAP Envelope from file in Java
I want to unit-test the mapper objects that map/translate web service types generated by wsimport in to my own domain objects. I also want to test error-scenarios, such as SOAP faults and such, and I ...
2
votes
1answer
395 views
Problem in implementing Parcelable containing other Parcelable
I'm implementing Parcelable class that has another Parcelable insde.
In OuterParcelable class:
@Override
public void writeToParcel(Parcel dest, int flags) {
Bundle tmp = new Bundle();
...
2
votes
1answer
2k views
3 counts of illegalannotationexceptions
I have never used JAXB before. I am working on a test harnesses project. I have around 20 different testcases. when i run my test i get this error.
my structure is like
A is the bestTestCase class.
...
2
votes
3answers
1k views
JAX-RS JSON java.util.Date Unmarshall
I'm using Jersey (jax-rs), to build a REST rich application.
Everything is great, but I really don't understand how to set in JSON Marshalling and Unmarshalling converting option for dates and ...
2
votes
3answers
2k views
Java XML Unmarshalling fails on ampersand (&) using JAXB
I have the following XML:
<?xml version="1.0" encoding="UTF-8"?>
<details>
...
<address1>Test&Address</address1>
...
</details>
When I try to unmarshal ...
2
votes
3answers
691 views
Suitable XML Marshaller and Unmarshaller
We have an XML that needs to be converted to an object and vice versa. Something like Xstream does. Until now we were using Xstream to marshall and unmarshall the object/xml.
However the problem is ...
2
votes
4answers
3k views
Intermittent ClassCastException from ElementNSImpl to own type during unmarshalling
We are experiencing an exceedingly hard to track down issue where we are seeing ClassCastExceptions sometimes when trying to iterate over a list of unmarshalled objects. The important bit is ...