SlideShare a Scribd company logo
REST Easy
Building RESTful Services in Zend Framework
Me
•   Fightin’ Texas Aggie

•   .Net and PHP Developer

•   UNIX and Windows Sysadmin

•   Senior Consultant at

    Improving Enterprises

•   chris@chrisweldon.net
Twitter Promotion
Twitter Promotion
•   @neraath
Twitter Promotion
•   @neraath

•   #bcsphp
Twitter Promotion
•   @neraath

•   #bcsphp

•   #rest
Twitter Promotion
•   @neraath

•   #bcsphp

•   #rest

•   #thisguyisawesome
Twitter Promotion
•   @neraath

•   #bcsphp

•   #rest

•   #thisguyisawesome

•   #bestspeakerever
Twitter Promotion
•   @neraath

•   #bcsphp

•   #rest

•   #thisguyisawesome

•   #bestspeakerever

•   #horriblepresenter
Twitter Promotion
•   @neraath

•   #bcsphp

•   #rest

•   #thisguyisawesome

•   #bestspeakerever

•   #horriblepresenter

•   #omgshootme
Agile, Microsoft, Open Technologies, UX
Applied Training, Coaching, Mentoring
Certified Consulting
Rural Sourcing
Recruiting Services
REST
REST Easy - Building RESTful Services in Zend Framework
REpresentational State
      Transfer
Why REST?
Scalability
Architecture
Independence
Resource Addressing
 and Management
Self-Describing Messages
REST is NOT
REST Easy - Building RESTful Services in Zend Framework
SOAP is Fugly

<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
  <soap:Header>
  </soap:Header>
  <soap:Body>
    <m:GetStockPrice xmlns:m="http://www.example.org/stock">
      <m:StockName>IBM</m:StockName>
    </m:GetStockPrice>
  </soap:Body>
</soap:Envelope>
RESTs Beauty is in
  HTTP Verbs
http://www.example.org/stock/price/IBM
GET
Request
GET /stock/price/IBM HTTP/1.1
Host: www.example.org
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4)
Accept-Encoding: gzip
Accept-Charset: ISO-8859-1,UTF-8;q=0.7,*;q=0.7
Cache-Control: no-cache
Accept-Language: de,en;q=0.7,en-us;q=0.3

Response
date: Thu, 21 Jun 2012 21:55:57 GMT
version: HTTP/1.1
status: 200 OK
content-length: 26550
content-type: text/html; charset=UTF-8
cache-control: private, max-age=0
expires: -1
POST
Request
POST /stock/price/IBM HTTP/1.1
Host: www.example.org
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4)
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml;q=0.9,*/*;q=0.8

currentPrice:193.39
delta:-5.39
locale:en_US

Response
Date: Thu, 21 Jun 2012 21:55:57 GMT
Version: HTTP/1.1
Status: 201 CREATED
Location: /stock/price/IBM
PUT
Request
PUT /stock/price/IBM HTTP/1.1
Host: www.example.org
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4)
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml;q=0.9,*/*;q=0.8

currentPrice:193.39
delta:-5.39
locale:en_US

Response
Date: Thu, 21 Jun 2012 21:55:57 GMT
Version: HTTP/1.1
Status: 200 OK
DELETE
Request
DELETE /stock/price/IBM HTTP/1.1
Host: www.example.org
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4)
Accept-Encoding: gzip
Accept-Charset: ISO-8859-1,UTF-8;q=0.7,*;q=0.7
Cache-Control: no-cache
Accept-Language: de,en;q=0.7,en-us;q=0.3

Response
date: Thu, 21 Jun 2012 21:55:57 GMT
version: HTTP/1.1
status: 204 NO CONTENT
Status Codes are Your
        Friend
200 =
REST Easy - Building RESTful Services in Zend Framework
201 = Created
204 = ?
REST Easy - Building RESTful Services in Zend Framework
301 = ?
REST Easy - Building RESTful Services in Zend Framework
401 = ?
REST Easy - Building RESTful Services in Zend Framework
404, 500, etc.
REST Supports
{
    “person”:
    {
        “name”: “Chris Weldon”,
        “email”: “chris@chrisweldon.net”
    }
}
REST Supports

<?xml version=”1.0”?>
<person>
  <name>Chris Weldon</name>
  <email>chris@chrisweldon.net</name>
</person>
REST Supports


      ...
DEMO
Thanks!




spkr8.com/neraath

More Related Content

PPTX
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
PDF
How to connect AngularJS to servers
PDF
RESTful Web Services with Spring MVC
PPTX
REST & RESTful Web Service
PDF
Angularjs & REST
PPTX
Designing REST services with Spring MVC
PPTX
REST API Design
PPT
Using RESTFUL APIs in ANGULARJS
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
How to connect AngularJS to servers
RESTful Web Services with Spring MVC
REST & RESTful Web Service
Angularjs & REST
Designing REST services with Spring MVC
REST API Design
Using RESTFUL APIs in ANGULARJS

