0
votes
0answers
8 views

How to construct a URI path according to the formparams in REST jersey

First read this . Now i had known how to construct it grammatically...but how to ACCEPT a forms parameters,PROCESS it and CONSTRUCT a URI accordingly is still unkown !! My form : @POST ...
0
votes
1answer
27 views

How to create/build REST URI using form parameters

okay so i have created restful webservice.now how to create a path for a user "abc". Something like this http://stackoverflow.com/user/abc Following is my form for getting the user input thorugh ...
0
votes
2answers
42 views

How to authenticate and redirect a user to his 'own' page in Jersey REST service

How to authenticate and redirect a user to his own page i.e to www.mysite.com/"user's email". I am using the following algo which is not working... userDB in User class: Map<String,String> ...
0
votes
0answers
16 views

Generating custom paths in WADL with Jersey

I'm using Jersey 1.17, and have a REST api with an application.wadl with this in it: <resources base="http://localhost:8080/"> <resource path="/rest"> <resource ...
0
votes
1answer
29 views

Rest | @Produces and @Consumes : why dont they both get called for same MIME-type

a newbie in JAX-REST (jersey 1.8 impl) I have a class for Resource "/hello" package com.lbs.rest; import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.Path; import ...
0
votes
0answers
23 views

How to create a Basic Jersey RESTful CRUD Example with Login/Authentication feature

okay so i have made the basic rest example and now i wanted to take it a step further by using authentication (user login) in my example. I am only using Java Collection for my data. NO DATABASE !! ...
0
votes
2answers
23 views

Jersey should not consume any form parameter. exception

I am building rest webservice using jersey, when I add this function i got this exception, but when i remove it, the server works very good. ...
0
votes
1answer
39 views

HTTPstatus 500 in deploying Jersey based Restful service project

I have recently started with Jersey following this tutorial. I have configured the services/package name in web.xml alright, Now the thing is I am getting an javax.servlet.ServletException: ...
0
votes
2answers
24 views

Delegate to a different Jersey resource class

