SlideShare a Scribd company logo
Introduction to RESTful Webservice


                    Eftakhairul Islam
                           Jr. Software Engineer
                       Right Brain Solution Ltd.
                   email: eftakhairul@gmail.com
                      web: http://eftakhairul.com
What is Webservice?




phpXpert Seminar 2011                      2
Webservice Design Models


         XML RPC 

         SOAP 

         REST 




    phpXpert Seminar 2011                 3
Inside RESTful Webservice?

        Not Techology and not even protocol

        Software archetechtural principle

        Resouces transfer over HTTP




phpXpert Seminar 2011                         4
Basic Design Principles Of REST

1.  HTTP methods explicitly
2.  Be stateless
3.  Directory structure­like URIs
4. Transfer resources by any valid MIME type 
   supported by the web service.


phpXpert Seminar 2011                           5
HTTP Methods Explicitly
                             Add Resources


POST http://api.linkedin.com/v1/people/123/friends


Content­Type: application/xml
<friend uri=“urn:linkedin:v1:people/888”/>




  phpXpert Seminar 2011                              6
HTTP Methods Explicitly
                                      Retrieve Resources
GET http://api.linkedin.com/v1/people/123

Output:
<?xml version="1.0" encoding="UTF­8"?>

<person>

     <id>123</id>

     <first­name>Sakib</first­name>

     <last­name>Stein</last­name>

     <connections total="200">

     …

</person>

         phpXpert Seminar 2011                             7
HTTP Methods Explicitly
                                    Update Resources
PUT  http://api.linkedin.com/v1/people/123


Content­Type: application/xml
<person>
    <name>Sakib Mahmud</name>
   <best­friend uri=“urn:linkedin:v1:people/999”/>
   <photo xsi:nil=“true”/>
</person>




   phpXpert Seminar 2011                               8
HTTP Methods Explicitly
                                      Delete Reasource


DELETE http://api.linkedin.com/v1/people/123/friends/456


Output:
Friend:456 will be deleted from linkedin.




   phpXpert Seminar 2011                                   9
Be Stateless
Stateful design (Non­REST):




                                           previousPage++
  Client                      Server   nextPage = previousPage
                                           return nextPage




 phpXpert Seminar 2011                                           10
Be Stateless
     Stateless design (REST):

              GET /resources/?page=2 HTTP/1.1


                    <?xml version= ”1.0” ?>
                    <rsp page=”2” nextPage=”3”>
 Client                    <resource id = ''11/>    Server
                           <resource id = ''12”/>
                        . ..
                    </rsp>




phpXpert Seminar 2011                                        11
Directory Structure­like URIs

http://example.com/topics/{topic_name}
http://graph.facebook.com/10150224661566729
http://twitter.com/statuses/user_timeline.xml?
    id=eftakhairul




 phpXpert Seminar 2011                           12
Transfer Resources By Any Valid MIME Type

Mostly Used

         XML

         JSON

         XHTML


Any other valid contend type


    phpXpert Seminar 2011                   13
Thank You


    Please Stop Software Piracy, Save Developer
                    Use FOSS or Genuine Software




phpXpert Seminar 2011                              14

More Related Content

PPTX
Soap and restful webservice
PPTX
Hadoop introduction
PPTX
Restful webservice
PDF
Web Services
PPT
Java web services
PDF
Web service introduction
PPT
Soap and Rest
PPTX
Web services soap and rest by mandakini for TechGig
Soap and restful webservice
Hadoop introduction
Restful webservice
Web Services
Java web services
Web service introduction
Soap and Rest
Web services soap and rest by mandakini for TechGig

What's hot (20)

