Created
October 15, 2012 18:53
-
-
Save weierophinney/3894353 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== RESTful Services Made Easy with ZF2 == | |
Need a web service? Befuddled by WSDL? Does the lack of object support in | |
XML-RPC limit what you can do? Do you want to use your service with JavaScript? | |
Would you like to rely on native browser and client caching of your services? | |
REST is an alternative, capable of addressing all of these needs. | |
During this tutorial, we'll look at various aspects of REST, including proper | |
use of HTTP methods, the usage of media types, approaches to content | |
negotiation, and hyperlinking -- all the pieces necessary to build a good | |
RESTful service. In the process, we'll build a simple web service in Zend | |
Framework 2 that demonstrates and implements each of these capabilities. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
== RESTful Services Made Easy with ZF2 ==
Need to understand ZF2? This tutorial will walk you through building a
RESTful web service using the ZF2 MVC system. We'll look at the various
aspects of REST, including proper use of HTTP methods, the usage of
media types, approaches to content negotiation, and hyperlinking -- all
the pieces necessary to build a good RESTful service. We'll walk though
fundamental ZF2 components, such as service manager and event manager
and show how ZF2's new modular MVC system works. In the process, we'll
build a simple web service in Zend Framework 2 that demonstrates and
implements each of these capabilities.