I have a resource exists in an internal jar dependency (hence, I cannot change it's code): @Path("doStuff") public class ExternalResource { @GET public Response getSomething() { } I ...
0
votes
0answers
21 views

Jersey error while downloading file from restful web services

My application is accessing a restful web service using client which returns me a file. When i test this on my local environment everything works like a charm, however when i try to access the same ...
0
votes
1answer
16 views

How we can add filed as an attribute for an element for java REST API

How we can add field as an attribute for an element for java REST API My Java class @XmlRootElement(name = "rtml_application") public class ApplicationsEntity extends BaseEntity { private static ...
1
vote
1answer
48 views

How to serialize a POJO into query params with Jersey

I have been playing around and creating multiple small Java RESTful client libraries for different services at my company. Most of the time, I am unable to change anything on the server side and I ...
0
votes
2answers
26 views

Is there a way to use JAX-RS annotated interface with Jersey as the client?

Given that I have an interface which represents my RESET service using public interface BookResource { @GET @Path("/book/isbn/{isbn}/") @Produces(value = { MediaType.APPLICATION_XML ...
0
votes
2answers
35 views

Tool to report rest interfaces

We have a web application using Jersey and Spring's rest template. Does anyone know of a tool that can scan a code base and produce a report that lists all exposed endpoints and also internal ...
-1
votes
1answer
40 views

Passing n number of input to a GET method of a REST service

I am trying to write a REST service with Jersey where the GET method should write me a list of objects. The input to the GET method should take the ids of the list. Say I will pass n numbers of ...
0
votes
1answer
33 views

Whether to use Jersey version 1.x or 2.0 [closed]

I wonder if anyone has an opinion as to whether to use the latest & greatest Jersey 2.0, or the most recent 1.x release (1.18, I guess). I am not interested to be on the bleeding edge of ...
1
vote
0answers
38 views

Valid URI results in Content-Length: -1

Since Java 7u21 I stumbled on some strange behavior in a JavaFX applet I made. On the server side I have a Glassfish 3 server and a mysql database. On the client side I use Jersey to fetch data from ...
0
votes
1answer
26 views

Jersey Jaxb Issues

We are having a problem with generic Payload while using Jersey. Here is our Domain object. @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class Event<T> { private T ...
0
votes
2answers
24 views

XMLHttpRequest Exception 101 when i try to call POST rest with jquery

i'm using jquery ,jersey and json. when i try to call a post service i receive this error Origin null is not allowed by Access-Control-Allow-Origin. undefined * Error: NETWORK_ERR: XMLHttpRequest ...
0
votes
0answers
39 views

Got XHR.status 0 while doing http get request through jquery code while HTTP response is 200 ok

I am trying to send get request to REST based API(JAX-RS/Jersey based API) through jquery. Request reaches successfully to API as I have seen in logs and on firebug i saw 200 ok response below is ...
1
vote
1answer
49 views

Atmosphere Jersey - Server messages

Is it possible to let the server send messages to all connected clients without waiting for any action from them? Let me explain it :-) I've been reading the docs/examples and I have found nothing ...
0
votes
1answer
43 views

Interfere in Jersey REST life cycle

I have variant resources that all extend BaseResource<T> @Component @Path("/businesses") public class BusinessResource extends BaseResource<Business>{ @GET @Path({businessId}/) ...
-3
votes
0answers
31 views

Android app that requires the user to be authenticated (through a REST web service Jersey) [closed]

I am trying to create an Android app that requires the user to be authenticated (through a REST web service Jersey).Can anybody help me with some suggestions?
0
votes
0answers
36 views

How configure rest service and rest client to serialize java.util.Date when date is value in the Map<String,Object>

I am using Jersey rest service. My resource object takes a Object as shown below as post parameter. From the client side I am setting key values pair in properties field of my input object. One of the ...
0
votes
1answer
33 views

Jersey web service non-ascii characters

I am new to REST and jersey. I wrote a simple RESTful Web Service using Jersey 1.17 API. The Web service accepts data through POST method. When I pass data having non-ascii characters, it does not ...
2
votes
2answers
206 views

Java-Jersey based RESTful webservice : What is the best way to handle path param for a file entity

I am writing a Java based REST web service using jersey. The entity for which I am writing the web service is a media file. A client requesting for a media file need to send the path and filename as ...
0
votes
2answers
97 views

404 when accessing Jersey app in Tomcat 7

I am a newby in web development and I am struggling to create a simple rest web service using jersey, packed as an independent war file, to be deployed on tomcat 7. I have followed this tutorial in ...
-1
votes
0answers
25 views

Error while generating stub from WADL

While generating client stub (Java source) from WADL, getting following error, I have used maven plugin for this, Info: Processing: ...
0
votes
0answers
34 views

Creating a Jersey (or non-CXF) REST client for WADL

I have a service exposed using Apache CXF and have the below WADL. My requirement is to create a non-CXF REST client (like using Jersey). What steps should I follow and whether this WADL is correct? ...
0
votes
2answers
73 views

android connect to local host from connectify me to consure a web service

First of all I will tell you what can I do: I can connect my real device to my servlets on my website using my computer IP I can connect my emulator to my servlets on my website using 10.0.2.2 IP I ...
0
votes
1answer
308 views

AngularJS RESTful JSON requests with ngResource and Restangular

i have some problems with angularJS and REST requests / responses. Since three weeks i playing with AngularJS and now i would like do some cool stuff. First i created a simple jersey REST service, ...
1
vote
1answer
173 views

In Jersey, how do I make some methods use the POJO mapping feature and some not?

I've got one resource (this is not a requirement) that has many different @GET methods in it. I've configured my web.xml to have this in it: <init-param> ...
0
votes
1answer
35 views

Is it possible to be able to accept many matrix parameters in my rest URL without having to declare them in my code?

I am developing a Restful WS which does the simple job of querying a DB and bringing back some data. The table that is querying has around 20 columns. I want to be able to filter the my returned ...
0
votes
1answer
57 views

Passing Parameter to Rest Client

In my gwt application, I've implemented this method: @Service("carService") @Path("/cars") @Scope("request") public class CarServiceImpl implements CarService { @Autowired private CarDAO ...
0
votes
0answers
115 views

Programmatically configure Jersey Application

I am trying to configure my Jersey application using my own Application implementation or an extended ResourceConfig or PackageResourceConfig. So, my first attempt consists in porting an exisiting ...
1
vote
1answer
68 views

NullPointerException on @Autowired attribute with Jersey and Spring for REST service

I've been development a gwt application with should have a rest service to access the database, both its own database and the other remote ones. I use Spring to better work with database (objectdb) ...
0
votes
1answer
85 views

Upload binary file with RESTful web service in Glassfish

I am trying to send a binary file (picture) to my RESTful web service running in Glassfish. I have found code that supposed to do that in Upload data method in REST web service and several other ...
3
votes
2answers
68 views

Jersey how to annotate java.sql.Timestamp object

Background I have a Root element class which contains variable of the class java.sql.Timestamp, I want JAXB to create xml element from that variable. What I have tried I create class adapter which ...
0
votes
0answers
53 views

Restful jersey ws (Couldn't find grammar element)

I created a Restful (netbeans) WS and I am using jersey 1.17.1 and weblogic. @GET @Path("/{ip}/{Id}") @Produces({"text/plain", "text/html" , "application/json"}) public String exe(@PathParam("ip") ...
0
votes
1answer
42 views

Deletion of multiple resources in JAX-RS Service jersey implementation

I am new to restful services and willing to get some ideas from the experts. The application which will be accessing my service is having a datatable-grid (each row of the grid represents an Employee ...
0
votes
0answers
32 views

jira restful table POST request ist empty - why?

... In the image above the first thing you see is the aui restful table, with two input fields filled with "fgfsa" and "sdgw" and a "add" button. After pressing ADD I get the error message in the ...
2
votes
1answer
34 views

Validating path to nested resource

I'm using Jersey to implement a RESTful Service with some nested resources. This is a basic example of what I currently have: @Path("/sites") public class SiteResource { @GET ...
1
vote
1answer
80 views

When using Jersey JAX-RS, is there a way to differentiate between fields sent as null and fields not sent at all?

I'm using Jersey JAX-RS with Jackson (for serialization/deserialization) to implement a set of REST services. When a caller performs an update operation (ex. a PUT), I've generally followed the ...
1
vote
1answer
27 views

How to get intermediate feedback from my REST service for a single GET request

In my user interface, I am trying to implement a progress bar which shows the percent of completion of work for a user request. My back-end REST service needs to do a lot of computations; hence it is ...
0
votes
0answers
29 views

Getting ClassNotFoundException when deploying Jersey application to Tomcat

I tried to set up a REST service according to this article I installed a local Tomcat (that is running correctly) and set it up as a run configuration. Unfortunatly, when building the application I ...
6
votes
1answer
208 views

Authentication required window popping up after 7u21 update

I've been working on a project for the last 6 months. For this project I have a glassfish server instance where a webservice is deployed. At the client side, I'm using JavaFX2.2 which does REST ...
0
votes
0answers
41 views

Conditional cache headers not working in JAX-RS

I am trying from a long time to implement Conditional cache headers using JAX-RS but unfortunately the caching is not working, everytime the DB call is made irrespective of whether the caching is done ...
0
votes
0answers
64 views

Android app sending hashed password and salt to and from server

My android app takes plain text password, uses jasypt to hash it with randomly generated salt. I then send both the salt (make string out of salt byte array) and hashed password to server (REST) which ...
0
votes
1answer
43 views

Custom marshalling, unstandard form

I know that there are Java libraries that convert XML strings into objects. Also, Jersey contains ways of consuming certain datatypes. My problem is that I have a String that represents an object ...
1
vote
0answers
64 views

How to produce a HTML file using Jersey web service?

I'm new to Jersey. I want to produce an HTML file using the @GET annotation. I read some tutorial online and found the following simple example: @GET @Produces(MediaType.TEXT_HTML) public ...

1 2 3 4 5 17