We are looking at which REST framework to use and where to run it.

Given an existing WebSphere (6.1.0.17) environment would you use Jersy of Wink? Or would you recommend a different platform?

link|improve this question

Which version of WebSphere do you use? Because some already have REST frameworks built into them. (And a lot of times IBM uses the Apache projects under the covers - for example, their implementation of JAX-WS is Apache Axis2). – Chris Aldrich Mar 4 '11 at 13:44
Go with the standard – DaTroop Mar 4 '11 at 13:52
@Chris, I have updated the question with the version number – Shiraz Bhaiji Mar 4 '11 at 14:14
@Chris: AFAIK Wink is built-in in WebSphere 7.* – Tarlog Mar 5 '11 at 16:23
feedback

4 Answers

up vote 1 down vote accepted

I have no experience in using Wink, but I can share some of my experience in using Jersey running on Websphere.

The pros... very easy to use, it took me 5 minutes to get familiarized and I'm ready writing my first hello world. Jersey does automatically generate WADL for you based on your Resources package, albeit pretty basic... but you can customize the WADL documentation yourself.

The cons... sigh, I like Jersey, but with Websphere, it almost made me cry. First (this is not related to Websphere), I'm using Spring in my project and the Jersey release I use is 1.2. The problem is that release uses Spring 2.5 whereas I'm using Spring 3.x. So, I pulled out Jersey's Spring 2.5 to use Spring 3.x. Everything works fine. However, the Jersey test framework started to fail. I'm not able to boot up the built-in Grizzly server to test my web services anymore. Second, I'm currently tied to Websphere 6.1 which uses JDK 5. I believe all Jersey releases after 1.2 are compiled with JDK 6... that means, I'm out of luck until my company upgrade to WAS 7.

It is indeed a very stable Rest framework, very easy to use... but in my case, I'm just bummed out because all existing unit tests for the web services are currently commented out because I upgraded my Spring release to 3.x. I'm sure the latest Jersey release should be using Spring 3.x by now, yet I can't use them because I'm still using JDK 5 in WAS 6.1.

So, it's up to you to decide. By the way, I'm still using Jersey 1.2 in my project running in WAS 6.1.

link|improve this answer
+1, Thanks, One of our developers had the same problem with tests as you. The way he fixed it was to write unit tests instead of integration tests, which require the wed server to run. – Shiraz Bhaiji Mar 4 '11 at 14:44
When I have the time to mess around, I want to try firing up Jetty to run the web services to do my testing. I have done this before to test CXF on a Maven project using embedded Jetty. For non-Maven projects in WAS, it doesn't look too hard to fire up Jetty to do the testing: life.neophi.com/danielr/2009/03/… ... just need to find time to do it. :) – limc Mar 4 '11 at 14:52
feedback

As a third option why not use Spring's own RESTful features in Spring MCV. This is easy to code, test and maintain and (obviously) works for Spring right out of the box. The ease of managing code based on Spring REST is due to an architecture based on MVC, IoC and annotations. And you can choose best in class solutions to enhance your solutions sucha such as XStream for serialization, Jackson JSON Support, and Springs own REST Template for a REST Client or unit-tests.

At it's heart Spring MVC's REST features deal with REST as an Architecture not a Protocol and blends it well with other proven approaches such as IoC and MVC. When considering a framework the following REST litmus test is useful see innoq.com/blog/st/2010/07/rest_litmus_test_for_web_frame.html. Springs approach checks more of the boxes thanks to it's effective content delivery.

One thing all these frameworks fall down on is HATEOAS support, a way of in which the REST response contain links that correspond to all the actions that the client can currently perform from this resource. Most frameworks promises to introduce this soon, but a critical eye will be needed to understand what the best approach to this will be.

When delivering JAX-RS solutions such as Wink and Jersey, I've found more emphasis on conforming to a java standard and less flexibility in the architecture (such as using other 3rd party packages). If conforming to JAX-RS is a requirement consider Restlets, Wink or Jersy. Otherwise, maybe it's worth considering Spring MVC's REST support.

I've deployed this kind of solution to WAS 7 without any issues or dependency conflicts.

link|improve this answer
+1 Thanks and welcome to Stackoverflow – Shiraz Bhaiji Mar 14 '11 at 19:14
feedback

I vote for Wink.
The reasons:

  1. It's developed by HP and IBM guys. So I believe that IBM guys tested it with Websphere.
  2. Actually AFAIK Wink is built-in in the Websphere 7.*
  3. Also see this video
link|improve this answer
feedback

IBM recommends to use Apache wink. In fact, IBM has his own implementation of Apache wink.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.