PDF
Global Scale ESB with Mule
PPTX
Soap vs rest
PDF
Java Web Services [1/5]: Introduction to Web Services
PPTX
Web Service
PPT
Introduction to the Web API
PDF
SOAP-based Web Services
PPTX
Webservices Overview : XML RPC, SOAP and REST
PPTX
PPTX
REST & RESTful Web Service
PDF
Spring Web Services: SOAP vs. REST
PPSX
PPTX
SOAP--Simple Object Access Protocol
PDF
Impact of Restful Web Architecture on Performance and Scalability
PPTX
Soap web service
PDF
Web Services Tutorial
PPTX
REST API Design
PDF
Wso2 integration platform deep dive eu con 2016
PPTX
Rest web services
PPTX
WSDL in Mule Esb
Global Scale ESB with Mule
Soap vs rest
Java Web Services [1/5]: Introduction to Web Services
Web Service
Introduction to the Web API
SOAP-based Web Services
Webservices Overview : XML RPC, SOAP and REST
REST & RESTful Web Service
Spring Web Services: SOAP vs. REST
SOAP--Simple Object Access Protocol
Impact of Restful Web Architecture on Performance and Scalability
Soap web service
Web Services Tutorial
REST API Design
Wso2 integration platform deep dive eu con 2016
Rest web services
WSDL in Mule Esb
Ad

Similar to Introduction to RESTful Webservice (20)

PPTX
ASP.NET WEB API Training
PPTX
PPT
nguyenhainhathuy-building-restful-web-service
PPTX
SPFx Webinar Loading SharePoint data in a SPFx Webpart
PPTX
RestFul Web Services In Drupal 8
PPTX
Service approach for development Rest API in Symfony2
PDF
ITB2016 - Building ColdFusion RESTFul Services
PDF
Building Restful Applications Using Php
PDF
Andrei shakirin rest_cxf
PPT
Introduction to the Client OM in SharePoint 2010
PPTX
REST in Peace
PDF
Native REST Web Services with Oracle 11g
PDF
Rest with Spring
PPT
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...
PPT
Restful API's with ColdFusion
PPTX
ASP.NET Web API and HTTP Fundamentals
PDF
Modeling REST API's Behaviour with Text, Graphics or Both?
PPTX
LAJUG Napster REST API
PDF
Talking to Web Services
PDF
Php Web Development Building Dynamic Websites Web Development Series Edet
ASP.NET WEB API Training
nguyenhainhathuy-building-restful-web-service
SPFx Webinar Loading SharePoint data in a SPFx Webpart
RestFul Web Services In Drupal 8
Service approach for development Rest API in Symfony2
ITB2016 - Building ColdFusion RESTFul Services
Building Restful Applications Using Php
Andrei shakirin rest_cxf
Introduction to the Client OM in SharePoint 2010
REST in Peace
Native REST Web Services with Oracle 11g
Rest with Spring
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...
Restful API's with ColdFusion
ASP.NET Web API and HTTP Fundamentals
Modeling REST API's Behaviour with Text, Graphics or Both?
LAJUG Napster REST API
Talking to Web Services
Php Web Development Building Dynamic Websites Web Development Series Edet
Ad

Recently uploaded (20)

PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
PDF
Doc9.....................................
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
PDF
Enable Enterprise-Ready Security on IBM i Systems.pdf
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
PDF
Google’s NotebookLM Unveils Video Overviews
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
PPTX
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
GamePlan Trading System Review: Professional Trader's Honest Take
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
PDF
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
PDF
SparkLabs Primer on Artificial Intelligence 2025
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
PPTX
ABU RAUP TUGAS TIK kelas 8 hjhgjhgg.pptx
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
PDF
Software Development Methodologies in 2025
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
NewMind AI Monthly Chronicles - July 2025
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Doc9.....................................
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
Enable Enterprise-Ready Security on IBM i Systems.pdf
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
Google’s NotebookLM Unveils Video Overviews
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
NewMind AI Weekly Chronicles - August'25 Week I
GamePlan Trading System Review: Professional Trader's Honest Take
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
SparkLabs Primer on Artificial Intelligence 2025
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
ABU RAUP TUGAS TIK kelas 8 hjhgjhgg.pptx
NewMind AI Weekly Chronicles - July'25 - Week IV
Software Development Methodologies in 2025

Introduction to RESTful Webservice