Question: could someone help me how should my Java class look like when I would like to unmarshall this xml? Currently I have it like this: and the Error class looks like this: I do not receive any unmarshalling error ...

Question: I have a DataBean like this: Inside of the DataBean, the list must be sorted, otherwise the DataBean is not usable in my domain. In order to avoid side effects, I copy the list in the setter and then ...

Question: I want to unmarshal the followng json in golang. I am not able to access the inner data . What is the best way to do it? I use but i dont see the values inside the struct. Result: ...

Question: So I am working with an external API, whose responses I wanted to parse. The incoming responses are of a fixed format i.e. So for each response I am parsing the items. Now the items can be of diff ...

Question: I am reading some data packets in Go, where the fields are C++ data types. I tried parsing the data but I am reading garbage values. Here is a small example – the data spec sheet for a particular ...