1
vote
6answers
210 views
Which is the best Java REST API - Restlet or Jersey?
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 curio …
0
votes
2answers
75 views
Send file with REST?
Do Java REST frameworks like Restlet and Jersey allow one to send a file as input to a web service?
This would encompass the client sending the file and the server then receivin …
0
votes
4answers
146 views
Implementing RESTful web service
Hello,
I have a requirement to create RESTful web service.
I have narrowed down on 'Restlet' for the web service implementation.
Can someone tell me the clear pro's and con's of …
2
votes
5answers
212 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 a …
0
votes
1answer
50 views
http connector for Restlet and Apache http server
Hello,
I have figured out that to integrate calls between Apache HTTP server and Restlet, I need to write my own HTTP connector using the Restlet provided API's.
Is my assumption …
0
votes
1answer
31 views
Integrating Apache and Restlet server like Apache and Tomcat
Hello,
I have my Apache http server running on localhost:80 and restlet server on localhost:8182, but I want to configure above combination just like Apache http server and Apache …
0
votes
1answer
284 views
Restlet implementing post with json receive and response
First, what i wanted to know is what i am doing is the right way to do it.
I have a scenario where i have will receive a json request and i have to update the database with that, …
0
votes
0answers
35 views
Serve dynamic generated images using restlet
I have searched online for a while and almost all the questions regarding image serving using restlet are about static images. What I want to do is to serve dynamic generated image …
0
votes
0answers
84 views
How can I implement Session-Per-Request (”Open-Session-In-View”) pattern using JAX-RS?
I'm using JDO on AppEngine with Restlet + JAX-RS extensions. In my sub-resource locator class I load the entity in the constructor. Then for the various methods I used the data. If …
0
votes
3answers
358 views
RESTlet: How to process multipart/form-data requests?
How do you catch incoming @Post variables when it is a multipart/form-data request?
For a regular Post request I would do:
@Post
public void postExample(Representation entity) th …
3
votes
2answers
354 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 hav …
0
votes
0answers
88 views
Restlet-1.1 example\book\rest\ch2\Example2_5 no client connectors for HTTPS
Example2_5 creates a client for HTTPS to handle request
final Response response = new Client(Protocol.HTTPS).handle(request);
The only related jar in Restlet-1.1 is org.mortbay.je …
0
votes
1answer
95 views
How does the timeout work in Restlet’s client class?
Here's some code:
Client client = new Client(Protocol.HTTP);
client.setConnectTimeout(1); //milliseconds
Response response = client.post(url, paramRepresentation);
System.out.prin …
0
votes
1answer
50 views
In Restlet, how can I get the Router instance from a ServerResource?
How can I get access to the Application's Router instance from my ServerResource class? Is it even possible?
Thanks in advance.
0
votes
1answer
502 views
Unmarshalling XML using JAXB in restlet’s acceptRepresentation method.
I've created an XML schema by annotating an existing Java domain model class, now when I try to use JAXB to unmarshall the representation received within my restlet webservice I'm …
