Restlet Framework is an open source framework for Java (and JavaScript) to expose and consume RESTful web APIs. It has editions for Java SE, Java EE, OSGi, GAE, GWT and Android.

learn more… | top users | synonyms

0
votes
0answers
9 views

How can I monitor the number of active threads (acceptors/executors) and eventual content of associated queues in Restlet?

We are busy developing an application which basically allows users to upload files on our server, have them processed there and finally download results when processing has completed. On the server ...
0
votes
0answers
7 views

Apache Tiles integration with Restlet

I am trying to integrate Apache Tiles with Restlet 2.0+. In addition I want to use freemarker as a template language within Apache Tiles. I am looking some pointers (blog, source code etc) showing ...
0
votes
1answer
24 views

Restlet thread safety and Google App Engine

I am using Restlet 2.1.2 on Google App Engine and I am thinking about its thread safety. <threadsafe> is set to true in my GAE's configuration. In general, there are concurrency notes in the ...
0
votes
0answers
17 views

Oauth2 in Restlet with a JAXRS Application?

I am trying to create a REST service (in JAX-RS) with Restlet which is protected by OAuth2. Our REST service has already been written with JAX-RS and after some investigation the Oauth2 implementation ...
0
votes
1answer
36 views

Creating a Restlet Authorizer for fine grained authorization

I'm attempting to implement a RESTful API using Restlet and have found very little on anything more than the basic Role and Method Authorizers. I have stored in a database the routes and methods for ...
0
votes
0answers
13 views

How to upload file in Restlet Framework

I am trying to upload my file using Restlet framework. I have all the neccessary jars.I am getting following exception java.lang.NullPointerException at ...
0
votes
0answers
21 views

restlet: Using Server and Client restlet Jars in same web application

I am not able to use restlet server and client jars in same java web application. The problem is some jars of server and client have the same name. If I try to remove duplicate jars I get errors like ...
0
votes
0answers
14 views

Resltet does not return url params from post request

I have a POST request: https://localhost/rest/myAPI/1.0/myStatusUpdate?usr=me&pwd=secret My Request headers: User-Agent: Fiddler Content-type: application/x-www-form-urlencoded Host: localhost ...
0
votes
0answers
21 views

How to get all the remaining part of URL after attach host s matched in Restlet

I have the following code in my restlet server defaultHost.attach("/file/{file}", fileRestlet); so now when I do file/abc/def/xyz request.getAttributes().get("file")) gives me only abc I want ...
1
vote
0answers
31 views

When to use Restlet router v. Component with multiple routes

I've created multiple routes using this code with components: Component component = new Component(); component.getServers().add(Protocol.HTTP, port); ...
0
votes
0answers
14 views

Forms on a post in restlet

Okay I've search many pages and am still scratching my head why my form isn't being captured by the post of my restlet. Here is the source that I used that matches closely what I'm trying to do. Get ...
0
votes
1answer
28 views

RestKit and Restlet JSON key-value

