0
votes
1answer
21 views

JAX-RS: retrieve alternate format based on URL pattern

I have a simple JAX-RS service running in a Tomcat 6 container. Is it possible to display not only text but XML in the browser, in a comparable manner as in Rails by appending .xml or .json? The ...
2
votes
2answers
60 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 ...
0
votes
1answer
46 views

Invalid content was found starting with element 'jaxrs:servicebeans'"

I am trying to run a JAX-RS service. While trying to start Tomcat server, I am getting an error "Invalid content was found starting with element 'jaxrs:servicebeans'" Detailed error is - * Invalid ...
1
vote
1answer
76 views

Serializing POJOs to/from JSON using jersey: weird nesting of elements

I got the following structure of my classes: @XmlRootElement(name="rootClass") @XmlAccessorType(XmlAccessType.FIELD) public class rootClass { @XmlElementWrapper(name="children") ...
0
votes
0answers
23 views

Custome exception XML Parsing Error: no element found

How to handle "XML Parsing Error: no element found" by some custom exception. I am getting this when I pass an invalid url through web services
0
votes
1answer
71 views

How can a client know the correct structure of objects in REST?

I'm using Java and JBoss7 with RESTEasy. I have created my RESTful service and a client to test my service: ClientRequest request = new ClientRequest( ...
1
vote
1answer
84 views

Generics With XML Schema [duplicate]

Possible Duplicate: How to create a generic XSD type Does anyone has a clue how to compose a XSD describing generic java class like: public class PageableResponse<T> { ...
0
votes
2answers
561 views

POST request (GWT : Requestbuilder). Wrong content type : application/x-www-form-urlencoded instead of application/xml

I want to call my REST service on the client side (GWT) using RequestBuilder. I need to serialize a complex type (Connexion), i chose Piriti. The serialization seems to work fine. Then i attach the ...
0
votes
1answer
148 views

View raw XML from JAXRS WebClient

I'm having a hard time finding the solution to this, perhaps because my terminology is wrong. What I would like to do is be able to log the RAW xml returned when I call .get() on a JAXRS WebClient. ...
1
vote
1answer
210 views

Create JAXBElement<Book> from String

I have a class Book defined and I want to create a JAXBElement object that will contain the information corresponding to the XML from the String object. For example, I can have something like: ...
3
votes
1answer
77 views

JAXB - PascalCase Wrapper for Class Collection

I am writing a JAX-RS using JAXB for marshaling my objects. I have a simple object, NameValuePair that I want to send across in PascalCase. Everything works, except it is wrapped in a camelCase ...
1
vote
3answers
99 views

Returning the implemented type with rest in java

I was wondering if is it possible to force the rest framework in java to return the actual implementation of some class instead of information that is only visible in the abstract class. So I have a ...
3
votes
1answer
567 views

JAX RS - JSON and XML Circular/Cyclic reference error

I'm using JAX RS to create a REST webservice using the usual @Path, @GET, @Produces({"application/json, "application/xml"}). I'm returning a POJO as response which is sent as JSON or XML depending ...
2
votes
1answer
299 views

Is it possible for JAXB (in Jersey JAX-RS) to support java.util.HashMap for XML and JSON format

I am using the Jersey implementation of JAX-RS to create a RESTful service. I want the service to support both XML and JSON responses through the very convenient JAXB support built into JAX-RS. ...
0
votes
2answers
2k views

Passing values to RESTful web service post method

I am successfully created restful web service and deploy it in Apache Tomcat 7.0. After successful deployment I start my server. By using the below command i invoke the web service. WebResource ...
0
votes
1answer
922 views

UN MARSHALING XML to JAVA object for Restful Service using JAXRS

I am trying to achieve BOOLEAN return (true/false) based on XML file upload by user. For instance, I have a element direction which indicates type of data it contains. So i am interested in un ...
1
vote
2answers
300 views

Consuming XML in restful post

I have been doing lots of googling lately trying to find a decent documentation/tutorial to consume XML in JAVA RestFUL implementation of webservice. My requirements are simple I want to consume XML ...
5
votes
2answers
313 views

Marshal a java.util.Map<String,String>

The next question for my restful JSON Service. import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import ...
1
vote
3answers
480 views

Annotation @XmlElement write only?

I'm new to java XML binding. This is my class import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; /** * @author Martin Burchard * */ ...
1
vote
2answers
1k views

Formatted XML output in CXF?

I know about the possibility how to turn on the formatting when using Marshaller. But I'm using Apache CXF (JAX-RS) and returning a response like return Response.ok(entity).build();. I haven't found ...
1
vote
2answers
828 views

Parsing a RESTful XML response and displaying in JTable

My web service is working and I can print out the XML retrieved by the Service with my code below: resource = client.resource("http://localhost:8080/testProject/rest/items"); ClientResponse response= ...
-1
votes
1answer
50 views

Multimedia content in xml

My thesis work includes transferring of multimedia content as a request for service. The Web Service part is developed with Jax-Rs specification Apache CXF. The application behind the service is ...
0
votes
1answer
178 views

How to dynamically add xml element to a java JAXRS representation?

Say I have a java class that is a representation of a "Dog" with attrbutes "Color" and "Type" marked up with @XmlElement and @XmlRootElement tags. How do I add a "Age" xml element to this JAXRS based ...
0
votes
3answers
83 views

How to get hold of the xml message in JaxRs

I have my hook as @POST @Path("add") @Produces("text/html") @Consumes("application/xml") public String addCustomer(SiebelMessage siebMsg) { // TODO: Log the XML message here return ...
3
votes
1answer
298 views

How do I set a 40X error with a custom message on JAX-RS Exception?

I'm working on a Web Service on JAX-RS that is already working. Now I'm looking for the way to catch some Exceptions in order to send an 40X error with a custom message to the user. I have a web ...
2
votes
1answer
356 views

Map serialization in JAX-B producing unwanted XML namespaces and prefixes

Problem: I'm trying to do a simple serialization of a HashMap with JAX-B in a JAX-RS application and running into extra output that I'd like to avoid. The default serialization of the HashMap ...
1
vote
1answer
1k views

Jersey - consume XML and HTML on POST

I would like to provide a flexible authentication method for my RESTful webservice - either via a HTML form or XML. I realize that I can make an AJAX call from the HTML form, but I thought a simpler ...
3
votes
3answers
177 views

Injecting Java Bytecode in XML for harmful purposes

So I have been thinking whether there is a way to send an XML such that the XML contains code in (bytecode) that will be unintentionally executed by the JVM. I am using java so I think uncompiled code ...
2
votes
1answer
905 views

XML without root element in JAXB

I was wondering whether there is a way to create an object such that a list of such object does not need a root element. For example, if I wanted to create an XML like <Dogs> ...
0
votes
1answer
1k views

RESTEasy @WrappedMap

I am using RESTEasy to write a RESTful web service and trying to write a response that contains a HashMap. The web service produces either JSON or XML. The JSON map is correct, but the XML map has ...
1
vote
1answer
666 views

WebResource returning xml

How can I return a xml file after calling a particular WebResource? My current one returns as a string WebResource webResource = client.resource("http://api.foursquare.com/v1/venues"); ...
1
vote
1answer
405 views

Getting XML in JAX-RS service

How can I get XML and/or URL (String) in JAX-RS service? For example in GET method URL @GET @Produces("application/xml; charset=UTF-8") public JaxrsPriceWrapper getPrice(@QueryParam("firstId"), ...
1
vote
4answers
408 views

Best way to get a Web Service to return a database result as XML?

I am building a webservice using jax-rs and querying a DB2 z/OS database with SQLJ and getting the result set as an arraylist. I would like to return this list as XML, but not sure how to do it. Does ...
10
votes
3answers
9k views

Java REST client without schema

Goal Java client for Yahoo's HotJobs Resumé Search REST API. Background I'm used to writing web-service clients for SOAP APIs, where wsimport generates proxy stubs and you're off and running. But ...