IDU0075 Sissejuhatus veebiteenustesse Tarvo Treier

Slides:



Advertisements
Similar presentations
Pierre-Johan CHARTRE Java EE - JAX-RS - Pierre-Johan CHARTRE
Advertisements

Give it a REST already Arnon Rotem-Gal-Oz VP R&D xsights
System Wide Information Management (SWIM)
Representational State Transfer (REST) Paul Townend 8 th February 2007.
REST - Representational State Transfer
REST & SOAP Peter Drayton
Service Oriented Architecture
REST Vs. SOAP.
REST Introduction 吴海生 博克软件(杭州)有限公司.
Building and using REST information services Rion Dooley.
Introduction to Web Services
IDU0075 Sissejuhatus veebiteenustesse
REST &.NET James Crisp.NET Practice Lead ThoughtWorks Australia.
CIS* Service-Oriented Computing
Server Access The REST of the Story David Cleary
REST (Representational State Transfer)
Web Service Testing RESTful Web Services Snejina Lazarova Dimo Mitev
CS 4720 RESTfulness CS 4720 – Web & Mobile Systems.
Programming Web Services: RPC via SOAP and REST. 2Service-Oriented Computing RPC via SOAP A Web service is typically invoked by sending a SOAP message.
31242/32549 Advanced Internet Programming Advanced Java Programming
Web Services Copyright © Liferay, Inc. All Rights Reserved. No material may be reproduced electronically or in print without written permission.
General introduction to Web services and an implementation example
Building RESTful Interfaces
Web Services Seminar: Service Description Languages
Introduction to Web Services and Web API’s Richard Holowczak Baruch College December, 2014.
Web Services Darshan R. Kapadia Gregor von Laszewski 1http://grid.rit.edu.
Web Services Nasrullah. Motivation about web service There are number of programms over the internet that need to communicate with other programms over.
SOAP Quang Vinh Pham Simon De Baets Université Libre de Bruxelles1.
IDU0075 Veebiteenused Tarvo Treier
1 The World Wide Web. 2  Web Fundamentals  Pages are defined by the Hypertext Markup Language (HTML) and contain text, graphics, audio, video and software.
CS 415 N-Tier Application Development By Umair Ashraf July 6,2013 National University of Computer and Emerging Sciences Lecture # 9 Introduction to Web.
Web server and web browser It’s a take and give policy in between client and server through HTTP(Hyper Text Transport Protocol) Server takes a request.
IT 210 The Internet & World Wide Web introduction.
Web Architecture & Services (2) Representational State Transfer (REST)
REST.  REST is an acronym standing for Representational State Transfer  A software architecture style for building scalable web services  Typically,
REST vs SOAP for Web Services Applications and Services in Internet Benjamin Hilaire – 81747L
Wyatt Pearsall November  HyperText Transfer Protocol.
Web Services XML-RPC, SOAP, REST Advanced Web-based Systems | Misbhauddin.
IDU0075 Sissejuhatus veebiteenustesse Tarvo Treier
REST - Introduction Based on material from InfoQ.com (Stefan Tilkov) And slides from MindTouch.com (Steve Bjorg) 1.
RESTful Web Service 2014 년 12 월 한연희
1 Seminar on Service Oriented Architecture Principles of REST.
API Crash Course CWU Startup Club. OUTLINE What is an API? Why are API’s useful? What is HTTP? JSON? XML? What is a RESTful API? How do we consume an.
2007cs Servers on the Web. The World-Wide Web 2007 cs CSS JS HTML Server Browser JS CSS HTML Transfer of resources using HTTP.
1 WWW. 2 World Wide Web Major application protocol used on the Internet Simple interface Two concepts –Point –Click.
IS-907 Java EE World Wide Web - Overview. World Wide Web - History Tim Berners-Lee, CERN, 1990 Enable researchers to share information: Remote Access.
Advanced Web Technologies Lecture #4 By: Faraz Ahmed.
Representational State Transfer (REST). What is REST? Network Architectural style Overview: –Resources are defined and addressed –Transmits domain-specific.
RESTful Web Services What is RESTful?
Web Services An Introduction Copyright © Curt Hill.
Web Technologies Lecture 10 Web services. From W3C – A software system designed to support interoperable machine-to-machine interaction over a network.
1/30/20161 Introduction to Web Services Bina Ramamurthy
AJAX and REST. Slide 2 What is AJAX? It’s an acronym for Asynchronous JavaScript and XML Although requests need not be asynchronous It’s not really a.
Using Retrofit framework in implementation of Android REST client David Ante Macan*, Zlatko Stapić, Milan Pavlović* University of Zagreb Faculty of Organization.
REST API Design. Application API API = Application Programming Interface APIs expose functionality of an application or service that exists independently.
Java Web Services Orca Knowledge Center – Web Service key concepts.
Tarvo Treier IDU0075 Veebiteenused Tarvo Treier
Sabri Kızanlık Ural Emekçi
WEB SERVICES.
REST: Web Services Abel Sanchez.
REST- Representational State Transfer Enn Õunapuu
Cosc 5/4730 REST services.
AJAX and REST.
Unit – 5 JAVA Web Services
Advanced Web-based Systems | Misbhauddin
WEB API.
Middleware, Services, etc.
Introduction to Web Services and SOA
Chengyu Sun California State University, Los Angeles
Presentation transcript:

IDU0075 Sissejuhatus veebiteenustesse Tarvo Treier

Tarvo Treier Täna kavas REST-i tutvustus – 5-minuti näide – REST-i põhimõtted – Ressurss – The Google Geocoding API näited Ettekannete teemad

Tarvo Treier Representational State Transfer (REST) REST is an architecture style for designing networked applications. The idea is that, rather than using complex mechanisms such as CORBA, RPC or SOAP to connect between machines, simple HTTP is used to make calls between machines. Allikas:

Tarvo Treier Spetsifikatsioon SOAP is a specification. WSDL is a specification. XML Schema is a specification. SOA and REST have no specifications.

5-minutiline REST-i sissejuhatus

Tekkelugu REST-i defineeris 2000 aastal oma doktoritöös Roy T. Fielding. Roy T. Fielding on HTTP ja URI standardite kaasautor.

REST ja Web REST doesnt build on the principles of the Webthe Web was built based on RESTful principles. They just werent so named until a few years later. The idea of REST is essentially a reverse- engineering of how the Web works. HTTP itself, and URIs themselves, are written with REST principles.

REST vs SOAP Much like Web Services, a REST service is: – Platform-independent (you don't care if the server is Unix, the client is a Mac, or anything else), – Language-independent (C# can talk to Java, etc.), – Standards-based (runs on top of HTTP). With REST, a simple network connection is all you need. You can even test the API directly, using your browser. Postkaart vs Ümbrikuga kirja saatmine

SOAP (querying a phonebook) – –

REST (querying a phonebook) Hea näide: – Halb näide – id=12345 Veel halvem näide –

REST-i põhimõtted REST services are stateless – no cookies; Cache-ability is important too, especially for GETs. REST services have a uniform interface – There is no WSDL in REST. – Interface is provided by the standard HTTP methods (PUT, GET,POST, DELETE). Resources are manipulated through representations – The components in the system exchange data (usually XML documents) that represents the resource. XML XHTML JPEG image

Soovituslikud põhimõtted 1 Do not use "physical" URLs. A physical URL points at something physical. Physical: Logical:

Soovituslikud põhimõtted 2 Queries should not return an overload of data. If needed, provide a paging mechanism. For example, a "product list" GET request should return the first n products (e.g., the first 10), with next/prev links.

Soovituslikud põhimõtted 3 Even though the REST response can be anything, make sure it's well documented, and do not change the output format lightly (since it will break existing clients). Remember, even if the output is human- readable, your clients aren't human users. If the output is in XML, make sure you document it with a schema.

Soovituslikud põhimõtted 4 Rather than letting clients construct URLs for additional actions, include the actual URLs with REST responses. For example, a "product list" request could return an ID per product, and the specification says that you should use to get additional details. That's bad design. Rather, the response should include the actual URL with each item: etc. Yes, this means that the output is larger. But it also means that you can easily direct clients to new URLs as needed, without requiring a change in client code.

Soovituslikud põhimõtted 5 GET access requests should never cause a state change. Anything that changes the server state should be a POST request (or other HTTP verbs, such as DELETE) Mis võib juhtuda, kui panete veebi lingi, millega on võimalik näiteks andmebaasist rida kustutada?

Ressurss Resources are the key abstractions in REST. They are the remote accessible objects of the application. A resource is a unit of identification. Everything that might be accessed or be manipulated remotely could be a resource. – – –

Järgnevad REST ja WS-* näited Allikas: amsterdam-restws-pautasso-talk.pdfhttp:// amsterdam-restws-pautasso-talk.pdf Tarvo Treier

The Google Geocoding API Documentation – on/geocoding/ on/geocoding/ Request for XML response – +Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true +Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true Request for JSON response – 0+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true 0+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true

Ettekannete teemad Järgmises loengus võimalik teenida min pikkuse ettekandega 5 boonuspunkti – JSON – WADL – REST Security (https) – SOAP Security (WS-Security) – Mocking REST Service (SoapUI) – Testing REST Service (SoapUI) Tarvo Treier

Kasulikke viiteid restful-http-apps-roth restful-http-apps-roth Services.html Services.html