In RestKit for mapping a class to JSON key-value we use, RKObjectMapping * userMapping = [RKObjectMapping mappingForClass:[User class]]; [userMapping mapKeyPath:@"PrimaryKey" ...
0
votes
0answers
19 views

Restlet: how to suppress server request log messages

I have created a simple REST server using Restlet 2.1.2 and it is working very well. Every POST or GET request causes Restlet to emit a log message of the form: 2013-05-02 19:44:39 127.0.0.1 - ...
0
votes
1answer
59 views

Android client - Restlet 2.0.15 - cannot connect with HTTPS/SSL - recoverable error 1001

I have written an Android web service client using the Restlet framework for Android (2.0.15), and I've also written the web service backend as well (again with Restlet 2.0.15 JEE) which has been ...
0
votes
0answers
20 views

Restlet streaming API for json/xml

It is very useful that Restlet automatically does content negotiation and returns json or xml result by combining annotated interfaces and the converter service. Optionally it uses Jackson and xstream ...
0
votes
0answers
19 views

Attaching instance of a class to Restlet

Is it possible to attach an instance of a class to a component. class X extends ServerResource{ Callable func; X(Callable userfunc){ func = userfunc; } @Get public String ...
0
votes
0answers
47 views

How to use HTML form with Javascript to call Restlet

I am a doing a project based on Restlet and I quite a beginner in Restlet. I am trying to make Javascript call do my Restlet GET. I have a a textfield and a separate textbox (initially blank) with a ...
0
votes
0answers
10 views

Trying to find Restlet per-class logger properties

I'd like to change the logging level of the ClientConnectionHelper class so that INFO messages aren't printed. I have looked, and found some stuff about use of loggers in Restlet, but I can't puzzle ...
0
votes
3answers
169 views

JSON in a POST request is unsupported for Restlet

We're creating small project in which we have flask as a FrontEnd and restlet based WebService. We try to send login data as a JSON from flask to restlet: def login(): error = None if ...
1
vote
2answers
131 views

Restlet GWT Client and Requests Cross Domain

Is it possible perform cross domain requests in the GWT version of Restlet Client? I need to consume Rest resources (GET, POST, PUT, DELETE) from an external API with JSON Data. I know about Same ...
0
votes
2answers
86 views

Restlet streaming with Thread.sleep()

This example is based on an example from the book Restlet in Action. If I try public class StreamResource extends ServerResource { @Get public Representation getStream() throws ...
0
votes
0answers
43 views

Client proxy generation with Restlet for Java SE

I'm trying to generate the client proxy code for a WCF service, using Restlet 2.0.4 (I tried also with the latest stable version, same result) as written here: ...
1
vote
0answers
90 views

Mapping domain objects to urls in Restlet the “right” way

I'm currently using Restlet to provide a REST API for access to a database with a number of related tables, using JPA + Hibernate as my persistence layer. For a concrete example, suppose I have the ...
0
votes
0answers
51 views

Restlet jse 2.1.2 jvm memory usage

we use Restlet to make many concurrent http requests to a web server. A couple of days ago we upgrade Restlet libs from 2.0.14 to 2.1.2 and we note a very high heap memory consumption with respect to ...
10
votes
2answers
296 views

Restlet streaming data

I have this task that I'm undertaking where I would be reading data from a device and make it available over a web service. The data is read 4 times a second. I want the web clients to be have an open ...
0
votes
1answer
37 views

Restlet: Pass Java interface as @Put parameter

I'd like to pass a java interface to a @Put call: public interface IMyInterface { ... } public class MyClass implements IMyInterface, Serializable { ... } public class Service extends ...
0
votes
0answers
21 views

Restlet 2.1.RC1 + Java 1.7 as a Netbeans 7.x app module works ok ; upgrading to Restlet 2.1.2 give runtime error (FEATURE_SECURE_PROCESSING)

Restlet 2.1.RC1 works fine but upgrading to 2.1.2 gives : WARN - Unable to unmarshal the XML representation javax.xml.bind.JAXBException: Unable to create customized SAX source - with linked ...
0
votes
0answers
67 views

How do I retrieve data from restlet request on Android?

I'm trying to make http requests with Restlet on an Android application but I have some trouble retrieving data in the http response. Basically I'm sending an http rest request to my server (on a ...
0
votes
1answer
67 views

Change status code sent back by Restlet for authenication

I am using Restlet with Digest Authentication. Works well. Except I want to make it a bit more ajax/Javascript friendly by avoiding the browser's authentication dialog pop up when a 401 is first sent ...
0
votes
1answer
38 views

Why does a Restlet Collection Resource redirects when collection is empty

I'm reading the book Restlet in Action, in which the Restlet framework is explained while building a Mail Client and Server. At some point, you end up with a web application that shows either a ...
0
votes
0answers
25 views

Restlet JaxbRepresentation unmarshalling when missing XmlRootElement

I have the following XML schema: <element name="subscriber" type="SubscriberType"/> <complexType name="SubscriberType> ... </complexType> JAXB generated a SubscriberType class ...
2
votes
2answers
202 views

Proguard - org.codehaus.jackson.map.JsonMappingException: No suitable constructor found for type

I have an Android-based application which is connecting to the Google App Engine using Rest services, the app works perfectly until it is obfuscated through Proguard prior to release. The error ...
0
votes
1answer
145 views

Multipart POST handling with Restlet with a JSON Body

I am writing a REST API using Restlet. I am mostly using a JSON as the body of all my POST requests, so a normal POST looks like this in my code: @Post("json") public Representation ...
0
votes
1answer
39 views

Accessing the right resources using RESTlet in Java

I am trying to write an API for a project at my university using RESTlet and Google App Engine in Java. At the moment, I am able to run a web server, but I am having some trouble accessing anything ...
0
votes
1answer
64 views

Restlet getIdentifier() Error

When I tried to execute the "FirstResource" Example : http://restlet.org/learn/2.0/firstResource I have an error in this line caused by getIdentifier(): itemResource = new ...
1
vote
2answers
210 views

Restlet android client / jersey java server

I have created a Rest Web service using Jersey in a Java EE app. And I was able to create the client in a java app as well. I worked fine. I'm now trying to consume my Web Service, but this time ...
0
votes
1answer
82 views

Android - can't retrieve $metadata from WCF Data Service

I'am using Restlet-Framework 2.1.2, from my Android app, I try retrieve data from WCF Data Service and recieve LogCat error messages: Starting the HTTP client Get the metadata for ...
0
votes
1answer
45 views

Make JavaMail fast

I am trying to add email notification features to my Restlet server. I just learned today from Stackoverflow that Java Mail is synchronous. So there are two obvious options: 1. use a really fast SMTP ...
1
vote
3answers
84 views

RESTlet on GWT unable to retrieve RESTful resource not backed by GWT enabled server

I am trying to get GWT+RESTlet to communicate with a RESTful service, which is not "GWT aware". On the GWT client, I do something like Reference ref = new ...
0
votes
2answers
46 views

Javascript restlet api

When we look at the source code of the main page ot the restlet.org website, we may see the following : type="text/javascript" src="/javascript/restlet-client.js" It seems you developped an api ...
0
votes
2answers
84 views

Configuring Restlet with App engine

I am using google app engine to develop my software's backend using java along with Restlet framework. I have index.jsp under my war directory which I want to treat as default page when somebody goes ...
0
votes
1answer
35 views

AMQP QPID client connector?

My next project is a RESTful application, so Restlet seems to be an excellent choice for implementation. However, I couldn't find any support for AMQP. What is the best way to add AMQP support, in ...
0
votes
1answer
67 views

How to get HttpServletResponse object in restlet for GAE BlobStore serve

I'm using Restlet with GAE, and the GAE Blobstore API requires a HttpServletRequest object for uploading blobs and a HttpServletResponse object for serving them. Is there any way to get the ...
0
votes
1answer
56 views

Rest call with Restlet Framework

I developp a android application, to collect orders saved on a web API. I do my Rest call with the protocol http like this: HttpClient httpClient = new DefaultHttpClient(); try { HttpGet ...
0
votes
1answer
330 views

java.lang.IllegalStateException: Could not execute method of the activity

I am newbie to android RESTlet. I am trying to connect to url and get the information upon button click. But I am getting the error " java.lang.IllegalStateException: Could not execute method of the ...
0
votes
1answer
51 views

How to do XSS escaping on input coming into Restlet web service

I have a GWT web application using Restlet. It has @Post annotated service methods that take a bean and perform some logic on it. I want to XML-escape the data in these beans. For example, say I ...
0
votes
0answers
189 views

Send json data and File(both) in REST LET Services using POST method in java [closed]

While calling POST method of the web services(REST) is it possible to send file and json data (BOTH) in request body? Example : JSONObject request = new JSONObject(); File f = new File("path"); ...
1
vote
0answers
71 views

Hadnling redirect with ajax, Restlet server

I'm trying to log-in to my Restlet server (I'm using the latest version of restlet). On my server I have a cookie authenticator guarding the resources. I'm using the following ajax call: $.ajax({ ...
0
votes
2answers
72 views

GWT: Classloader not found

is there any folder that is equivalent to the dynamic web project folder "/META-INF/services/ " in GWT projects? i need it to add a class path in my class loader when using the following example ...
0
votes
0answers
97 views

Code 406 when RESTlet client tries to get ArrayList of objects via @GET from JAX-RS service

just started java development and tried to build an easy client-server application. I use JAX-RS for the server side and RESTlet for the client side. I want to call the @GET method of the server side ...

1 2 3 4 5 13