4
votes
JAX-RS Frameworks
FWIW we're using Jersey as its packed full of features (e.g. WADL, implicit views, XML/JSON/Atom support) has a large and vibrant developer community behind it and has great …
0
votes
SOAP or REST
I'd recommend you go with REST first - if you're using Java look at JAX-RS and the Jersey implementation. REST is much simpler and easy to …
7
votes
REST in Java
I'm a huge fan of JAX-RS - I think they've done a great job with that specification. I use it on a number of projects and its been a joy to work with.
JAX-RS lets you create REST resources …
0
votes
Batching in REST
I agree with Darrel Miller. HTTP already supports HTTP Pipelining, plus HTTP supports keep alive letting you stream multiple HTTP operations concurrently down the same socket to avoid having to wai …
2
votes
Creating a REST webserver with security
The best way to write restful resources in Java is via the JAX-RS standard. So I'd recommend you download Jersey which is the JAX-RS reference …
0
votes
How to debug RESTful services?
I tend to write unit tests for RESTful resources using Jersey which comes with a nice REST client. The nice thing is if you implement your …
7
votes
