Unmarshalling is the process of transforming the storage or transmission representation of an object back into its original memory representation. It is the inverse of marshalling.

learn more… | top users | synonyms

1
vote
0answers
7 views

Error on unmarshaling with generated code (moxy): “A descriptor with default root element … was not found in the project”

I generated code using moxy for different xsd-Files: http://www.forum-datenaustausch.ch/generalinvoiceresponse_400.xsd and ...
1
vote
1answer
9 views

facing issue dealing with collecitons in jaxb moxy unmarshalling due to getter method getting invoked twice

I am using jaxb moxy unmarshalling, and my java object has some logic in getter methods to set values in Array. so facing issue in unmarshalling, as the getter method is invoked twice by jaxb ...
0
votes
0answers
28 views

Spray File Upload: Unmarshalling MultiPartForm

I am learning Spray, using spray-can and spray-httpx (without spray-routing) to accept uploaded files. I have come up with the following: def receive = { ... case HttpRequest(POST, ...
1
vote
0answers
19 views

Using a JAXB XmlAdapter to adapt an entire list without a wrapper element

I'm trying to use an XmlAdapter to unmarshal XML into a custom collection type (that intentionally does not implement the Collection interface due to a conflicting restriction imposed by another use ...
0
votes
1answer
26 views

Custom marshalling, unstandard form

I know that there are Java libraries that convert XML strings into objects. Also, Jersey contains ways of consuming certain datatypes. My problem is that I have a String that represents an object ...
0
votes
2answers
25 views

Object XML mapping in Android

I am developing client server Model based application in which client is in Android and server in php . I want to transfer product information for example(Name,Price,Description) from client to ...
0
votes
1answer
8 views

SOAPFaultException: error unmarshalling return

I'm having trouble getting a person-object back from my WebService and always get this error message. As I don't even use this IndirectList, I am wondering what I am possibly doing wrong. Any ideas or ...
0
votes
1answer
35 views

What am I missing to pickle and unpickle Unicode

I'm working on a Py3k program that I want to be able to accept Unicode strings and pickle/unpickle them. However, it is defaulting to an ASCII codec, and complaining about a Unicode error: ...
0
votes
0answers
21 views

how to map same value to two different fields in jaxb while marshalling and unmarshalling

I have a xml tag Hello for which there is a field like below in my java class HelloWorld{ @XmlElement private String name; } While unmarshalling this successfully assigns Hello value to name ...
2
votes
1answer
75 views

Prevent mgo/bson Unmarshal to clear unexported fields

I try to populate the exported fields of a struct with content fetched from a MongoDb-database using the labix.org/v2/mgo package. mgo uses the labix.org/v2/mgo/bson package to unmarshal the data. ...
1
vote
1answer
68 views

How to marshal/unmarshal linked Java objects using JAXB

I've already asked a question about JAXB very recently which can be found at: How to marshal/unmarshal Java objects with private fields using JAXB. My current problem is that I am trying to marshal a ...
1
vote
2answers
122 views

How to marshal/unmarshal Java objects with private fields using JAXB

I know the basics of the JAXB API, but I am stuck with something I am trying to do, and I am not sure whether it is actually possible. Details are as follows: I have a class called Book with 2 public ...
-1
votes
0answers
65 views

Exception in thread “main” javax.xml.bind.UnmarshalException: unexpected element (uri:“”, local:“”). Expected elements are <{http://www.test.com

I have the following xsd <xs:schema xmlns="http://www.schema.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.schema.com" ...
0
votes
0answers
176 views

UnMarshalling content-type=application/x-www-form-urlencoded using Jaxb2Marshaller throws error “Content is not allowed in prolog”

I am trying to setup a rest service which handles request of content-type=application/x-www-form-urlencoded. I am currently using Jaxb2Marshaller for unmarshalling the request. However while ...
0
votes
1answer
32 views

Maven + Jaxb Marshalling Accent Characters + Unit Test

I currently have a unit test that is unmarshalling an XML file into Jaxb objects then marshalling it to a string and comparing it with the original xml string: @RunWith(SpringJUnit4ClassRunner.class) ...
-1
votes
2answers
51 views

Out of memory when unmarshaling the xml in camel dsl

I m facing OOM issue in below code from("file://" + getDumpDirLocation() + "?maxMessagesPerPoll=1&bufferSize=8192") .unmarshal().string("UTF-8") The xml file which gets dumped ...
0
votes
0answers
67 views

Store tag name into unmarshalled object with JAXB

I'm unmarshalling two XML files using JAXB and I'd like to check that there aren't contradictions between them, which involves checking the tags of the elements. In particular, I need to make sure ...
1
vote
2answers
65 views

Unmarshall xml using Document instead of StreamSource

I previously unmarshaled my documents with this Method from "javax.xml.bind.Unmarshaller" (i am using Moxy as jaxb provider): <Object> JAXBElement<Object> ...
0
votes
0answers
54 views

Inconsistent behavior while unmarshalling xml using JAXB

I'm using JAXB to unmarshal an object with collections nested inside, and getting inconsistent behavior. About 2-3 times out of 10 it will unmarshal the collection and have entries, the others... ...
1
vote
1answer
33 views

Extending or redefining XSD complexType

I try to extend the sitemap.xsd : I would like to add a new element (called 'crawl') to the tUrl complexType. So I created a sitemap-extended.xsd (I have redefined sitemap.xsd and I have extended ...
2
votes
1answer
112 views

JAXB unmarshal return null for attributes

After unmarshalling the XML file, all properties which are attributes in the XML file have the value NULL (fileDateTime, fileId, etc...) I don't really understand why as I have the correct ...
1
vote
1answer
24 views

JAXBException, Unmarshalling an XML Document

I'm getting this exception: Default constructor cannot handle exception type JAXBException thrown by implicit super constructor. Must define an explicit constructor
1
vote
1answer
64 views

JAXB: How to do mapping between xmlMessage and its Java Class to do unmarshal when we have a lot of type of xmlMessage

I have XSD file which I have processed using XJC to generate Java classes. <?xml version="1.0" encoding="UTF-8"?> <schema xmlns="http://www.w3.org/2001/XMLSchema" ...
1
vote
1answer
48 views

To what extend that Object to/from JSON/XML (un)marshaling can break

I've been thinking for these two JSON library: Google Gson JSON.Simple XStream Google Gson is pretty awesome, it can serialize class object that have no-args constructor. JSON.Simple is neat to ...
1
vote
1answer
158 views

javax.xml.bind.UnmarshalException

I am getting the following error javax.xml.bind.UnmarshalException: unexpected element (uri:"http://www.docsite.com/ClientConfig.xsd", local:"ClientConfig"). Expected elements are ...
0
votes
1answer
65 views

Custom IDResolver gets wrong target type

ITNOA I wrote this custom IDResolver : final class MyIDResolver extends IDResolver { Map<String, Course> courses = new HashMap<>(); /** * @see ...
0
votes
0answers
116 views

Error getting POST JSON in Java Jersey Resource

I'm having trouble getting a Jersey RESTful Service working. I'm getting the following error The server encountered an internal error () that prevented it from fulfilling this request. ...
0
votes
3answers
76 views

Is using Parcelable the right way to send data between applications?

I am trying to understand how to communication between applications in Android - not just between Activity instances. I set up a 'client' that sends a Messenger obj to a Service (in the Intent sent to ...
0
votes
1answer
88 views

ElementListUnion - Simple xml giving duplicate annotation for generic list objects

I am trying to deserialize a List field using elementlistunion Customer.java @ElementListUnion({ @ElementList(inline = false, type = Thing.class), @ElementList(inline = false, type = ...
4
votes
2answers
80 views

Changing class without changing a schema

I have a xsd schema which I'm not allowed to change. It produce generated java classes. Assume that classes looks as follows: class Data { protected List<Value> value; ...
2
votes
1answer
71 views

Simple XML ElementListUnion - two generic lists not allowed?

I am trying to desrialize an xml through simple framework. I have two lists whose types will be known only at runtime. So I used @ElementListUnion. Customer.java ...
1
vote
1answer
99 views

JAXB unmashalling cdata

I do not need a marshaller, I already got xml files. So I was folliwng http://theopentutorials.com/tutorials/java/jaxb/jaxb-marshalling-and-unmarshalling-cdata-block/#comment-7155 to see how to ...
1
vote
4answers
91 views

JAVA - unMarshaller not returning same object - code example

I'm trying a test code for Marshaller and unMarshaller on a simple java class. I create my object and set its ID. problem encountered is after unMarshalling it back to a java object the ID variable ...
0
votes
0answers
32 views

Jibx unmarshalling trim whitespace

i have a problem with trimming during unmarshalling XML to java objects using Jibx. Binding works fine except trim-whitespace="true". When I type some whitespace into source xml and try to ...
1
vote
1answer
127 views

ClassNotFoundException when unmarshalling and really don't know why

FIXED: ANSWER AT BOTTOM I am writing an android app for a project and im trying to use parcelable objects. I have 2 parcalable classes. The first is a normal class with only 2 arguments. The second ...
0
votes
0answers
51 views

JAXB error when unmarshalling, Exception in thread “main” javax.xml.bind.UnmarshalException:

I have a really wierd problem here. Setup: package jaxb_conainer_class; package loader_class; Main.java imports both loader_class and jaxb_conainer_class In the loader_class: JAXBContext ...
0
votes
1answer
46 views

Method skips return statement

I have an unmarshal method: public static Object unmarshalXmlTo0100(String xmlMsg, String destination, String resource) throws Exception { //init unmarshaller ByteArrayInputStream input = ...
0
votes
1answer
66 views

Jackson - binding first array member to object using annotations

As you could see from this question, the response that worldweather return is not quite pretty. They return array of current weather conditions (I try to understand why did they made it that way, ...
3
votes
2answers
77 views

Ruby writing and reading object to file

Ok, so my goal is to easily save some data to disk for later use. How do you simply write and then read an object? So if i have a simple class class C attr_accessor :a, :b def initialize(a, ...
1
vote
2answers
132 views

Mapping nested xml elements to single Java Object

How would I map this <urn:envelope xmlns:urn="urn:com.twinstrata.webservice:2.1"> <urn:encoded> <urn:response> <urn:license> ...
0
votes
1answer
208 views

Parse MathType MTEF data from OLE binary string

There is a need to convert the MathType equations in the MS-WORD 2003 or below to MathML in order to render nicely on the the web. The MathType's built in function "Publish to MathPage" can do the job ...
1
vote
1answer
36 views

@XmlAnyElement is using the first element only

I have an XML document with a list of Car ojects inside. In each car object there is a Person object as follows: <Cars> <Car id=1> <Owner> <Name> ...
7
votes
2answers
122 views

How do I call this c function in c# (unmarshalling return struct)?

I want to use c# interop to call a function from a dll written in c. I have the header files. Take a look at this: enum CTMBeginTransactionError { CTM_BEGIN_TRX_SUCCESS = 0, ...
1
vote
2answers
56 views

Complex type to String unmarshalling

Can anyone tell me how to convert a complex object into a String in JAXB? Scenario: The Car objects below has a nested element called Person. The Person element has 2 fields. Does anyone know how to ...
0
votes
0answers
133 views

JAXB unmarshalling returns null

I am trying to receive a xml/json based input to my JAX-RS web service. Here is the method signature: @POST @Path("/{param1}/webservice/{param2}") @Consumes({MediaType.APPLICATION_JSON, ...
0
votes
0answers
87 views

Unmarshalling soap response to json object

I am wondering how I go about unmarshalling a soap response and then using that response to populate a JSON object. The fields in the SOAP response do not exactly match up with the fields in the JSON ...
1
vote
1answer
139 views

Apache Camel problems aggregating large (1mil record) CSV files

My question is (1) is there a better strategy for solving my problem (2) is it possible to tweak/improve my solution so it works and doesn't split the aggregation in a reliable manner (3 the less ...
2
votes
1answer
132 views

Null values while un-marshalling XML with namspaces using JAXB

I have an issue while un-marshalling simple XML (a subset of CSDL) using JAXB. Someone already tried to assist me in the past (here), however it is partially worked and I don't know what to do... ...
1
vote
1answer
117 views

NullPointerException when unmarshalling different attributes types to the same java object

I'm having a serious issue while trying to unmarshal an XML. At first, the Member elements contained only Integer in their "value" attributes (like the first 'EnumType' element), however, now that ...
1
vote
1answer
122 views

Un-/Marshalling nested structures containing arrays of structures

I want to be able to receive some binary data over TCP/IP which consists of a known structure. I don't want to inter-operate with C or C++, so solutions that work for this case didn't help me. ...

1 2 3 4 5 7