What's hot (20)

PDF
Preparing your web services for Android and your Android app for web services...
PPTX
Implementation advantages of rest
PPT
RESTful services
PPT
Scalable Reliable Secure REST
PDF
Cwinters Intro To Rest And JerREST and Jersey Introductionsey
PDF
AJAX - An introduction
PPTX
Android and REST
ODP
The Internet as Web Services: introduction to ReST
PDF
JSON REST API for WordPress
PPTX
REST & RESTful Web Services
PPTX
The JSON REST API for WordPress
PDF
HTML5 - An introduction
PDF
Building RESTful applications using Spring MVC
KEY
Designing a RESTful web service
PDF
Learn REST in 18 Slides
PDF
RESTful web
PDF
Android webservices
PDF
Cross site calls with javascript - the right way with CORS
PPT
Rest services caching
PPT
Understanding REST
Preparing your web services for Android and your Android app for web services...
Implementation advantages of rest
RESTful services
Scalable Reliable Secure REST
Cwinters Intro To Rest And JerREST and Jersey Introductionsey
AJAX - An introduction
Android and REST
The Internet as Web Services: introduction to ReST
JSON REST API for WordPress
REST & RESTful Web Services
The JSON REST API for WordPress
HTML5 - An introduction
Building RESTful applications using Spring MVC
Designing a RESTful web service
Learn REST in 18 Slides
RESTful web
Android webservices
Cross site calls with javascript - the right way with CORS
Rest services caching
Understanding REST
Ad

Similar to REST Easy - Building RESTful Services in Zend Framework (20)

PDF
Ws rest
PDF
Web Services Tutorial
PDF
Web Services PHP Tutorial
PDF
Web services tutorial
PDF
zendframework2 restful
PDF
There is REST and then there is "REST"
PDF
Restful web-services
PPTX
Rest presentation
PDF
Restful Web Services
PDF
Doing REST Right
PPTX
Pragmatic REST APIs
PPTX
Web services soap and rest by mandakini for TechGig
PDF
REST vs SOAP
PPTX
Restful webservices
PPT
RESTFul Web Services - Intro
PDF
Building Web Services
PPTX
RESTful Services
PDF
Android App Development 06 : Network &amp; Web Services
PDF
Web Services, for DevDays Belfast
PDF
Introduction to RESTful Webservice
Ws rest
Web Services Tutorial
Web Services PHP Tutorial
Web services tutorial
zendframework2 restful
There is REST and then there is "REST"
Restful web-services
Rest presentation
Restful Web Services
Doing REST Right
Pragmatic REST APIs
Web services soap and rest by mandakini for TechGig
REST vs SOAP
Restful webservices
RESTFul Web Services - Intro
Building Web Services
RESTful Services
Android App Development 06 : Network &amp; Web Services
Web Services, for DevDays Belfast
Introduction to RESTful Webservice
Ad

More from Chris Weldon (7)

ODP
Keat presentation
KEY
Beyond TDD: Enabling Your Team to Continuously Deliver Software
KEY
SOLID - Not Just a State of Matter, It's Principles for OO Propriety
KEY
SOLID Principles
KEY
Unit Testing in SharePoint 2010
KEY
IoC with PHP
PDF
PHP & MVC
Keat presentation
Beyond TDD: Enabling Your Team to Continuously Deliver Software
SOLID - Not Just a State of Matter, It's Principles for OO Propriety
SOLID Principles
Unit Testing in SharePoint 2010
IoC with PHP
PHP & MVC

Recently uploaded (20)

PPTX
Big Data Technologies - Introduction.pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Cloud computing and distributed systems.
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Empathic Computing: Creating Shared Understanding
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Encapsulation theory and applications.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Machine Learning_overview_presentation.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
Big Data Technologies - Introduction.pptx
Assigned Numbers - 2025 - Bluetooth® Document
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
MIND Revenue Release Quarter 2 2025 Press Release
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Spectral efficient network and resource selection model in 5G networks
The AUB Centre for AI in Media Proposal.docx
Chapter 3 Spatial Domain Image Processing.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
“AI and Expert System Decision Support & Business Intelligence Systems”
Cloud computing and distributed systems.
Digital-Transformation-Roadmap-for-Companies.pptx
Empathic Computing: Creating Shared Understanding
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Encapsulation theory and applications.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Machine Learning_overview_presentation.pptx
Advanced methodologies resolving dimensionality complications for autism neur...

REST Easy - Building RESTful Services in Zend Framework

Editor's Notes