0
votes
0answers
15 views

JBOSS AS7 jax-rs jaas and annotations

Hey I hope someone can help tried for last 2 days to figure out what I am doing wrong. I want a programmatic login to a JAX-RS api and to use @RolesAlowed annotations on my endpoints. I login fine ...
2
votes
0answers
57 views

Multiple File Upload using @Context HttpServletRequest with @FormDataParam in jersey

I have created a jersey restful web service where I managed to upload multiple number of files using @Context HttpServletRequest request as method signature which work nicely. Thing is, to fetch other ...
0
votes
1answer
33 views

Cookie is Null in Other Class

Method to set user cookie, in UserRest class @Component @Path("/user") public class UserRest{ ............. @POST @Path("/login") @Produces(MediaType.APPLICATION_JSON) public ...
0
votes
2answers
24 views

Post with Jax-RS

This really should be a simple question, and I apologize but I just can't seem to find the answer. From my understanding you can take in an object and have it use say a bean in Java EE to produce this ...
1
vote
0answers
20 views

CXF In-Interceptor annotation is not working + JAX-RS

I have written a CustomValidationInterceptor. I want to configure this interceptor at service level with the use of annotations. Suppose, If I have exposed 5 services, and I want to configure the ...
2
votes
1answer
36 views

CXF/ JAX-RS : Return Custom response from interceptor

We need to return custom error code and error message when exception occurs during REST invocation. We have created a exception mapper provider, it works well for the exceptions from the application ...
0
votes
2answers
32 views

Authorization with RolesAllowedDynamicFeature and Jersey

I'm trying to authenticate users with a JAX-RS filter what seems to work so far. This is the filter where I'm setting a new SecurityContext: @Provider public class AuthenticationFilter implements ...
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
1answer
38 views

How does an JAX-RS 'endpoint' behave when making a request?

There is something I am not sure I understand correctlty, therefore, I need help:) I have seen this: example, @Path("/resource") public class Resource { @Context private HttpHeaders headers; ...
0
votes
0answers
13 views

Join several javax.ws.rs.client.Invocation

In GWT there is a good feature that allows us to join several requests to the server via com.google.web.bindery.requestfactory.shared.RequestContext.append() and run them all in one query by ...
0
votes
0answers
16 views

Get sub-resource locator method in Apache CXF JAX-RS RequestHandler

I'm writing an Apache CXF RequestHandler to do some authentication filtering on my JAX-RS resources. The authentication requirements are configured as annotations on the resource methods, so I need to ...
0
votes
1answer
46 views

Can we have more than one @Path annotation for same REST method

Can we have more than one @Path annotation for same REST method i.e. the method executed is the same, but it is executed on accessing more than one URL. Eg. Suppose the method I have is searchNames() ...
0
votes
0answers
19 views

How to Identify JAX-RS controller by analysing URI?

I want to create an authorization filter in JAX-RS based application. That filter would identify the Resource class being referred by HTTP request URI. resource would have custom annotation with ...
-1
votes
0answers
26 views

JSON mapping does not work in Jersey REST

@PUT @Consumes(MediaType.APPLICATION_JSON) public Response updateEmployeeAsJASON(JAXBElement<EmployeePojo> employee) { DaoConnection dao = new DaoConnection(); Connection con = ...
0
votes
1answer
28 views

Does Jersey expose a way to manually bind dependencies to an instance?

Jersey (and JAX-RS in general) allows simple dependency injection as follows: @Path("/") public class MyResource { @Context private Application application; ... } Jersey first creates ...
0
votes
1answer
36 views

Serving static content with grizzly's StaticHttpHandler from within a .jar

I want Grizzly to serve static files from within a .jar, which contains a JAX-RS application, Grizzly and all other libs. I'm using org.glassfish.grizzly.http.server.StaticHttpHandler to serve the ...
0
votes
1answer
45 views

Servlet Spring + jax rs services

I`m new in spring services and I'm trying to create a simple Web service example with returns String Hello Wolrd. My code configuration is: <servlet> ...
2
votes
1answer
24 views

Is it possibile to define a jax-rs service interface separated from its implementation (with eclipse and jersey)?

I don't know if the title is confusing, but let's say I have this interface: @Produces(MediaType.APPLICATION_JSON) @Path("/user") public interface UserService { @GET @Path("/{userId}") ...
0
votes
1answer
12 views

Can I get the ResourceMethodRegistry being used by Resteasy

The ResourceMethodRegistry in Resteasy is used in resolving a HttpRequest to an actual method call for the uri, method, content type, etc in the request. Is the actual populated instance of this ...
0
votes
0answers
25 views

Container exception in RESTful webservice

i'm working on RESTful web service . to add credentials i'm using post annotation.but there is exception com.sun.jersey.api.container.ContainerException: Method, public javax.ws.rs.core.Response ...
1
vote
1answer
80 views

Cant inject Bean class into Restfull WebService (JAX-RS)

I'm trying to save data acquired by Rest web service to database using hibernate/persistence. In one of my web modules i implemented that service. Database ejb connector is placed in EJB module. They ...
0
votes
0answers
32 views

Adobe CQ 5. Retrieve SlingHttpServletRequest inside JAX-RS Resource

Is there any way to get the SlingHttpServletRequest instance inside method of the JAX-RS Resource class, e.g. : @POST public Response signUp(@Context SlingHttpServletRequest request) { ...
0
votes
1answer
67 views

Calling rest methods from client in java

I am doing this task for the past two days.I read the article for creating the rest methods lot.but i didn't get a clear steps fully.But some what i created now.But i am unable to call this in client ...
2
votes
0answers
65 views

Jersey JSON marshalling of nested generic produces null

Having an issue trying to marshall into JSON a HashMap nested in a List using Jersey 1.11. Here's a snippet of a Jersey endpoint which produces MediaType.APPLICATION_JSON via the returned Response ...
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
1answer
43 views

How to access post java method in client

I need small help,i am new to create rest methods in java but i found it and create a rest methods.I having one class which contains different methods. Here my class @Path("/WebServices ") public ...
0
votes
1answer
55 views

Jersey Client issue for CXF Rest Service

I am trying to create a REST client for a REST method created using Apache CXF. I used wadl2java command to generate the DTO classes for the client, but they miss the @@XmlRootElement element and so I ...
0
votes
2answers
40 views

Servlet init() method equivalent in JAX-RS

I am working on an application which is running on Glassfish. I am supposed to convert the servlets to proper restful stuff, by using jax-rs and jersey. I have been trying to find a workaround for ...
0
votes
0answers
16 views

Apache OpenEJB Standalone server, JAX-RS not deploying, works in TomEE

I have the following JAX-RS application that works in TomEE no problem: @ApplicationPath("/api") public class FormsApplication extends Application { /** * {@inheritDoc} */ @Override ...
0
votes
2answers
46 views

How to write an @Path regular expression to capture these parts of the path with whitespace in JAX-RS?

Given a URI like: /2013/03%20-%20March/15%20-%20Friday/1AC37325007 I have tried the following and I can't seem to get a match; ...
0
votes
0answers
45 views

Connecting to a NTLM Web Service from Android client

I am trying to connect to the web services installed on NTLM configured server from Android client. When I do that, I get the error - W/etAuthenticationHandler(313): Authentication scheme ntlm not ...
0
votes
0answers
44 views

Accessing Java web service if server's browser is protected by username and password

My web service is running locally when I am accessing it from Android client . But when I am putting it on server, it shows error in logs- 05-27 16:12:49.301: W/etAuthenticationHandler(393): ...
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
31 views

Trying to build a REST-Service with encapsulated http response codes

I'm currently trying to build a REST webservice using Java/EE(5) that fully encapsulates the http responses, so every request should give back response code 200 (OK) and should look like this: { ...
1
vote
1answer
87 views

Apache CXF OAuthDataProvider in a JAX-RS web application

I'm writing a plain JAX-RS web application that exposes a REST API; I use Spring, but only for actual configuration, and rely on plain CXF and Hibernate for all other functionality. I now want to ...
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
votes
0answers
28 views

Does Jersey work with an OSGi container [closed]

Is there a simple example showing how to use Java Jersey JAX-RS with OSGi using Blueprint? A complete example with a MANIFEST.MF and the blueprint.xml files? Thanks.
0
votes
1answer
45 views

Custom object input for CXF-JaxRS WebClient

I am pretty new to RESTful, and trying to create a sample services to achieve POST on void methods. I am able to test the method for String class but getting Exception while testing with custom ...
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 ...
-1
votes
1answer
17 views

Building Jersey web services executable

I have developed Jersey web services for the first time. Right now I am running my services on my pc only using eclipse. How can I Make executable file for services so that I can install it on other ...
0
votes
1answer
36 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 ...
0
votes
0answers
49 views

Jax-rs Regex path

I have this Jax-rs service interface: @GET @Path("{id: ^((?!_ah).)*$}") @Produces(MediaType.TEXT_HTML) public Response getStuff(@PathParam("id") String id, @Context HttpHeaders headers, ...
0
votes
0answers
43 views

Regex to filter/match all characters except for specific char sequence

I have this Jax-rs path: @GET @Path("{id: \\b(?!_ah)\\w+\b}") public Response get(...){...} My goal is that this get method match all character sequence except those that starts with _ah like: ...
0
votes
0answers
52 views

Accessing service path parameters from CXF Message

I am writing an interceptor to validate the requests that I see. However, I am unable to determine a way to access the path parameters (any parameter for that matter). Although, when I expand the ...
1
vote
1answer
74 views

SOAP webservice: Multiple references to the same object in SOAP result

I'm building a SOAP service to be used in JBoss 7.1. Until now I'm only using annotations and no XML files of generated files. Both server and client work fine for POJO's. However, I have objects ...
0
votes
2answers
39 views

demo jax-rs resource not bound where expected on jboss

im trying to whip up a small jax-rs demo. i have this resource class: @Path("/cart") public class ShoppingCartResource { @EJB private ShoppingCartService shoppingCartService; @GET ...
0
votes
0answers
125 views

Can you do traditional Servlet Filtering with JAX-RS/Jersey?

Imagine you have a filter that starts a database transaction, processes the request, and then then attempts to commit the transaction. doFilter(...) { ... transaction.begin(); ...
1
vote
3answers
168 views

Can @GET define Consumes Content-Type for JAX-RS implementation?

I have been trying few samples on JAXRS (used Jersey for this example). The following is a sample stub implemenatation I have: @Path("stubservice") public class StubImpl @GET ...
2
votes
2answers
97 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
2answers
155 views

RESTEasy - Reuse method parameters when @GET/@POST

I have a method in my RESTEasy service which I'd like to use as both @GET/@POST, and its data may come from both query string and request body. @GET @POST public String myMethod(@QueryParam("param1") ...

1 2 3 4 5 17