Tagged Questions

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

learn more… | top users | synonyms

50
votes
10answers
32k views

Which is the best Java REST API - Restlet or Jersey? [closed]

Which REST API do you prefer - Jersey or Restlet? This would encompass both the client and server API-s. We really need to just pick one and kick the tires around but I was curious what the ...
33
votes
7answers
14k views

RESTful application on Google App Engine Java?

I would like to create a RESTful app on Google App Engine. I would like to provide XML and JSON services. I have briefly experimented with Restlet, Resteasy, and Jersey. I haven't had much success ...
14
votes
5answers
5k views

RESTful on Play! framework

We are planning a project primarily serving content to mobile apps, but need to have a website. My question is whether is makes sense to use Jersey or Restlet to develop REST APIs for our mobile apps, ...
9
votes
5answers
3k views

How do I interact with OData from Java?

OData is Microsoft's repackaging of its Astoria (now WCF Data Services) RESTful query/update protocol. If I want to use Java to create an OData compatible data source, how do I do that? Similarly, if ...
8
votes
3answers
635 views

RESTful authentication - resulting poor performance on high load?

For a RESTful web service we say that that the server shouldn't store any state. Now for every request the 'user' must be authenticated and must have an authorization for the action(s) he/she wishes ...
6
votes
1answer
150 views

Python's urllib2.urlopen() hanging with local connection to a Java Restlet server

I'm trying to connect to a local running Restlet server from python, but the connection hangs infinitely (or times out if I set a timeout). import urllib2 handle = ...
6
votes
5answers
1k views

Is it ok by REST to return content after POST?

I am using RESTlet and I have created a resource. I handle POST by overriding acceptRepresentation method. Client should send me some data, then I store it to DB, set response to 201 ...
6
votes
3answers
1k views

Configure Restlet to Return JSPs on Google App Engine?

I have a developed a Restlet application. I would like to return a JSP file on a URL request through Restlet. How can I achieve this without using a redirect? i.e. Let's say I have the file ...
6
votes
3answers
1k views

Sending binary data with the Restlet client

