0
votes
1answer
68 views

Setting null string as xsi:nil=true

I have this class package com.ni.schemas.provider_framework._1.providers; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import ...
0
votes
0answers
150 views

Trying to JSON array for Java List from Jersey JSONConfiguration

I can't seem to get Jersey's JSONConfiguration to output a list of objects as an array of objects. Here's the (boiled-down) code for the List declaration: @XmlElementWrapper(name="InputParameters") ...
0
votes
0answers
183 views

Writing Jersey client with @XmlRootElement embedded POJO classes

I have a POJO class with an @XmlRootElement that I am returning from the jersey service class.It produces both application/xml and application/json. When I am testing my Jersey service in Firefox ...
0
votes
1answer
541 views

Posting JSON via Jersey

I have this code ClientConfig config = new DefaultClientConfig(); Client client = Client.create(config); client.addFilter(new HTTPBasicAuthFilter(adminUser, adminPass)); ...
2
votes
2answers
432 views

Flexible marshalling with JAXB

I'm hoping to have a flexible way of marshalling objects. A verbose version for single objects and a less-verbose version for multiple object versions. For example, consider my department model: ...
1
vote
0answers
176 views

NullPointerException in EnumMap when auto generating wadl with Jersey

I am using Tomcat 7, Jaxb2 and Jersey1.11. I have a class EnumProperty which inherits from an abstract class Property. @XmlAccessorType(XmlAccessType.FIELD) public class EnumProperty extends ...
0
votes
0answers
340 views

Using jersey client API to read from handcrafted XML

I'm trying to use the jersey client API and JAXB bindings to receive XML data from a third-party REST service. The XML the service returns is somewhat less than perfect: looks like there's no ...
2
votes
1answer
1k views

Using MOXy's @XmlCDATA annotation with jersey

I'm working on REST web-service written with jersey and I'm trying to output some XML with CDATA sections in it. I understand the reference implementation of JAXB doesn't support that, so I've ...