REST

View: [ 2011 | 2010 | 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 ]

Articles
  

Articles:
  • Part 1: Introduction to Jersey -- a Standard, Open Source REST Implementation by Julien Dubois   - [Clicks: 24]
    This article is part 1 of a four-part series. It briefly introduces basic Representational State Transfer (REST) principles, and then quickly leaves theory in order to build a real-life sample application. We will use the new Java Platform, Enterprise Edition (Java EE) 6 standard to create a classical JavaServer Faces application, and we will study why this application does not follow the REST principles. Using NetBeans, we will then add a second, Jersey-based view on top of our application, which will run in parallel with the JavaServer Faces front end. We will then compare both approaches to determine their pros and cons.
    http://java.sun.com/developer/technicalArticles/jersey-part1/index.html - Jun, 2010
  • REST, Web services, REST-ful services by Vedesh Dambal   - [Clicks: 26]
    REST-based Web services are increasingly being preferred for integration with backend enterprise services compared to SOAP due to their simplicity. This article proposes a simple extensible framework for exposing Java business services as REST-like services. It also helps to describe the design in detail and explores various extensibility approaches.
    http://www.ibm.com/developerworks/webservices/library/ws-RESTservices/index.html - Jun, 2010
  • Use Apache Wink with the Jackson JSON processor by Nick Maynard   - [Clicks: 26]
    Apache Wink is fast becoming one of the de facto implementations of the JAX-RS 1.0 specification. The providers included with the standard Apache Wink distribution for JSON marshalling and unmarshalling, such as JSON.org and Jettison, have some problems with array representation and limited return types. Coding JAX-RS services and their client Asynchronous JavaScript and XML (Ajax) applications can be difficult. In this article, learn a method for configuring an existing Apache Wink-enabled Web application to use the Jackson JSON provider to solve some of the problems. An example, with sample code for a simple Jackson-enabled JAX-RS Web service, illustrates the advantages of this provider.
    [Includes sample code]
    http://www.ibm.com/developerworks/java/library/wa-aj-jackson/index.html - Apr, 2010
  • RESTful Web services with Apache Wink, Part 3: Apache Wink and the REST by Vishnu Vettrivel   - [Clicks: 31]
    This article, the third in a three-part series, explores advanced topics in Apache Wink 1.0 development, the new Java framework for implementing and consuming REST-based Web services.
    [Includes source code]
    http://www.ibm.com/developerworks/web/library/wa-apachewink3/index.html - Apr, 2010
  • REST and SOAP: When Should I Use Each (or Both) ? by Mike Rozlog   - [Clicks: 34]
    Web developers today have a myriad of technologies they can choose from; for example, the two approaches for interfacing to the web with web services, namely SOAP and REST. Both approaches work, both have advantages and disadvantages to interfacing to web services, but it is up to the web developer to make the decision of which approach may be best for each particular case.
    http://www.infoq.com/articles/rest-soap-when-to-use-each - Apr, 2010
  • InfoQ Explores: REST by InfoQ.com   - [Clicks: 15]
    This is the first edition of what is expected to become a recurring series on InfoQ. The idea behind this minibook is that a number of InfoQ articles and interviews which deal with a particular topic (in this case, REpresentational State Transfer, or REST) are combined together to provide a detailed exploration suitable for both beginners and advanced practitioners.
    http://www.infoq.com/minibooks/emag-03-2010-rest - Mar, 2010
  • Implementing a Representational State Transfer (REST) Framework by Sivadasan Plakote   - [Clicks: 35]
    This article explains a proof of concept for implementing a REST framework using servlets.
    http://www.devx.com/enterprise/Article/44377 - Mar, 2010
  • There is REST for the Weary Developer by Sivadasan Plakote   - [Clicks: 21]
    We give an example of working with the Representational State Transfer style of software architecture.
    http://www.devx.com/architect/Article/44341 - Mar, 2010
  • Flex RESTing with MySQL by Lazar Kirven   - [Clicks: 38]
    This infrastructure will allow you to focus on your application's look and feel to create more elaborate and elegant Flex applications.
    http://www.devx.com/dbzone/Article/44261 - Mar, 2010
  • RESTful Web services with Apache Wink, Part 2: Advanced topics in Apache Wink REST development by Vishnu Vettrivel   - [Clicks: 17]
    This article, the second in a three-part series, explores advanced topics in Apache Wink 1.0 development, a new Java framework for implementing and consuming REST-based Web services.
    http://www.ibm.com/developerworks/web/library/wa-apachewink2/index.html - Mar, 2010
  • Create RESTful Web services with Java technology by Dustin Amrhein, Nick Gallardo   - [Clicks: 47]
    JAX-RS (JSR-311) is a Java API that enables quick and easy development of Java RESTful services. The API provides an annotation-based model for describing distributed resources. Annotations are used to provide resource location, resource representation, and a pluggable data binding architecture. In this article, learn how you can use JAX-RS to realize the potential of a RESTful services architecture in a Java EE environment.
    http://www.ibm.com/developerworks/web/library/wa-jaxrs/index.html - Feb, 2010
  • Build rich Java Web applications with Apache Wink and Ajax by Nathan A. Good   - [Clicks: 22]
    This article introduces Apache Wink, which is a framework for building Representational State Transfer (REST)ful Web services. Apache Wink is an Apache Incubator project. Its goal is to provide an easier method of writing RESTful Web services by providing the ability to use Java annotations to define services inside classes.
    [Includes sample code]
    http://www.ibm.com/developerworks/java/library/wa-aj-richjava/index.html - Feb, 2010
  • A Comparison of Spring MVC and JAX-RS by Rossen Stoyanchev   - [Clicks: 30]
    SpringSource's Rossen Stoyanchev introduces the Spring MVC REST features available in Spring 3 and relates them to JAX-RS, highlighting the similarities and differences between the two programming models.
    http://www.infoq.com/articles/springmvc_jsx-rs - Feb, 2010
  • Using Apache Wink, Eclipse, and Maven to develop RESTful Web services by Gabriel Mateescu   - [Clicks: 26]
    Apache Wink is an open source implementation of the Java API for RESTful Web Services (JAX-RS) specification. Learn how to develop, deploy, and run RESTful Web services using Apache Wink along with the Eclipse IDE and the Maven project management tool.
    [Includes source code]
    http://www.ibm.com/developerworks/web/library/wa-useapachewink/index.html - Feb, 2010
  • Build a dynamic organization tree using GWT and RESTful Web services by Bruce Sun   - [Clicks: 48]
    This article shows you how to use GWT Tree widgets to display an organizational structure of a company, and how to implement an RPC proxy to integrate with RESTful Web services that provide organizational data and employee data. The article also discusses a lazy loading strategy to ensure a faster start up, to reduce the data download time, and to minimize memory usage.
    [Includes source code]
    http://www.ibm.com/developerworks/web/library/wa-aj-gmt/index.html - Jan, 2010
  • RESTful Web services with Apache Wink, Part 1: Build an Apache Wink REST service by Vishnu Vettrivel   - [Clicks: 23]
    In this article, the first in a three-part series, discover the basics of Apache Wink 1.0, the new Java framework for implementing and consuming REST-based Web services.
    [Includes sample code]
    http://www.ibm.com/developerworks/web/library/wa-apachewink1/index.html - Jan, 2010

[Top]