I'm trying to send a byte[] (using PUT) with Restlet but I can't find any info on how to do it. My code looks like this: Request request = new Request(Method.PUT, url); request.setEntity( WHAT DO I ...
6
votes
1answer
493 views

Remoting from a Swing app to GWT server

To put it simple, I've written a JSE Swing app that needs to talk to a GWT server I've written earlier. I absolutely love the way GWT does remoting between it's javascript and server sides and wish I ...
5
votes
1answer
2k views

Fine-grained Authentication with RESTlet

I want to expose a resource using RESTlet with a fine-grained authentication. My ServerResource should be accessable via GET only for authenticated members (using BASIC Authentication). However, ...
5
votes
7answers
3k views

Easiest frameworks to implement Java REST web services

What are the best frameworks for implementing both client and server REST frameworks in Java? I've been struggling a little to find an easy to use solution. Update: Both Jersey and Restlet seem like ...
4
votes
1answer
275 views

Restlet with GWT to call REST service with HTTP DIGEST

i m using GWT 2.2 and restlet-gwt-2.1m4. i m trying to call a rest service that uses HTTP Digest. So i used the tutorial on Restlet wiki : ...
4
votes
3answers
796 views

What Java REST framework to use with App Engine and Android for students?

I'm teaching a college course on mobile application development and would like to introduce my students to a REST framework for use with App Engine, to help them with data storage for the Android apps ...
4
votes
1answer
160 views

Restlet, GWT and Sessions

What is the best way to have a session between a Restlet Java API and GWT? In my app the user will login with a username and password and if it successfully authenticates the userID is returned. This ...
4
votes
1answer
2k views

Get HTTP Get parameters from Restlet Request

I am trying to figure out how to get the parameters from a Restlet request object. my request comes in as /customer?userId=1 and I want to grab the parameter to pass to my DAO for the query. public ...
4
votes
5answers
423 views

Best Practice for creating Web Services

To preface I am new to web development. I am looking at creating a core set of RESTful web services around a valuable document library of sorts (initial CRUD abilities). In doing so I am theoretically ...
4
votes
3answers
6k views

Restlet POST using JSON

How do I implement Restlet function which accepts JSON post? And how do I test this using curl? Thanks
3
votes
1answer
606 views

Exposure of Camel routes as REST services under Web container

I have Camel route that I would like to expose as a REST Web Service. Application is deployed on Web container (Jetty/Tomcat) and Spring is used as well for DI and other "infrastructural" things. I ...
3
votes
1answer
1k views

A url resource that is a dot (%2E)

I have a resource that is a . This means my url looks like this: http://myapp/index/. And i need to add query parameters so that it looks like this: http://myapp/index/.?type=xml I use Freemarker for ...
3
votes
1answer
613 views

In Java, how to set the header of a Restlet Response?

I can't seem to figure out how to add headers to my restlet response. When I look at the available methods in the Response object, all I see is setStatus, setEntity, and setAttributes but none of ...
3
votes
1answer
371 views

No available client connector supports the required protocol: 'HTTP'

Greeting. I am playing with Restlet framework, when I am running following code getting and exception Internal Connector Error (1002) - No available client connector supports the required protocol: ...
3
votes
2answers
3k views

Android compatibility with Restlet/JSON/Jackson

I'm currently working on a webservice-client for Android. I'm using a Java client library which provides an abstraction for interaction with the service. The client library works on normal machines. ...
3
votes
3answers
325 views

REST/ROA Architecture - Send database search/querying/filter/sorting parameters in URL? (>, <, IN, etc…)

I'm building a REST interface to my application using ROA (Resource Oriented Architecture). I'd like to give the client the ability to specify search parameters in URL. So a client could say "Give ...
3
votes
2answers
1k views

Consume ado.net data service from android 2.1

I have a ado.net data service created using VS 2008 sp 1 that is hosted that I want to consume via HTTP and JSON from Android 2.1? Does anyone have sample code on how to do CRUD operations easily do ...
3
votes
1answer
401 views

In Restlet, what's the difference between a Restlet class and a Resource class?

I've gone through the firstResource bit of the Restlet 1.1 tutorial and put together a web service that handles GET, POST, DELETE, PUT by subclassing the Resource class and overriding the appropriate ...
3
votes
1answer
414 views

Implementing a custom Python authentication handler

The answer to a previous question showed that Nexus implement a custom authentication helper called "NxBASIC". How do I begin to implement a handler in python? Update: Implementing the handler ...
3
votes
2answers
2k views

What is the best way to write a test case for RESTLET web services?

I have a JAX-RS web service implemented with Restlet library and now I want to test it. In order to do that I'd like to host this service in my test by preinitializing it with mocked services. What ...
2
votes
1answer
68 views

Does anyone have the restlet samples from the “RESTful Web Services” book by Leonard Richardson and Sam Ruby updated to restlet 2.0?

I would like to run the samples, but they use depricated API of Restlet and non existing API of db4o. In short, does not compile. I am new to Restlet (and Java), so I really do not want to waste my ...
2
votes
1answer
173 views

C# or .Net client for RESTLET

I want to make use of RESTlet RESTful web-services. The architechture will make use of a Java Based Server and Windows Forms (.Net) client. I want to know if there is an easy way to convert the ...
2
votes
2answers
439 views

how to pass parameters to RESTlet webservice from android?

i've been looking online for how to pass parameters to RESTlet webservice but it seem there are not much tutorial concerning RESTlet. i would like to send some parameters gathered from a form on my ...
2
votes
1answer
155 views

Restlet HTTP problems in OSGi

I'm a fascinated user of the Restlet framework (version 2.08). This is why I'm currently trying to use Restlet in an OSGi environment for the practical part of my thesis. Finally, I arrived to create ...
2
votes
1answer
90 views

Restlet Representation issue when running with Google App Engine support

My Restlet service works fine when I send it a JSON string, the representation.entity contains the sent text and my restlet resource can do it's thing. However, when I enable GAE support in my eclipse ...
2
votes
2answers
191 views

Restful architecture issue with (too many) complex objects

Alright, I've been put in charge of both the server and client (used internally) part of this RESTful architecture. (using restlet). We've got a resource that exposes the Post operation. Here's a ...
2
votes
4answers
413 views

Error with Restlet sample project

I downloaded the sample Restlet project and opened it in Eclipse. I instantly get this error: Errors occurred during the build. Errors running builder 'Google WebApp Project Validator' on project ...
2
votes
3answers
134 views

Why are these PNG files different?(originate from same source)

In my program, I have a web application that creates a PNG image. This PNG image is written to a file and returned in a request. When I write the request to a file, it is different than the one that ...
2
votes
1answer
109 views

Restlet Default Route?

I'm trying to setup a couple routes with the restlet framework, but I can't seem to figure out how to setup a "default route". I tried this: @Override public Restlet createInboundRoot() { ...
2
votes
1answer
158 views

Is RESTlet suitable for this job?

(sorry for reposting this question, for some reason I can't log in to the other account) Is RESTlet the best choice for performing the following server/client architecture? 1- we have a server ...
2
votes
1answer
366 views

HTTP Basic Authentication in Restlet with a JAXRS Application?

I'm trying to authenticate access to all resources on my server via HTTP Basic authentication. Currently, my setup looks like this when starting the server: this.component = new Component(); ...
2
votes
1answer
262 views

Using Freemarker with Restlet 2.0 in a J2EE server

I'm a bit confused with what is written in the documentation(s) for Freemarker and Restlet's freemarker extension. Here's the situation: The restlet engine serves an HTML representation of a resource ...
2
votes
1answer
427 views

Why is the REST API of Android able to connect to a GAE web application directly?

I have been trying to find a way to implement a RESTful web service and then consume this service from an Android REST client. The reason is that Android intrinsically only supports consuming a ...
2
votes
4answers
178 views

Advice for noob: Restlet or SOAP

I have to develop a web service that looks like this: I make a get call, including a string in the url, and I need to receive another string based on the initial string from the query. I might have ...
2
votes
2answers
697 views

Restlet for Android: Internal Connector Error (1002) - Calling thread time out error

I am writing a simple android application that talks to a restful web-service hosted on google app engine. The web service is developed using the Restlet framework. Here are the details of my ...
2
votes
2answers
232 views

is there any open source project for Restlet on GAE available?

I am searching for open source project for Restlet hosted on GAE and trying to figure out the CRUD operation with restlet + objectify. in my current application i have used following, Using Restlet ...
2
votes
2answers
584 views

Problem with HTTP Connection: close header

I am having a weird problem with a small restlet service that I am building as an exercise. The application is supposed to respond with some XML (specifically TwiML, as it is meant for Twilio) on an ...
2
votes
1answer
114 views

Connecting GWT and Restlet together

I have a Restlet API and a GWT client and I have been following the Restlet tutorial (http://wiki.restlet.org/docs_2.0/13-restlet/21-restlet/318-restlet/303-restlet.html) here on connecting the two ...
2
votes
2answers
699 views

Restlet POSTing JSON to Appengine error

We have a small app with Restlet on the GAE server and GWT and Android clients. Restlet serves GWT-serialized replies to GWT clients and JSON to Android clients. All is ok with GWT-serialization both ...
2
votes
1answer
510 views

Java accessing ServletContext from within restlet Resource

I am using Tomcat server in java and wanted to be able to access the ServletContext from the restlet Resource in order to access my cached DataSource object (to pool mysql connections). ...
2
votes
1answer
769 views

Configuring HttpClient for usage as Restlet client

I'm stuck configuring Restlet for my client-side code. I'm using Restlet 2 and HttpClient 4. I added the extension jar and the HttpClient jars to the build path and it seems to work. However, I ...
2
votes
1answer
2k views

RESTful interface for C++/Qt?

I want to integrate the RESTful-API in my Qt-Project. I already read the example on this page, but this is only for receiving data from a RESTful-interface, not for sending new data to the server. In ...

1 2 3 4 5 7