1
vote
2answers
13 views

TomEE Resteasy JAX-B -> Can not get Nested Object

i'm working on a RestWebService using Resteasy. The basic implementation works fine. Know I tried to return a Complexer- Object through rest... Actually its pretty easy..I thought...;-) I'm getting a ...
-1
votes
0answers
30 views

A POJO imlementing serializable is not handling by JAXB using Spring

I am going to develop Restful Webservice with Spring that passing an object to web service to save at server side. When I use simple POJO without extending Model class it runs fine. But when my POJO ...
1
vote
1answer
48 views

Returning XML object through jax-rs

I have a JAX-RS web service which looks like so: @Path("/status") @Produces("application/xml") @GET public PrecisionStatus getPrecisionValue(){ PrecisionStatus status = ... return status; } ...
0
votes
1answer
28 views

Spring 3 and JAXB

I have implemented a basic mvc app using Spring, i annotated my class as follows I have added Spring oxm to my pom, but not added jaxb or json handlers. My configuration is pretty much empty. So my ...
0
votes
0answers
33 views

Are JSON related annotations necessary in REST when using Jackson?

I'm using CXF, JAXB, and Jackson in my REST web services. From what I understand, when I annotate a class with JAXB annotations such as @XmlRootElement, and @XmlRootElement, Jackson also uses these ...
1
vote
1answer
64 views

Not show XML element if setter in JAXB Model was not executed

