Recommended framework for Java Web Services - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:40:03Z http://stackoverflow.com/feeds/question/289977 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services 9 Recommended framework for Java Web Services kgiannakakis 2008-11-14T12:50:04Z 2009-07-22T10:48:22Z <p>With an abundance of frameworks and stacks for Java Web Services (Axis2, Spring WS, CFX, Metro, ...), which one should be selected for new projects? What are the pros and cons for each one? How well have they worked for you?</p> <p>See <a href="http://stackoverflow.com/questions/442582/java-web-service-framework-library-which-is-a-better-one-and-why">related Q here</a></p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/290205#290205 4 Answer by FoxyBOA for Recommended framework for Java Web Services FoxyBOA 2008-11-14T14:22:10Z 2009-05-22T20:46:43Z <p>We are using a "Java first" approach. This means we generate our Java classes, and then use the web services framework to dynamically generate WSDL from those classes. The alternative is "WSDL First", where you use tools to generate Java stub code from the WSDL and XSD.</p> <p>If you like the Java-first approach, I can recommend <strong><a href="http://cxf.apache.org/" rel="nofollow">CXF</a></strong> as a reliable framework for quick creation of web services. It works well.</p> <p>For now I have/had 3 issues with CXF:</p> <ol> <li><p>One of pitfall that me wet was a data binding. Standard JAXB data binding works only in simple cases without additional tuning. Because of that we decided switch to native CXF data binding Aegis.</p></li> <li><p>A minor but annoying issue exists with the use of Collections in a POJO classe exposed as a web service. Classes that you plan to put into Collections must implement Comparable interface otherwise you'll get a strange runtime exception.</p></li> <li><p>You can't have both CXF and it's predecessor XFire library in your classpath. Not sure that it's important for you, but it can be sufficient for an upgrade from XFire to CXF.</p></li> </ol> <p>And my last point that isn't directly related to CXF. If you plan to call web services through Mule 2.x ESB (as we are) you can find that it's not as easy as it was with Mule 1.x and XFire.</p> <p><strong>Update:</strong> New issue that you can meet calling WS throw the CXF API. If your WS is shielded by HTTP basic authentication (i.e. username and password) and you call WS using a dynamic proxy, you most probably will get a 401 error (authentication challenge). Workaround described <a href="http://www.nabble.com/wsclient---401-response-code-td14520566.html" rel="nofollow">here</a>.</p> <p>Regarding <strong>Spring WS</strong>, AFAIK it's wsdl first approach. If you like it, possible it's your case.</p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/290669#290669 0 Answer by MetroidFan2002 for Recommended framework for Java Web Services MetroidFan2002 2008-11-14T16:34:30Z 2008-11-14T16:34:30Z <p>XFire, the precursor to CXF, is great for systems forced to use Java 1.4. I have no idea if CXF is any good, the whole API changed. XFire's API was much easier for me to understand compared with a cursory glance at CXF's API. However, you have to jump through hoops to override defaults in certain situations sometimes.</p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/290710#290710 0 Answer by Vinze for Recommended framework for Java Web Services Vinze 2008-11-14T16:47:59Z 2008-11-14T16:47:59Z <p>I personally use Axis 2.</p> <p>For the pros it's very simple to write a service : create a class with method -> generate WSDL from Java (Java2WSDL in axis) -> generate client code (WSDL2Java) to deploy the service you can use the axis webapp (in any servlet container), package the service class with an extra services.xml into a file *.aar (the services.xml is not very hard to write) and put the service in the axis webapp (putting the file in the services/ directory or via an administration page in the axis webapp) For a simple webservice it's very simple</p> <p>For the cons, well the documentation is not very reach. I had many trouble for implementation of WS-Security as the "rampart" module is missing example in my opinion, I had to buy a book...</p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/290965#290965 4 Answer by hstoerr for Recommended framework for Java Web Services hstoerr 2008-11-14T18:33:44Z 2008-11-14T18:42:56Z <p>In a recent project we are using <a href="http://static.springsource.org/spring-ws/sites/1.5/" rel="nofollow">Spring Web Services</a>. I do like it - it is quite easy to use, well documented and flexible as well. Of course, it makes the most sense to use it if you are using <a href="http://www.springframework.org/" rel="nofollow">Spring</a> for your application, anyway.</p> <p>I have tried Axis, Axis2 and Spring WS so far - I do like Spring the most and I think it is the easiest to use, once you understood how Spring itself works. (Except that you do have a nice "create webservice project with Axis/Axis2" wizard in eclipse, which you don't have with Spring.) Axis2 wasn't too well documented the time I tried it, but this might have changed.</p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/300369#300369 0 Answer by Red33mer for Recommended framework for Java Web Services Red33mer 2008-11-18T22:25:26Z 2008-11-18T22:25:26Z <p>I would recoomend axis2 IF you decide to use eclipse as your ide. Using the webtools project and the axis2 service archiver you have pretty much everything you need. You can simple write a set of functions you would like for your webservice and than generate a webservice, so there ist literarry no learning curve you write just the things you want and it works. The client is also simple, the only thing you will have to get your head around is generating a stub which will call your webservice. I personally tried CXF and axis2 is in my oppinion easier and more hands on approach. </p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/450577#450577 1 Answer by Fabian Steeg for Recommended framework for Java Web Services Fabian Steeg 2009-01-16T14:40:55Z 2009-01-16T14:40:55Z <p>A nice thing about Metro is the support for <a href="https://metro.dev.java.net/guide/Large_Attachments.html" rel="nofollow">streaming large files</a>, which solves a problem that is often brough up against Web Services in general.</p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/755016#755016 1 Answer by Kevin Williams for Recommended framework for Java Web Services Kevin Williams 2009-04-16T06:46:59Z 2009-04-16T06:46:59Z <p>I just came across a web service framework called <a href="http://enunciate.codehaus.org" rel="nofollow">enunciate</a> from codehaus.</p> <p>I've done a prototype application for work and REALLY like how easy it was, all the nice additional features &amp; the configuration options.</p> <p>Supports SOAP, RESTful and JSON endpoints. Generates tons of good documentation and a variety of client libraries for JDK 1.4, or 6.</p> <p>You can choose which framework you'd like to leverage for the service - Apache, JAX-WS... I'm going to use XFire.</p> <p><a href="http://enunciate.codehaus.org" rel="nofollow">http://enunciate.codehaus.org</a></p> <p>Check out the <a href="http://enunciate.codehaus.org/getting%5Fstarted.html" rel="nofollow">Getting Started Guide</a>. Includes output samples and real-world examples, not just another <em>Hello World</em></p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/1072065#1072065 2 Answer by Nathan Feger for Recommended framework for Java Web Services Nathan Feger 2009-07-02T01:56:19Z 2009-07-02T01:56:19Z <p>Jersey: https://jersey.dev.java.net/</p> <p>I have not used it myself, but it seems very simple to get up and running.</p> http://stackoverflow.com/questions/289977/recommended-framework-for-java-web-services/1164456#1164456 0 Answer by Firstthumb for Recommended framework for Java Web Services Firstthumb 2009-07-22T10:48:22Z 2009-07-22T10:48:22Z <p>Spring Web Service is good choice for new projects. It is easy to use and you can find lots of documents about it.</p>