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.
0
votes
0answers
7 views
Restlet Android and Google App Engine versions strange behavior
i am trying to figure out why my code is returning null in some place of my code and why it is working well in another one.
My working code is:
ClientResource cr = new ...
0
votes
0answers
7 views
Send Immediate / No DELAY flag Restlet client
I have created Restlet client which work fine except one issue. It takes more time to send the request when it is Windows 7 compared to Windows XP I have doubt regarding the Send Immediate / No Delay ...
0
votes
2answers
21 views
How to access header values of request in Java Restlet?
I am developing web services using Restlet Java.
For this I want to protect some webservices from unauthorized clients. So I have written Filter class. In that Filter class I want to get the headers ...
0
votes
0answers
22 views
Android app user profile on GAE
My Android app should to maintain an user profile on GAE datastore, i.e. the user maintains its profile in the app which should be user by the server for its work.
What is the appropriate approach ...
0
votes
1answer
24 views
Apache Camel Restlet is not working
I don't know which library is missing to include Camel RESTlet component. Included camel-restlet-2.11.1.jar and org.restlet.jar from restlet-jse-2.1.2 but I am getting
2013-07-12 09:37:28,021 [main ...
0
votes
0answers
27 views
Combining Restlet Security with Spring Security
I have a project in which I have now implemented a Restlet Authenticator to authenticate http requests. The next step is assigning roles to the authenticated entity (a user) and then authorize the ...
-1
votes
0answers
8 views
How to implement 2-legged OAuth with Restlet?
I am doing grant_type = password with OAuth 2 and could not find any examples on doing 2-legged auth.
0
votes
0answers
11 views
Does SSI support restlet SE version
I am looking to avoid using iframes and was wondering, if
anyone knows if server side includes are supported in restlet se?
0
votes
0answers
22 views
Restlet Connector Error after adding http header
I was trying to add some headers to allow for CORS, it worked pretty well before, but this time it gives me an Restlet1001 connector error with the identical code
Form responseHeaders = ...
0
votes
1answer
21 views
Restlet 1001 after adding Header
I was trying to add some headers to allow for CORS, it worked pretty well before, but this time it gives me an Restlet1001 connector error with the identical code
Form responseHeaders = ...
0
votes
1answer
12 views
Where is the best way to log response in Restlet
I use Restlet with Jetty8.
The Jetty log all incoming calls.
I want to log all response data also, url and body.
Where is the best place to put the log code?
I thought createOutboundRoot is the place ...
0
votes
0answers
11 views
Availability of SSI support in restlet SE [closed]
When are you planning release support for server side includes in
restlet SE platform?
Regards.
0
votes
0answers
26 views
Restlet ClientResponse get method without MeidaType route to wrong resource class
I have 3 server resource classes:
public class MyResource extends ServerResource {
@Get("json")
public JsonRepresentation getResource() {
...
}
}
public class MySubResource extends MyResource {
...
0
votes
0answers
24 views
java.io.IOException: Couldn't read the XML representation (Restlet)
I have the following 4 classes:
1) the GridResource
public class GridResource extends ServerResource {
@Get
public DomRepresentation getGrid() throws Exception {
// Create an empty XML ...
0
votes
3answers
34 views
Restlet webService on the cloud
I have built a Java Web Service for my app using restlet.
It's pure Java and standalone.
Is there any free cloud service where i can host my webservice?
It has really minimal requirements.
One of ...