The following JAXB Model is given: @XmlRootElement(name = "Customer") @XmlAccessorType(XmlAccessType.FIELD) public Customer { @XmlElement(name = "Name") private String name; ...
1
vote
1answer
152 views

Sending application/xml POST message to REST API doesn't work

This is the POST method with JAX-RS annotations: @POST @Consumes(MediaType.APPLICATION_XML) @Produces(MediaType.TEXT_PLAIN) public Response storeUser(User user) { boolean wasStored = ...
0
votes
1answer
521 views

A message body writer for Java class java.util.ArrayList…and MIME media type text/xml was not found

Im using Jersey to build a REST Service and want to return a Collection<String> as XML. @GET @Produces(MediaType.TEXT_XML) @Path("/directgroups") public Response ...
0
votes
1answer
34 views

Jersy Rest Service 404 response in tomcat

i have a jersy service that i installed on one machine and worked perfectly. Then i imported the project on another machine, created a war and deployed it in tomcat 6.0. But now it returns 404. The ...
0
votes
1answer
95 views

Consuming REST web service like SOAP

I have an application which simply works as a translator between two web service. Hence, main goal/operation in my application is transformation from consumer XML to Gate Way XML. So far we have ...
0
votes
0answers
164 views

REST API Response

I am creating restful web services. I need to get the Response of GET method as List of all Categories whose site Id is 1. when I run the following code it will not give the error @GET ...
0
votes
0answers
135 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, ...
-1
votes
1answer
34 views

Loggin REST request/response in database

I would like to log REST request and reponse of my applications that use CXF and JAXB. I used to log the unmarshalled objects before calling the webservice using AOP and then I switched to cxf ...
0
votes
0answers
161 views

How to configure Spring's RestTemplate to return null when HTTP status of 404 is returned

I am calling a REST service that returns XML, and using Jaxb2Marshaller to marshal my classes (e.g. Foo, Bar, etc). So my client code looks like so: HashMap<String, String> vars = new ...
0
votes
0answers
32 views

Does RestyGWT understand JAXB annotation for polymorphism?

We have stubs generated from domain objects using xjc. These stubs have JAXB annotations on them. From RestyGWT wiki: ...
0
votes
1answer
136 views

RestEasy client: How to wrap list elements?

I am trying to create RestEasy client for RestEasy REST service, providing this entity: @SuppressWarnings("serial") @Entity @Table(name="product") @XmlRootElement(name="product") public class Product ...
1
vote
2answers
91 views

Unmarshalling with multiple namespaces

So, lets say I have this xml with several namespaces. <Envelope xmlns:pdi="http://www.mypage.com/schemas/pdi" xmlns:ib="http://www.mypage.com/schemas/ib" ...
1
vote
0answers
190 views

Jersey: Returning a List<Map<String,Object>>> as XML

I have a REST service that returns a List<Map<String,Object>> when a GET is performed on a particular resource. However it tries to return this list as application/xml and fails with the ...
1
vote
0answers
278 views

JSON serialization with root element does not work in RestEasy/Jettison/JBossAS7

I am desperately looking for a way to make JSON serialization with root element to work on JBoss AS 7.1 with RestEasy and Jettison provider enabled. Although, according to RestEasy documentation, ...
0
votes
0answers
400 views

Jersey Ajax POST error 415 (Unsupported Media Type)

My request doesn't get to the server... I've seen a lot of exemples but I couldn't find the error. I'm using jersey on GAE This's my resource class that receives the request @Path("/preMatricula") ...
1
vote
3answers
136 views

Rest - order GET response xml

I' m getting this simple xml from rest GET method. Restful service is written in java. <gear> <price>355.95929799818884</price> <idGear>1</idGear> ...
0
votes
1answer
190 views

invoking url with RESTTEmplate and binding response with JAXB

using this code i hava an url to invoke when i invoke this url using a navigator i hav an xml reponse that i want to retreive in an object named Response annotated by JAXB @Test public void ...
1
vote
2answers
142 views

Using BigDecimal in JAXB marshalling

I have a REST webservice with JAXB fields annotations. For example, @XmlAccessorType(XmlAccessType.PROPERTY) public class MyClass{ private BigDecimal sum; //+ getter and setter } If field ...
2
votes
1answer
273 views

JAXB Jackson - How to handle maps?

I have an web application in which I generate POJOs from my domain objects. One of my domain objects contain a map and JAXB generates the following schema: <xs:element name="persons"> ...
0
votes
0answers
38 views

How to get the concrete object in my restservice when it was transmitted as byte[]

I have this class on my server side package de.srs.pen.rapi.clientapp; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; ...
5
votes
1answer
207 views

How can I deseralize json object in java pojo class?

I have a simple JSON statement which type is very per need. like this { actor:{name:"kumar",mbox:"kumar@gmail.com"} verb :"completed" } or { ...
0
votes
2answers
263 views

Jersey JSON serialization with external classes

I am trying to create a rest api server on top of my quartz scheduler. I want to be able to return the org.quartz.Trigger and org.quartz.JobDetail objects as JSON. The problem is that I cannot add the ...
1
vote
1answer
476 views

Java JsonMappingException error

I have written a REST API in java using jersey. When I use XML requests everything works just fine, but when I use JSON requests I always get a JsonMappingException. The objects are generated using ...
1
vote
1answer
1k views

javax.xml.bind.UnmarshalException - with linked exception: [org.xml.sax.SAXParseException: Content is not allowed in prolog.]

customer.java @Entity @Table(name = "CUSTOMER", uniqueConstraints = { @UniqueConstraint(columnNames = { "CUSTNO" }) }) @XmlRootElement public class Customer implements Serializable { /** * ...
4
votes
1answer
113 views

NPE when using extension of a generic class in JAXB / Resteasy

I am using RestEasy 2.3.4. I am encountering NPE. I have a generic base class ValueContainer, which I plan to extend as StringValue, IntegerValue, BooleanValue, etc, by substituting the generic param ...
9
votes
1answer
597 views

REST services : how to specify annotatedMethod without using annotations

We are trying to take out all the annotations from our classes and configure it in a spring-config.xml. spring-config.xml looks like <jaxrs:server id="restServer" address="/rest/"> ...
2
votes
1answer
206 views

JAXBException occurred : class javax.jdo.identity.LongIdentity nor any of its super class is known to this context

The client code looks like: String urlGetRequestsByCustomer = baseUrl + "getRequestsByCustomer?customerID="; byte[] getRequestsByCustomerResponse = customerAgent ...
0
votes
1answer
53 views

Different sets of parameters converted/serialized for the same object for different REST methods?

Given the example at http://www.mkyong.com/webservices/jax-rs/download-xml-with-jersey-jaxb/ Is it possible to use the same Customer class with two different REST methods such that I get different ...
3
votes
1answer
359 views

Jersey, JAXB and getting an object extending an abstract class as a parameter

I want to get an object as a parameter of a POST request. I got an abstract superclass that is called Promotion and subclasses Product and Percent. Here's how I try to get a request: @POST ...
2
votes
1answer
293 views

MOXy's @XmlCDATA seems to have no affect

I would like to have the following returned to the browser (view source) <content> <![CDATA[Please show this inside a unescaped CDATA tag]]> </content> But I acutally get ...
1
vote
1answer
51 views

How do I request a subset of XMLElements using MOXy?

I have a RESTful service that needs to return only a few of the XmlElements if "selectors" are submitted with the request. The URL will take the form of: ...
1
vote
1answer
281 views

Marshalling List<String> with JAX-RS

I'm used to working with jax-ws where a wsdl file is generated, and a client can then be generated based on this wsdl file and its xsd(s) using a maven plugin. Using this client is no hassle at at, ...
1
vote
1answer
216 views

JAXB and Jersey - returning a list of objects extending an abstract class

I'm creating a REST service and I want to return a List of objects. So I got something like this: @GET @Produces(MediaType.APPLICATION_XML) @Path("items/") @XmlElementWrapper(name = "items") ...
0
votes
2answers
244 views

Problems in retrieving UTF-8 body from put request using a JAX-RS

I am trying to send the following utf-8 encoded XML to a rest api that is implemented using JAX-RS in Java. The XML data: <?xml version="1.0" encoding="UTF-8"?> ...
2
votes
1answer
71 views

Best practice for service links in XML?

Story Developing enterprise applications you may have soon several RESTful services across your application. I am using JAXB for XML generation. Embedding links in a XML response with a follow ...
0
votes
1answer
364 views

Using injection in JAXB XmlAdapters for Spring RESTful Controller

My application requires instances of the JAXB XmlAdapter such as public class CategoryTypeAdapter extends XmlAdapter<String, Category> { @Autowired protected CategoryService ...
1
vote
1answer
91 views

Reg xml output in RestEasy

I am trying to get an XML output from a restEasy service. And its working fine. The problem is i am not able to see elements which dont have any values. I used @xmlElement in domain class wherever ...
1
vote
1answer
200 views

Enunciate not recognizing JAXBElement

I have a fully working & tested REST API. To create the documentation I am using enunciate. The request & response objects are generated from xsd files using jaxb. In the documentation the ...
1
vote
1answer
280 views

Jaxb: Dealing with an optional element in rest webservice response

I have an Object Ticket which has an element totalNoOfTickets associated with it. I use this object Ticket in many methods of my restful service. However, i only need the element 'totalNoOfTickets' ...
1
vote
1answer
755 views

How to make a POST method that accepts multiple complex parameters in Jersey?

I've just learned how to send a single complex object to a Jersey-based REST web service by means of JAXB mapping: http://jersey.java.net/nonav/documentation/latest/xml.html#d4e820 However, I'd like ...
0
votes
1answer
127 views

Jaxb REST JSON to know which param is empty and which param was not sent

I have a web app with REST services. I have a bean class with JAXB annotations: @XmlRootElement(name = "foo") class Foo { @XmlElement private String bar1; @XmlElement private Double ...
0
votes
0answers
327 views

how RESTful web-services in java generates XML OR JSON

WEB-SERVICES in java RESTful: JAVA RESTful web services can generate response of type XML and JSON depending on the type of the request content type. I want to see the actual code of API how it ...
0
votes
1answer
1k views

Unable to consume JSON REST WS

I have an api which is working fine when it comes to XML post request. the XML is recieved in the Post body and processed accordingly. Here is the header of method @POST @Path ...
2
votes
0answers
203 views

JERSEY - Accessing Generic List in Response

Im facing isssue in getting Jersey Generic List in client response. I need to get it as Entity for some reason. @XmlRootElement(name="list") @XmlSeeAlso({RESTDomain.class}) public class ...
0
votes
1answer
112 views

Jersey failing to marshall object for GET response

I am writing a REST resource and I'm having trouble with an object @Entity @Table(name = "TABLE_A") @XmlRootElement(name = "typeA") public class TypeA implements GenericType{ @Id @Column(name = ...

1 2 3