Iguramu
Iguramu

Reputation: 2110

Restful web service in java

I have a project and i was trying to create a restful webservis. I searched a lot and almost finished all the net documentation. Always having a problem. Can someone say me a good webservis sample which has got server and client side in java?

Upvotes: 4

Views: 1505

Answers (5)

Jesper
Jesper

Reputation: 206946

The standard API for RESTful web services which is going to be included in Java EE 6 (to be released later in 2009) is JAX-RS. Jersey is Sun's reference implementation of this API, which is included in Glassfish v3.

Upvotes: 5

Rich Seller
Rich Seller

Reputation: 84068

I've had a good experience with Restlet. It handles both the client and server side well. The tutorials are also good enough to get you started.

Upvotes: 1

duffymo
duffymo

Reputation: 308998

Spring 3.0 will support REST.

Upvotes: 1

Tim
Tim

Reputation: 20777

You could try looking into using a framework like CXF, but from your question it isn't clear what kind problems you're running into.. Care to explain what you've tried already and what kind of service you're trying to build? Detailed questions get better answers..

Upvotes: 1

Tommy
Tommy

Reputation: 4121

One way to do it is doing something like this:

http://java.sun.com/developer/technicalArticles/WebServices/restful/

Upvotes: 1

Related Questions