Tagged Questions
2
votes
2answers
69 views
How to tell JAXB which fields to serialize at run time?
I want to selectively serialize fields based on the request and the user.
For example, an admin user would be served an XML with some additional fields. Whereas a normal user would get an XML without ...
1
vote
1answer
114 views
JAX-RS and JAXB entity causes bad request with space before xml preamble
I'm testing my JAX-RS service using the RESTClient FireFox extension. Sometimes I mistakenly paste in a space before the xml preamble. This causes a 400 Bad Request when I do my PUT. Is there anyway ...
2
votes
1answer
108 views
Compatiblity Issue of asm 3.1 and org.eclipse.persistence.asm-2.3.2.jar (jersey-moxy 1.15)
A similar problem as in Compatibility Issue of ASM 3.1 and HIbernate and JAX-RS
seems to have hit me:
my Jersey / JPA based rest application which also uses jersey-moxy (version 1.15 of jersey) throws ...
1
vote
0answers
46 views
Print MOXy generated XML before sending the output to JAX-RS Web Service client
How to print the XML generated by MOXy when using it on the server side to print the XML before sending the XML to the RESTful Web Service client.
@GET
@Path("/sma")
...
4
votes
2answers
2k views
How to POST JSON request to a Jersey REST service?
I can successfully post XML data to my service, but, trying to do the same using JSON is failing. The POJO is:
@XmlRootElement
public class Address {
String city;
String zip;
//Getters ...
3
votes
1answer
203 views
Is there a possibility to hide the “@type” entry when marshalling subclasses to JSON using EclipseLink MOXy (JAXB)?
I'm about to develop a JAX-RS based RESTful web service and I use MOXy (JAXB) in order to automatically generate my web service's JSON responses.
Everything is cool, but due to the fact that the web ...
4
votes
2answers
2k views
NPE Thrown Marshalling Entity in JAX-RS
I have a JAX-RS webservice that makes use of JPA entity classes. I have a resource class like this:
@Path("/entity")
public class MyEntityResource
{
@GET
@Produces(MediaType.APPLICATION_XML)
...