Questions tagged [jersey-1.0]

Jersey 1.0 is the open source, production quality, JAX-RS 1.1 (JSR 311) reference implementation for building RESTful Web services. Only use this tag if your question specifically pertains to Jersey 1.0.

Jersey 1.0 is the open source, production quality, JAX-RS 1.1 (JSR-311) reference implementation for building RESTful Web services. Jersey provides an API so that developers may extend Jersey to suit their needs. The governance policy is the same as the one used in the GlassFish project.

204 questions
0
votes
1 answer

how pass Employee object in restFul Get method

I am passing an Employee Object Form Client in RestFul webservices Jaxrs2/jersy2 @GET @Path("{empObj}") @Produces(MediaType.APPLICATION_XML) public Response readPK(@PathParam("empObj")Employee empObj) { //do Some Work …
java baba
  • 2,199
  • 13
  • 33
  • 45
0
votes
1 answer

Jersey REST And PathParam Regular Expressions

I'm trying to use Jersey to develop a REST web service. My requirement is for me to be able to access the web service and return data, based on the passed PatParam parameters. My web service so far is as…
Mouhammed Soueidane
  • 1,056
  • 2
  • 24
  • 42
0
votes
1 answer

Can jersey clients POST a JAXB object to the server using JSON?

I'm finding a lot of examples of how to set up a jersey server so that it can produce and consume JAXB bound objects but I'm having trouble finding examples of how to get the client to post the same JAXB bound object. This example shows how to do…
Daniel Kaplan
  • 62,768
  • 50
  • 234
  • 356
0
votes
1 answer

Restful Web Service runs in Shell but not Eclipse indigo,it gives class not found exception

I'm using Eclipse INDIGO, Apache-tomcat-7.0.42 and jersay libraries. I export my project as war into \apache-tomcat-7.0.42\webapps folder and run server from cmd, It does not throw any exception. But when I tried to run my project as run on server…
heshan
  • 115
  • 1
  • 4
  • 8
0
votes
2 answers

RESTfull Webservice with Jersey and jQuery get strange response

I try to build a RESTfull Webservice. On the frontend I use jQuery to get the data. On the backend I am trying it with the example from www.mkyong.com/webservices/jax-rs/json-example-with-jersey-jackson/ Calling 127.0.0.1:8080/restEx/rest/json/get…
Sören
  • 177
  • 4
  • 16
-1
votes
1 answer

Excluding com.sun.jersey package from Sonarqube rule

We have an old WLS server that is using Jersey 1.x Sonarqube is complaining about using the com.sun.jersey imports in different classes. I wish to customize the sonarqube rule "Classes from "com.sun." and "sun." packages should not be used" Sonar…
Toerktumlare
  • 12,548
  • 3
  • 35
  • 54
-2
votes
2 answers

MultipartFile is always NULL

I'm having a problem when uploading a file using MultipartFile. I'm using Spring v2.2.6.RELEASE whenever i upload i get the value string but the file is NULL. Here's my code below UploadController.java @POST …
-5
votes
1 answer

Is Jersey1.8 still got support from community?

I need to know whether Jersey 1.8 still get support from community or not
jayant
  • 1
  • 1
-6
votes
1 answer

How to route response of one rest service to another rest service using apache camel restlet

i am trying to route between two web services using camel-restlet.This is my pom.xml maven-restlet Public online Restlet repository http://maven.restlet.org
Akhil
  • 1
  • 1
1 2 3
13
14