Life on the Web is fast and furious should we be more RESTful?

Size: px
Start display at page:

Download "Life on the Web is fast and furious should we be more RESTful?"

Transcription

1 Life on the Web is fast and furious should we be more RESTful? Gerhard Bayer Senior Consultant International Systems Group, Inc.

2 Agenda Today Overview of REST concepts The concept of resources The uniform interface Architectural constraints Exploiting HTTP What about business logic? RESTful vs. RESTlike systems Traditional Web Services vs. REST JSON vs. XML Why WSDL and the REST alternative Why SOAP and the REST alternative Perceived deficiencies of REST Technology support Conclusions 2

3 Representational State Transfer (REST) Architectural style for distributed hypermedia systems Prime example: the World Wide Web Originated in a 2000 doctoral dissertation by Roy Fielding One of the authors of the HTTP protocol specification Why REST? REST is based on the proven concepts of the WWW HTTP Hyperlinked resources Some high profile companies that are providing services in a REST form or tools to build RESTful services: Yahoo, ebay, Amazon, Google, IBM, Sun, Microsoft 3

4 Defining RESTful Architectures REST is an alternative to traditional Web Services Based on WSDL, SOAP, WS-* RESTful architectures are characterized by three key concepts: Resources that can be addressed through standard links A Uniform Interface based on HTTP Architectural constraints for resource implementations 4

5 The Concept of Resources A resource is an entity that can be accessed through a standard link REST prescribes using a Uniform Resource Identifier (URI) Allows to exploit the proven addressing scheme of the WWW The first step in designing a RESTful system is to define the URIs for all resources E.g. a reservation system might define individual reservations: For example reservation number : 5

6 Resources Should Exploit Hyperlinking A resource typically should include links to other resources For example, our reservation resource would include a link to the passenger(s): <reservation> <ID> </> <passenger ref= /> </reservation> A typically usage is a list resource that facilitates navigation among reservations: 6

7 Resources Should Exploit Hyperlinking RESTful systems take advantage of the Web addressing scheme This is very dynamic: the server can reside anywhere, and change location without affecting the clients This kind of addressing is standard, everybody understands it, and it is available everywhere Compare to finding objects Can exploit caching: Resource representations can be cached They are just data, e.g. XML Utilization of caching is what made the Web so extremely scalable 7

8 The Uniform Interface Client/server systems usually have custom interfaces Web Services typically expose custom operations E.g. the bank account Web Service interface is different from the rental car reservation Web Service interface Objects are called on their methods Classes define custom interfaces There is only one REST interface for all systems that follow this architectural style Consists of the HTTP commands: GET, PUT, POST, DELETE 8

9 The Uniform Interface Example: a REST-based travel agent application Each reservation is exposed through a URL A client application sends a PUT command to the application in order to create a new reservation It uses a GET command to a URL that identifies one particular reservation in order to retrieve it Then it might send POST against the same URL, including data in the body of the request that would change the reservation It uses DELETE to cancel the reservation 9

10 The Uniform Interface The HTTP commands can conceptually be mapped to the CRUD operations: CRUD HTTP Create PUT Read GET Update POST Delete DELETE 10

11 Traditional Web Service Interface vs. REST Reservation Service createreservation() getreservation() changereservation() cancelreservation() listreservations() listreservationsofcustomer() Customer Service createcustomer() getcustomerdetails() updatecustomer() deletecustomer() listcustomers() Interface Resource GET PUT POST DELETE /reservations GET list all reservations POST create reservation /reservations/(id) GET read reservation detail PUT change reservation DELETE cancel reservation /customers GET list all customers POST create customer /customers/(id) GET read customer detail PUT update customer DELETE delete customer /customers/(id)/reservations GET all customer reservations PUT add reservation to customer DELETE cancel all reservations11

12 Defining RESTful Architectures RESTful architectures are characterized by three key concepts: Resources that can be addressed through standard links A Uniform Interface based on HTTP Architectural constraints for resource implementations 12

13 Architectural Constraints REST prescribes an architectural constraint for the resources: Resources should not maintain state This is key for reliability and scalability When discussing state one has to distinguish between session state and server state Server state consists of persistent data that is kept on the server In a database, ERP system, etc. For example the balance of a bank account Session state describes the status of a session that a user (i.e. client application) maintains with an application Keeps track of a multi-step conversation between the user and the application 13

14 Architectural Constraints Many of today s Web applications violate this principle Session state is maintained on the server in memory E.g. a shopping cart The client passes a token that identifies the session state This design can not scale easily E.g. passing session state across servers in a cluster 14

15 Architectural Constraints Statelessness requires that the client passes sufficient conversational information with each request to the server application Stateless applications provide ultimate scalability Each request is independent of previous requests and can be handled by any available application instance Load balancing and failover are much easier to achieve 15

16 Designing A RESTful System The basic steps when designing a RESTful system are: Define the resources and assign URIs Define the data formats for input and output In REST this could be anything, for example XML, JSON, binary, etc. Company or particular vertical industry XML standards are obviously helpful Define what the HTTP verbs mean for each resource in terms of semantics This is often obvious Choose response codes HTTP has a comprehensive response code set to choose from 16

17 Exploiting HTTP RESTful systems exploit the Web, and in particular HTTP: Caching Redirection Compression Standard response codes Content negotiation - resources can, and should be, represented in different formats GET /reservations/ HTTP/1.1 Host: travelco.com Accept: application/custom-xml 17

18 What About Business Logic? REST is not just about data There could be a lot of business logic implementing a resource E.g. put together the resource state from legacy systems, databases, computations But some scenarios require actions Example: a currency converter CRUD is not enough We need to be able to request actions This is outside of standard REST There are different design approaches 18

19 What About Business Logic? Sample currency conversion resource: We could use a GET against this resource, or a POST there are no specific rules Another approach re-introduces the notion of interfaces, or not? No custom operations - still uses HTTP verbs, but includes some activity description E.g. Amazon EC2 uses GET to send a request for an activity that is embedded in the XML E.g. Action Run machine image People create XML based languages to describe activities 19

20 RESTful vs. RESTlike Systems Many systems are RESTlike, but not completely RESTful One example of a RESTlike system is the B2B Gateway that we have built for one of our customers: The B2B Gateway receives reservations from a multitude of B2B partners and acts as a conduit to a back office reservations application The system supports the following functionality: Create Reservation Modify Reservation Retrieve Reservation Cancel Reservation Quote Price 20

21 Sample RESTlike System Architecture Business Partners Vettro GT3 Future Partners Sockets, Web Service (HTTP) Orchestration Services Application Services Vettro Inbound Request Service GT3 Reservation Request Service GT3 Customer Cancel Service CSI Reservation CSI Reservation CSI Services Reservation CSI Services Reservation CSI Services Reservation CSI Services Reservation Services Services Reservation Service Wrapper Invoice Service City of Service Calculation Infrastructure Services Message Store Communication Notification Transformation Security 21

22 Sample RESTlike System The B2B Gateway has been designed in a RESTlike fashion: It is not completely REST since it doesn t utilize the HTTP commands correctly All services are based on the HTTP Post command The requested function could be embedded in the XML payload of the request Something like POST reservation_service (xml (action=cancel)) In the current design it is inherent in the service Something like POST cancel_reservation_service (xml) This Cancel Reservation Service should rather be a reservation resource that accepts HTTP Delete Similarly, the Retrieve Reservation Service should be a reservation resource that accepts HTTP Get 22

23 Sample RESTlike System The B2B Gateway has been designed in a RESTlike fashion (cont.): It does not follow a strict addressing of resources based on URIs It doesn t exploit the standard HTTP response codes This had been dictated by the requirement to follow an industry standard 23

24 Traditional Web Services vs. REST Characteristics of traditional Web Services based architectures XML is used for data exchange between service provider and service consumer Binary data can be encapsulated within an XML envelope Requires encoding (i.e. Base64) of the data such that the service consumer understands how to deal with it This increases transmission size and creates processing overhead for the encoding and decoding REST is based on HTTP, which allows content negotiation, and thus can use any data format E.g. JSON (JavaScript Object Notation) has become a popular format for Rich Internet Applications (RIAs) that are based on Ajax 24

25 JavaScript Object Notation (JSON) Typical (RIA) Web application architecture: User interaction Ajax Browser JSON OR XML? RESTful Web Service Web Service Platform JavaScript Object Notation (JSON) alternative format to XML 25

26 JSON vs. XML XML is difficult to process within the Browser Typically requires complex DOM programming E.g. many method calls navigating through the nodes of the DOM data tree Often introduces cross-browser compatibility issues JSON as an alternative Leverages the fact that JavaScript is available in all mainstream Browsers And it is a popular client side development tool JSON is a data format that is natural to JavaScript Uses a textual data representation On first glance similar to XML However, much easier to process in JavaScript 26

27 JSON vs. XML passenger": {"name": Jo D", "address": { "street": 100 Broadway" "city": New York", "zip": 10101, }, "phones": [ ", " ] <passenger> <name>jo D</name> <address> <street>100 Broadway</street> <city zip= 10101">New York</city> <phonenumbers> <phone> </phone> <phone> </phone> </phonenumbers> </address> </passenger> 27

28 Why WSDL And The REST Alternative Interface description WSDL is used as the formal, standard language to describe The service interface The concrete (physical) binding to a service implementation The biggest part of the service interface description is about the data types that the service expects However, data types are usually described in an XML Schema, separate from the WSDL 28

29 WSDL + XML Schema When WSDL is used to describe the interface of a Web Service, the parameters of each operation need to be defined Requires type definitions There are 3 options for type definitions in WSDL Define all types explicitly in the type section of the WSDL No types should be defined in reusable Schemas Define types in a Schema and reference needed elements individually in WSDL No unnecessary duplication Define all types in a Schema and reference the entire schema in WSDL as a complex type 29

30 WSDL + XML Schema Define all types explicitly in the type section of the WSDL: <types> <xsd:schema <xsd: element name= CreateReservationType > <xsd:complextype> <xsd:sequence> <xsd:element name= ="PickUpDateAndTime" type="xs:datetime /> <xsd:element name= ="PickUpLocation" type="xs:string /> </xsd:sequence> </xsd:complextype> </xsd: element> </xsd:schema> </types> These types are then referenced in the message section of the WSDL 30

31 WSDL + XML Schema Define all types in Schema and reference the entire Schema as complex type in WSDL: <types> <xsd:schema <xsd:import.. import the Schema here. <xsd: element name= CreateReservationType > <xsd:complextype> <xsd:sequence> <xsd:element name= Create type= CreateReservation /> </xsd:sequence> </xsd:complextype> </xsd: element> </xsd:schema> </types> Again, this type is then referenced in the message section of the WSDL 31

32 Why WSDL And The REST Alternative REST alternative: REST is based on the concept of resources Resources can be described using XML Schemas Often clients and resource in a RESTful architecture exchange data encoded in other formats E.g. JSON format - JavaScript Object Notation There is no XML involved 95% of what WSDL defines is already available in XML Schemas The rest deals with operations, protocol binding, and non-essential items 32

33 Why WSDL And The REST Alternative Definition of operations WSDL allows defining several proprietary operations that a Web Service supports For example, a flight reservation Web Service might expose an interface with the operations create reservation, modify reservation, and cancel reservation Related functions are usually grouped as operations into one service E.g. organized by business domain, geography, security constrains, etc. To add another function to a service, the WSDL has to be changed and provided to the service consumers In addition to the Schemas that define the data of the new function extensibility? 33

34 Why WSDL And The REST Alternative REST alternative: REST uses only the standard operations defined in the HTTP specification (Get, Post, etc.) A description of operations is therefore not necessary Covers a large percentage of possible requirements Some requirements cannot be satisfied with this approach; typically solved by passing command strings to the application 34

35 Why WSDL And The REST Alternative Endpoint definition A client that wants to access a Web Service needs to know its physical address WSDL allows the formal definition of such an endpoint Traditional Web Services do not follow the Web concept of hyperlinked resources They typically make RPC calls like in programming languages Clients need to obtain and parse the WSDL in order to find the service address So what is Web about Web Services? REST alternative: RESTful resources are addressable through URIs This follows the standard mechanism of the Web 35

36 Why WSDL And The REST Alternative Protocol binding WSDL allows defining which protocol (i.e. SOAP or HTTP) should be used to access a Web Service It also defines how in particular this protocol should be used REST alternative: In a REST scenario, HTTP is the standard protocol 36

37 Why WSDL And The REST Alternative Client code generation WSDL can be used as input to tools that generate code for building Web Service clients This is mostly beneficial for RPC-style invocation of Web Services REST alternative: REST does not require building interface specific client code 37

38 Why WSDL And The REST Alternative Business process management: WSDL is a requirement for linking BPEL based business processes to services SOAP is typically used by the BPEL engine to communicate with a Web Service REST alternative: The Web Service Invocation Framework (WSIF) provides a solution for services that do not follow the WSDL/SOAP paradigm WSDL needs to be created to describe the service WSIF supports a multitude of communication mechanisms beyond SOAP 38

39 Why SOAP And The REST Alternative Advantages of SOAP Most of the higher-layer WS*- standards are based on utilizing the SOAP header BUT: Which standards are really required for your project? Often used in RPC-style service invocation Disadvantages of SOAP Adds another layer of complexity Service consumer and provider are (in most cases) already connected through HTTP Many requirements that typically lead to using the WS* standards can be addressed by proper application design RPC-style service invocation results in tight coupling of the Web Service provider and consumer 39

40 Which Standards Do You Really Need? BPEL4People Internet Monitoring & Management BPM CEP BAM B2B BPEL/BPMN WS-I Messaging WS-Reliable Messaging WS-Notification Security Transform WS-Security XSLT Route XML Transact Oasis Protocol Switching HTTP, TCP, FTP, JMS, SOAP, etc. XML XML-Schema XML WSIF Service Consumer Service Registry Wrapper WSDL Legacy Systems, Packages, New Services UDDI Service Providers 40

41 Perceived Deficiencies of REST Transactions Transactions for traditional Web Services have been defined by OASIS Tries to implement distributed all or nothing transactions through SOAP wrappers for the XA protocol A business activity cannot be completed unless all participating resources are updated successfully or rolled back to a previous consistent state Requires locking of resources Not feasible across the Internet Even within the boundaries of one company, the notion of Web Services assumes much less control over the execution behavior than in case of the tightly coupled systems that gave rise to XA 41

42 Perceived Deficiencies of REST Compensating transactions: B2B (and some times A2A) integration often requires support for long running transactions E.g. making reservations for airline, hotel, and rental car as one combined transaction It could take hours or days for all participating resources to complete the transaction In the Web Services standards they are also called Business Transactions (BT) Prohibitive to lock resources + cannot assume eventual successful updates Failure handling through compensating transactions The consistency of all participating systems is restored by running transactions that turn back the effect of the initial transactions 42

43 Perceived Deficiencies of REST Reliable message delivery WS-Reliability provides message delivery assurances: At most once, at least once, exactly once In order Several messages belonging to one sequence are delivered to the service provider in the same order they were sent by the service consumer REST alternative: Some applications can simply resend a message, without causing problems if the receiver gets it twice E.g. send the latest stock price Using an application level protocol to acknowledge message receipt is often a better choice anyway Message has been delivered vs. has been understood 43

44 Perceived Deficiencies of REST Publish / subscribe In a pub/sub model, an interested party subscribes to a particular category of information and gets notified each time this information is updated The WS-Notification specification supports pub/sub in the following ways: Direct communication between participants in a publish/subscribe environment Brokered communication XML based topic definition 44

45 Perceived Deficiencies of REST Publish / subscribe REST is fundamentally based on a client-server model HTTP always refers to a client and a server as the endpoints of communication Notification functionality can be implemented through polling E.g. RSS, Atom feeds This works well in some scenarios, but not all For example a large number of very distributed subscribers They use GET, which is a highly optimized operation on the Web Exploits caching, the scalability of the Web: the number of subscribers can be unlimited It would be less scalable to have the publisher send out notifications to all subscribers 45

46 Perceived Deficiencies of REST Asynchronous interactions A client issues a request against a server application and wants to obtain the result later Usually because the server takes a while for processing This problem can be solved conceptually the same way as in other environments (e.g. components): Use HTTP response code 202 (Accepted) Defined as The request has been accepted for processing, but the processing has not been completed. Obtain the result using either of 2 options: Through polling a different result URI returned by the server application By providing a URI to server where it can POST the result resource (this could also be used to build a pub/sub solution, see previous slide) 46

47 Security Perceived Deficiencies of REST In traditional Web Services, SOAP headers are used for a variety of security standards In RESTful systems, HTTP provides a number of options to implement security: Encryption Certificates Authentication and authorization HTTP provides less security options than SOAP, but for many application requirements it is sufficient 47

48 Registry Perceived Deficiencies of REST Where do you start, what is the entry point, how do you find things? In WSDL/SOAP based systems the entry point is the registry UDDI standard Finding a service endpoint in a registry is a non-trivial task In REST the general idea is that we don t need a registry Inherent concept of the hypermedia architecture is the notion of collections A collection is a list of links to other resources Remember our example of the reservations list There are some standards: Atom 48

49 Technology Support The technology support for building RESTful systems is growing Java example: JAX-RS Objective: map the REST principles to Java Developers don t have to code the mapping For example in a /helloworld ) public class text/plain ) public String sayhello() { return Hello World\n text/hml ) public String sayhelloinhtml() { return <html><title>hello World</title></html> } 49

50 Technology Support Examples: Sun reference implementation of JAX-RS: Jersey JBoss: RESTEasy Ruby, Python 50

51 Conclusions Traditional Web Services are not really Web They do not exploit the proven capabilities of the Web and HTTP Resources accessible through standard HTTP commands vs. services with proprietary interfaces Features of HTTP like scalability, content negotiation Hyper-linking of resources RESTful systems have gained mind share But: be aware of the deficiencies No equivalent support like WS-* standards But what do you really need for your application requirements? There is no standard approach to exposing business logic But for most application requirements REST is sufficient and there are a variety of approaches for exposing business logic 51

RESTful Services. Distributed Enabling Platform

RESTful Services. Distributed Enabling Platform RESTful Services 1 https://dev.twitter.com/docs/api 2 http://developer.linkedin.com/apis 3 http://docs.aws.amazon.com/amazons3/latest/api/apirest.html 4 Web Architectural Components 1. Identification:

More information

describe the functions of Windows Communication Foundation describe the features of the Windows Workflow Foundation solution

describe the functions of Windows Communication Foundation describe the features of the Windows Workflow Foundation solution 1 of 9 10/9/2013 1:38 AM WCF and WF Learning Objectives After completing this topic, you should be able to describe the functions of Windows Communication Foundation describe the features of the Windows

More information

Goal: Offer practical information to help the architecture evaluation of an SOA system. Evaluating a Service-Oriented Architecture

Goal: Offer practical information to help the architecture evaluation of an SOA system. Evaluating a Service-Oriented Architecture Evaluating a Service-Oriented Architecture Paulo Merson, SEI with Phil Bianco, SEI Rick Kotermanski, Summa Technologies May 2007 Goal: Offer practical information to help the architecture evaluation of

More information

Lesson 14 SOA with REST (Part I)

Lesson 14 SOA with REST (Part I) Lesson 14 SOA with REST (Part I) Service Oriented Architectures Security Module 3 - Resource-oriented services Unit 1 REST Ernesto Damiani Università di Milano Web Sites (1992) WS-* Web Services (2000)

More information

Develop Mobile Front Ends Using Mobile Application Framework A - 2

Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 3 Develop Mobile Front Ends Using Mobile Application Framework A - 4

More information

Copyright 2014 Blue Net Corporation. All rights reserved

Copyright 2014 Blue Net Corporation. All rights reserved a) Abstract: REST is a framework built on the principle of today's World Wide Web. Yes it uses the principles of WWW in way it is a challenge to lay down a new architecture that is already widely deployed

More information

Web-Based Systems. INF 5040 autumn lecturer: Roman Vitenberg

Web-Based Systems. INF 5040 autumn lecturer: Roman Vitenberg Web-Based Systems INF 5040 autumn 2013 lecturer: Roman Vitenberg INF5040, Roman Vitenberg 1 Two main flavors Ø Browser-server WWW application Geared towards human interaction Not suitable for automation

More information

ReST 2000 Roy Fielding W3C

ReST 2000 Roy Fielding W3C Outline What is ReST? Constraints in ReST REST Architecture Components Features of ReST applications Example of requests in REST & SOAP Complex REST request REST Server response Real REST examples REST

More information

Implementing a Ground Service- Oriented Architecture (SOA) March 28, 2006

Implementing a Ground Service- Oriented Architecture (SOA) March 28, 2006 Implementing a Ground Service- Oriented Architecture (SOA) March 28, 2006 John Hohwald Slide 1 Definitions and Terminology What is SOA? SOA is an architectural style whose goal is to achieve loose coupling

More information

SOA: Service-Oriented Architecture

SOA: Service-Oriented Architecture SOA: Service-Oriented Architecture Dr. Kanda Runapongsa (krunapon@kku.ac.th) Department of Computer Engineering Khon Kaen University 1 Gartner Prediction The industry analyst firm Gartner recently reported

More information

04 Webservices. Web APIs REST Coulouris. Roy Fielding, Aphrodite, chp.9. Chp 5/6

04 Webservices. Web APIs REST Coulouris. Roy Fielding, Aphrodite, chp.9. Chp 5/6 04 Webservices Web APIs REST Coulouris chp.9 Roy Fielding, 2000 Chp 5/6 Aphrodite, 2002 http://www.xml.com/pub/a/2004/12/01/restful-web.html http://www.restapitutorial.com Webservice "A Web service is

More information

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Fall 94-95

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Fall 94-95 ه عا ی Semantic Web Semantic Web Services Morteza Amini Sharif University of Technology Fall 94-95 Outline Semantic Web Services Basics Challenges in Web Services Semantics in Web Services Web Service

More information

ActiveVOS Technologies

ActiveVOS Technologies ActiveVOS Technologies ActiveVOS Technologies ActiveVOS provides a revolutionary way to build, run, manage, and maintain your business applications ActiveVOS is a modern SOA stack designed from the top

More information

Understanding RESTful APIs and documenting them with Swagger. Presented by: Tanya Perelmuter Date: 06/18/2018

Understanding RESTful APIs and documenting them with Swagger. Presented by: Tanya Perelmuter Date: 06/18/2018 Understanding RESTful APIs and documenting them with Swagger Presented by: Tanya Perelmuter Date: 06/18/2018 1 Part 1 Understanding RESTful APIs API types and definitions REST architecture and RESTful

More information

02267: Software Development of Web Services

02267: Software Development of Web Services 02267: Software Development of Web Services Week 1 Hubert Baumeister huba@dtu.dk Department of Applied Mathematics and Computer Science Technical University of Denmark Fall 2013 Contents Course Introduction

More information

Distributed Systems. Web Services (WS) and Service Oriented Architectures (SOA) László Böszörményi Distributed Systems Web Services - 1

Distributed Systems. Web Services (WS) and Service Oriented Architectures (SOA) László Böszörményi Distributed Systems Web Services - 1 Distributed Systems Web Services (WS) and Service Oriented Architectures (SOA) László Böszörményi Distributed Systems Web Services - 1 Service Oriented Architectures (SOA) A SOA defines, how services are

More information

Distribution and web services

Distribution and web services Chair of Software Engineering Carlo A. Furia, Bertrand Meyer Distribution and web services From concurrent to distributed systems Node configuration Multiprocessor Multicomputer Distributed system CPU

More information

Application Connectivity Strategies

Application Connectivity Strategies Connectivity Strategies Max Dolgicer Director of Technical Services mdolgicer@isg-inc.com Gerhard Bayer Senior Consultant gbayer@isg-inc.com International Systems Group (ISG), Inc 32 Broadway, Suite 414

More information

AIM Enterprise Platform Software IBM z/transaction Processing Facility Enterprise Edition 1.1.0

AIM Enterprise Platform Software IBM z/transaction Processing Facility Enterprise Edition 1.1.0 z/tpf EE V1.1 z/tpfdf V1.1 TPF Toolkit for WebSphere Studio V3 TPF Operations Server V1.2 IBM Software Group TPF Users Group Spring 2007 TPF Users Group Spring 2007 z/tpf Web Services Update Name: Barry

More information

Enterprise Integration Patterns: Designing, Building, and Deploying Messaging Solutions

Enterprise Integration Patterns: Designing, Building, and Deploying Messaging Solutions Enterprise Integration Patterns: Designing, Building, and Deploying Messaging Solutions Chapter 1: Solving Integration Problems Using Patterns 2 Introduction The Need for Integration Integration Challenges

More information

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Spring 90-91

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Spring 90-91 بسمه تعالی Semantic Web Semantic Web Services Morteza Amini Sharif University of Technology Spring 90-91 Outline Semantic Web Services Basics Challenges in Web Services Semantics in Web Services Web Service

More information

Software Design COSC 4353/6353 DR. RAJ SINGH

Software Design COSC 4353/6353 DR. RAJ SINGH Software Design COSC 4353/6353 DR. RAJ SINGH Outline What is SOA? Why SOA? SOA and Java Different layers of SOA REST Microservices What is SOA? SOA is an architectural style of building software applications

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Track # 1: Session #2 Web Services Speaker 1 Agenda Developing Web services Architecture, development and interoperability Quality of service Security, reliability, management

More information

C exam. IBM C IBM WebSphere Application Server Developer Tools V8.5 with Liberty Profile. Version: 1.

C exam.   IBM C IBM WebSphere Application Server Developer Tools V8.5 with Liberty Profile. Version: 1. C9510-319.exam Number: C9510-319 Passing Score: 800 Time Limit: 120 min File Version: 1.0 IBM C9510-319 IBM WebSphere Application Server Developer Tools V8.5 with Liberty Profile Version: 1.0 Exam A QUESTION

More information

(9A05803) WEB SERVICES (ELECTIVE - III)

(9A05803) WEB SERVICES (ELECTIVE - III) 1 UNIT III (9A05803) WEB SERVICES (ELECTIVE - III) Web services Architecture: web services architecture and its characteristics, core building blocks of web services, standards and technologies available

More information

Web Services Week 10

Web Services Week 10 Web Services Week 10 Emrullah SONUÇ Department of Computer Engineering Karabuk University Fall 2017 1 Recap BPEL Process in Netbeans RESTful Web Services Introduction to Rest Api 2 Contents RESTful Web

More information

Services Web Nabil Abdennadher

Services Web Nabil Abdennadher Services Web Nabil Abdennadher nabil.abdennadher@hesge.ch 1 Plan What is Web Services? SOAP/WSDL REST http://www.slideshare.net/ecosio/introduction-to-soapwsdl-and-restfulweb-services/14 http://www.drdobbs.com/web-development/restful-web-services-a-tutorial/

More information

Lesson 3 SOAP message structure

Lesson 3 SOAP message structure Lesson 3 SOAP message structure Service Oriented Architectures Security Module 1 - Basic technologies Unit 2 SOAP Ernesto Damiani Università di Milano SOAP structure (1) SOAP message = SOAP envelope Envelope

More information

Web-services. Brian Nielsen

Web-services. Brian Nielsen Web-services Brian Nielsen bnielsen@cs.aau.dk Why Web Services? Today s Web Web designed for application to human interactions Information sharing: a distributed content library. Enabled Business-to-costumer

More information

Service Oriented Architectures (ENCS 691K Chapter 2)

Service Oriented Architectures (ENCS 691K Chapter 2) Service Oriented Architectures (ENCS 691K Chapter 2) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ The Key Technologies on Which Cloud

More information

Developing RESTful Services Using JAX-RS

Developing RESTful Services Using JAX-RS Developing RESTful Services Using JAX-RS Bibhas Bhattacharya CTO, Web Age Solutions Inc. April 2012. Many Flavors of Services Web Services come in all shapes and sizes XML-based services (SOAP, XML-RPC,

More information

Agent-Enabling Transformation of E-Commerce Portals with Web Services

Agent-Enabling Transformation of E-Commerce Portals with Web Services Agent-Enabling Transformation of E-Commerce Portals with Web Services Dr. David B. Ulmer CTO Sotheby s New York, NY 10021, USA Dr. Lixin Tao Professor Pace University Pleasantville, NY 10570, USA Abstract:

More information

Session 12. RESTful Services. Lecture Objectives

Session 12. RESTful Services. Lecture Objectives Session 12 RESTful Services 1 Lecture Objectives Understand the fundamental concepts of Web services Become familiar with JAX-RS annotations Be able to build a simple Web service 2 10/21/2018 1 Reading

More information

REST Web Services Objektumorientált szoftvertervezés Object-oriented software design

REST Web Services Objektumorientált szoftvertervezés Object-oriented software design REST Web Services Objektumorientált szoftvertervezés Object-oriented software design Dr. Balázs Simon BME, IIT Outline HTTP REST REST principles Criticism of REST CRUD operations with REST RPC operations

More information

WWW, REST, and Web Services

WWW, REST, and Web Services WWW, REST, and Web Services Instructor: Yongjie Zheng Aprile 18, 2017 CS 5553: Software Architecture and Design World Wide Web (WWW) What is the Web? What challenges does the Web have to address? 2 What

More information

ENTERPRISE SOA CONFERENCE

ENTERPRISE SOA CONFERENCE BELGIAN JAVA USER GROUP PRESENTS ENTERPRISE SOA CONFERENCE 2 4 O c t o b e r 2 0 0 6, D e M o n t i l, A f f l i g e m REST - the Better Web Services Model Stefan Tilkov Founder & Principal Consultant

More information

Modern web applications and web sites are not "islands". They need to communicate with each other and share information.

Modern web applications and web sites are not islands. They need to communicate with each other and share information. 441 Modern web applications and web sites are not "islands". They need to communicate with each other and share information. For example, when you develop a web application, you may need to do some of

More information

Asynchronous and Synchronous Messaging with Web Services and XML Ronald Schmelzer Senior Analyst ZapThink, LLC

Asynchronous and Synchronous Messaging with Web Services and XML Ronald Schmelzer Senior Analyst ZapThink, LLC Asynchronous and Synchronous Messaging with Web Services and XML Ronald Schmelzer Senior Analyst ZapThink, LLC The Business Objective Automated Business Collaboration Facilitating exchange of information

More information

SERVICE API SPECIALIST Certification. Service API Specialist

SERVICE API SPECIALIST Certification. Service API Specialist SERVICE API SPECIALIST Certification Service API The new generation SOACP program from Arcitura is dedicated to excellence in the fields of contemporary service-oriented architecture, microservices, service

More information

MOM MESSAGE ORIENTED MIDDLEWARE OVERVIEW OF MESSAGE ORIENTED MIDDLEWARE TECHNOLOGIES AND CONCEPTS. MOM Message Oriented Middleware

MOM MESSAGE ORIENTED MIDDLEWARE OVERVIEW OF MESSAGE ORIENTED MIDDLEWARE TECHNOLOGIES AND CONCEPTS. MOM Message Oriented Middleware MOM MESSAGE ORIENTED MOM Message Oriented Middleware MIDDLEWARE OVERVIEW OF MESSAGE ORIENTED MIDDLEWARE TECHNOLOGIES AND CONCEPTS Peter R. Egli 1/25 Contents 1. Synchronous versus asynchronous interaction

More information

SOA Architect. Certification

SOA Architect. Certification SOA Architect Certification SOA Architect The new generation SOACP program from Arcitura is dedicated to excellence in the fields of contemporary service-oriented architecture, microservices, service APIs

More information

Chapter 10 Web-based Information Systems

Chapter 10 Web-based Information Systems Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 10 Web-based Information Systems Role of the WWW for IS Initial

More information

Simple Object Access Protocol (SOAP) Reference: 1. Web Services, Gustavo Alonso et. al., Springer

Simple Object Access Protocol (SOAP) Reference: 1. Web Services, Gustavo Alonso et. al., Springer Simple Object Access Protocol (SOAP) Reference: 1. Web Services, Gustavo Alonso et. al., Springer Minimal List Common Syntax is provided by XML To allow remote sites to interact with each other: 1. A common

More information

Web Services Development for IBM WebSphere Application Server V7.0

Web Services Development for IBM WebSphere Application Server V7.0 000-371 Web Services Development for IBM WebSphere Application Server V7.0 Version 3.1 QUESTION NO: 1 Refer to the message in the exhibit. Replace the??? in the message with the appropriate namespace.

More information

Asynchronous Web Services: From JAX-RPC to BPEL

Asynchronous Web Services: From JAX-RPC to BPEL Asynchronous Web Services: From JAX-RPC to BPEL Jonathan Maron Oracle Corporation Page Agenda Loose versus Tight Coupling Asynchronous Web Services Today Asynchronous Web Service Standards WS-Reliability/WS-ReliableMessaging

More information

SHORT NOTES / INTEGRATION AND MESSAGING

SHORT NOTES / INTEGRATION AND MESSAGING SHORT NOTES / INTEGRATION AND MESSAGING 1. INTEGRATION and MESSAGING is related to HOW to SEND data to and receive from ANOTHER SYSTEM or APPLICATION 2. A WEB SERVICE is a piece of software designed to

More information

Sriram Krishnan, Ph.D. NBCR Summer Institute, August 2010

Sriram Krishnan, Ph.D. NBCR Summer Institute, August 2010 Sriram Krishnan, Ph.D. sriram@sdsc.edu NBCR Summer Institute, August 2010 What are Services Oriented Architectures? What are Web services? WSDL (Web Services Definition Language) Techniques for building

More information

Introduction to RESTful Web Services. Presented by Steve Ives

Introduction to RESTful Web Services. Presented by Steve Ives 1 Introduction to RESTful Web Services Presented by Steve Ives Introduction to RESTful Web Services What are web services? How are web services implemented? Why are web services used? Categories of web

More information

DS 2009: middleware. David Evans

DS 2009: middleware. David Evans DS 2009: middleware David Evans de239@cl.cam.ac.uk What is middleware? distributed applications middleware remote calls, method invocations, messages,... OS comms. interface sockets, IP,... layer between

More information

Azure Integration Services

Azure Integration Services Azure Integration Services 2018 Microsoft Corporation. All rights reserved. This document is provided "as-is." Information and views expressed in this document, including URL and other Internet Web site

More information

02267: Software Development of Web Services

02267: Software Development of Web Services 02267: Software Development of Web Services Week 8 Hubert Baumeister huba@dtu.dk Department of Applied Mathematics and Computer Science Technical University of Denmark Fall 2016 1 Recap Midtterm Evaluation

More information

Service Interface Design RSVZ / INASTI 12 July 2006

Service Interface Design RSVZ / INASTI 12 July 2006 Architectural Guidelines Service Interface Design RSVZ / INASTI 12 July 2006 Agenda > Mandatory standards > Web Service Styles and Usages > Service interface design > Service versioning > Securing Web

More information

REST Easy with Infrared360

REST Easy with Infrared360 REST Easy with Infrared360 A discussion on HTTP-based RESTful Web Services and how to use them in Infrared360 What is REST? REST stands for Representational State Transfer, which is an architectural style

More information

Introduction to Web Services & SOA

Introduction to Web Services & SOA References: Web Services, A Technical Introduction, Deitel & Deitel Building Scalable and High Performance Java Web Applications, Barish Service-Oriented Programming (SOP) SOP A programming paradigm that

More information

Programming Web Services in Java

Programming Web Services in Java Programming Web Services in Java Description Audience This course teaches students how to program Web Services in Java, including using SOAP, WSDL and UDDI. Developers and other people interested in learning

More information

Kepware Whitepaper. IIoT Protocols to Watch. Aron Semle, R&D Lead. Introduction

Kepware Whitepaper. IIoT Protocols to Watch. Aron Semle, R&D Lead. Introduction Kepware Whitepaper IIoT Protocols to Watch Aron Semle, R&D Lead Introduction IoT is alphabet soup. IIoT, IoE, HTTP, REST, JSON, MQTT, OPC UA, DDS, and the list goes on. Conceptually, we ve discussed IoT

More information

Web Services Chapter 9 of Coulouris

Web Services Chapter 9 of Coulouris Web Services Chapter 9 of Coulouris 1! Web Services One of the dominant paradigms for programming distributed systems. Enables business to business integration. (Suppose one organization uses CORBA and

More information

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies CNIT 129S: Securing Web Applications Ch 3: Web Application Technologies HTTP Hypertext Transfer Protocol (HTTP) Connectionless protocol Client sends an HTTP request to a Web server Gets an HTTP response

More information

REST API s in a CA Plex context. API Design and Integration into CA Plex landscape

REST API s in a CA Plex context. API Design and Integration into CA Plex landscape REST API s in a CA Plex context API Design and Integration into CA Plex landscape Speaker Software Architect and Consultant at CM First AG, Switzerland since 2008 having 30+ years of experience with the

More information

Internet of Things Workshop ST 2015/2016

Internet of Things Workshop ST 2015/2016 Internet of Things Workshop ST 2015/2016 Architecture Johan Lukkien John Carpenter, 1982 1 Architectural styles (patterns) Remember: An architecture is the fundamental organization of a system embodied

More information

XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web

XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web Web Services. XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web Platform: Windows COM Component Previously

More information

What protocol to choose

What protocol to choose Performance of SOAP/HTTP vs. SOAP/JMS What protocol to choose Today SOA is most prevalent enterprise architecture style. In most cases services (S in SOA) are realized using web services specification(s).

More information

Chapter 9 Web Services

Chapter 9 Web Services CSF661 Distributed Systems 分散式系統 Chapter 9 Web Services 吳俊興 國立高雄大學資訊工程學系 Chapter 9 Web Services 9.1 Introduction 9.2 Web services 9.3 Service descriptions and IDL for web services 9.4 A directory service

More information

CmpE 596: Service-Oriented Computing

CmpE 596: Service-Oriented Computing CmpE 596: Service-Oriented Computing Pınar Yolum pinar.yolum@boun.edu.tr Department of Computer Engineering Boğaziçi University CmpE 596: Service-Oriented Computing p.1/53 Course Information Topics Work

More information

Topics on Web Services COMP6017

Topics on Web Services COMP6017 Topics on Web Services COMP6017 Dr Nicholas Gibbins nmg@ecs.soton.ac.uk 2013-2014 Module Aims Introduce you to service oriented architectures Introduce you to both traditional and RESTful Web Services

More information

Introduction to Web Services & SOA

Introduction to Web Services & SOA References: Web Services, A Technical Introduction, Deitel & Deitel Building Scalable and High Performance Java Web Applications, Barish Web Service Definition The term "Web Services" can be confusing.

More information

BPEL Research. Tuomas Piispanen Comarch

BPEL Research. Tuomas Piispanen Comarch BPEL Research Tuomas Piispanen 8.8.2006 Comarch Presentation Outline SOA and Web Services Web Services Composition BPEL as WS Composition Language Best BPEL products and demo What is a service? A unit

More information

What is it? What does it do?

What is it? What does it do? JBoss Enterprise Application Platform What is it? JBoss Enterprise Application Platform is the industryleading platform for next-generation enterprise Java applications. It provides a stable, open source

More information

Architectural patterns and models for implementing CSPA

Architectural patterns and models for implementing CSPA Architectural patterns and models for implementing CSPA Marco Silipo THE CONTRACTOR IS ACTING UNDER A FRAMEWORK CONTRACT CONCLUDED WITH THE COMMISSION Application architecture Outline SOA concepts and

More information

RESTful -Webservices

RESTful -Webservices International Journal of Scientific Research in Computer Science, Engineering and Information Technology RESTful -Webservices Lalit Kumar 1, Dr. R. Chinnaiyan 2 2018 IJSRCSEIT Volume 3 Issue 4 ISSN : 2456-3307

More information

REST for SOA. Stefan Tilkov, innoq Deutschland GmbH

REST for SOA. Stefan Tilkov, innoq Deutschland GmbH REST for SOA Stefan Tilkov, innoq Deutschland GmbH stefan.tilkov@innoq.com Contents An Introduction to REST Why REST Matters REST And Web Services Recommendations Stefan Tilkov http://www.innoq.com stefan.tilkov@innoq.com

More information

UNITE 2007 Technology Conference

UNITE 2007 Technology Conference UNITE 2007 Technology Conference Some Considerations for MCP Applications using Web Services Michael S. Recant MGS, Inc. Session MCP4027 1:30pm 2:30pm Monday, September 10, 2007 MGS, Inc. Software Engineering,

More information

Integrating Legacy Assets Using J2EE Web Services

Integrating Legacy Assets Using J2EE Web Services Integrating Legacy Assets Using J2EE Web Services Jonathan Maron Oracle Corporation Page Agenda SOA-based Enterprise Integration J2EE Integration Scenarios J2CA and Web Services Service Enabling Legacy

More information

RESTful Web Service Composition with JOpera

RESTful Web Service Composition with JOpera RESTful Web Service Composition with JOpera Cesare Pautasso Faculty of Informatics University of Lugano (USI), Switzerland http://www.pautasso.info 1 University of Lugano, Switzerland Faculty of Informatics

More information

Web-APIs. Examples Consumer Technology Cross-Domain communication Provider Technology

Web-APIs. Examples Consumer Technology Cross-Domain communication Provider Technology Web-APIs Examples Consumer Technology Cross-Domain communication Provider Technology Applications Blogs and feeds OpenStreetMap Amazon, Ebay, Oxygen, Magento Flickr, YouTube 3 more on next pages http://en.wikipedia.org/wiki/examples_of_representational_state_transfer

More information

JVA-563. Developing RESTful Services in Java

JVA-563. Developing RESTful Services in Java JVA-563. Developing RESTful Services in Java Version 2.0.1 This course shows experienced Java programmers how to build RESTful web services using the Java API for RESTful Web Services, or JAX-RS. We develop

More information

UNITE 2003 Technology Conference

UNITE 2003 Technology Conference UNITE 2003 Technology Conference Web Services as part of your IT Infrastructure Michael S. Recant Guy Bonney MGS, Inc. Session MTP4062 9:15am 10:15am Tuesday, September 23, 2003 Who is MGS, Inc.! Software

More information

Computer Networks. Wenzhong Li. Nanjing University

Computer Networks. Wenzhong Li. Nanjing University Computer Networks Wenzhong Li Nanjing University 1 Chapter 8. Internet Applications Internet Applications Overview Domain Name Service (DNS) Electronic Mail File Transfer Protocol (FTP) WWW and HTTP Content

More information

- WEB SERVICES Service descriptions WSDL Messaging with SOAP Service discovery UDDI Message Exchange Patterns Orchestration Choreography WS Transactions. Service descriptions (with WSDL) When we covered

More information

Oracle SOA Suite 10g: Services Orchestration

Oracle SOA Suite 10g: Services Orchestration Oracle University Contact Us: 01 800 214 0697 Oracle SOA Suite 10g: Services Orchestration Duration: 5 Days What you will learn This course deals with the basic concepts of Service Orchestration (SOA)

More information

Chapter 6 Enterprise Java Beans

Chapter 6 Enterprise Java Beans Chapter 6 Enterprise Java Beans Overview of the EJB Architecture and J2EE platform The new specification of Java EJB 2.1 was released by Sun Microsystems Inc. in 2002. The EJB technology is widely used

More information

CS603: Distributed Systems

CS603: Distributed Systems CS603: Distributed Systems Lecture 2: Client-Server Architecture, RPC, Corba Cristina Nita-Rotaru Lecture 2/ Spring 2006 1 ATC Architecture NETWORK INFRASTRUCTURE DATABASE HOW WOULD YOU START BUILDING

More information

ก. ก ก (krunapon@kku.ac.th) (pongsakorn@gmail.com) ก ก ก ก ก ก ก ก ก ก 2 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก 3 ก ก 4 ก ก 1 ก ก ก ก (XML) ก ก ก ก ( HTTP) ก ก Web Services WWW Web services architecture

More information

Oracle SOA Suite 11g: Build Composite Applications

Oracle SOA Suite 11g: Build Composite Applications Oracle University Contact Us: 1.800.529.0165 Oracle SOA Suite 11g: Build Composite Applications Duration: 5 Days What you will learn This course covers designing and developing SOA composite applications

More information

RESTful Web services

RESTful Web services A Seminar report on RESTful Web services Submitted in partial fulfillment of the requirement for the award of degree Of Computer Science SUBMITTED TO: SUBMITTED BY: www.studymafia.org www.studymafia.org

More information

RESTful Web service composition with BPEL for REST

RESTful Web service composition with BPEL for REST RESTful Web service composition with BPEL for REST Cesare Pautasso Data & Knowledge Engineering (2009) 2010-05-04 Seul-Ki Lee Contents Introduction Background Design principles of RESTful Web service BPEL

More information

REST AND AJAX. Introduction. Module 13

REST AND AJAX. Introduction. Module 13 Module 13 REST AND AJAX Introduction > Until now we have been building quite a classic web application: we send a request to the server, the server processes the request, and we render the result and show

More information

J2EE APIs and Emerging Web Services Standards

J2EE APIs and Emerging Web Services Standards J2EE APIs and Emerging Web Services Standards Session #4 Speaker Title Corporation 1 Agenda J2EE APIs for Web Services J2EE JAX-RPC APIs for Web Services JAX-RPC Emerging Web Services Standards Introduction

More information

Chapter 8 Web Services Objectives

Chapter 8 Web Services Objectives Chapter 8 Web Services Objectives Describe the Web services approach to the Service- Oriented Architecture concept Describe the WSDL specification and how it is used to define Web services Describe the

More information

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints Active Endpoints ActiveVOS Platform Architecture ActiveVOS Unique process automation platforms to develop, integrate, and deploy business process applications quickly User Experience Easy to learn, use

More information

BEAAquaLogic. Service Bus. JPD Transport User Guide

BEAAquaLogic. Service Bus. JPD Transport User Guide BEAAquaLogic Service Bus JPD Transport User Guide Version: 3.0 Revised: March 2008 Contents Using the JPD Transport WLI Business Process......................................................2 Key Features.............................................................2

More information

Ellipse Web Services Overview

Ellipse Web Services Overview Ellipse Web Services Overview Ellipse Web Services Overview Contents Ellipse Web Services Overview 2 Commercial In Confidence 3 Introduction 4 Purpose 4 Scope 4 References 4 Definitions 4 Background 5

More information

Notes. Submit homework on Blackboard The first homework deadline is the end of Sunday, Feb 11 th. Final slides have 'Spring 2018' in chapter title

Notes. Submit homework on Blackboard The first homework deadline is the end of Sunday, Feb 11 th. Final slides have 'Spring 2018' in chapter title Notes Ask course content questions on Slack (is651-spring-2018.slack.com) Contact me by email to add you to Slack Make sure you checked Additional Links at homework page before you ask In-class discussion

More information

PS/2 Web Services

PS/2 Web Services 703128 PS/2 Web Services REST Services Monday, 2015-01-12 Copyright 2014 STI INNSBRUCK www.sti-innsbruck.at Outline REST Services Task: Java API for RESTful Web Services (JAX-RS) REST Web Services design

More information

What Is Service-Oriented Architecture

What Is Service-Oriented Architecture What Is Service-Oriented Architecture by Hao He September 30, 2003 "Things should be made as simple as possible, but no simpler." -- Albert Einstein Introduction Einstein made that famous statement many

More information

Etanova Enterprise Solutions

Etanova Enterprise Solutions Etanova Enterprise Solutions Front End Development» 2018-09-23 http://www.etanova.com/technologies/front-end-development Contents HTML 5... 6 Rich Internet Applications... 6 Web Browser Hardware Acceleration...

More information

Oracle. Exam Questions 1z Java Enterprise Edition 5 Web Services Developer Certified Professional Upgrade Exam. Version:Demo

Oracle. Exam Questions 1z Java Enterprise Edition 5 Web Services Developer Certified Professional Upgrade Exam. Version:Demo Oracle Exam Questions 1z0-863 Java Enterprise Edition 5 Web Services Developer Certified Professional Upgrade Exam Version:Demo 1.Which two statements are true about JAXR support for XML registries? (Choose

More information

JSON is a light-weight alternative to XML for data-interchange JSON = JavaScript Object Notation

JSON is a light-weight alternative to XML for data-interchange JSON = JavaScript Object Notation JSON The Fat-Free Alternative to XML { Lecture : 27, Course : CSC375, Days : TTh", Instructor : Haidar Harmanani } Why JSON? JSON is a light-weight alternative to XML for data-interchange JSON = JavaScript

More information

A Pragmatic Introduction to REST. Stefan Tilkov,

A Pragmatic Introduction to REST. Stefan Tilkov, A Pragmatic Introduction to REST Stefan Tilkov, stefan.tilkov@innoq.com Stefan Tilkov http://www.innoq.com stefan.tilkov@innoq.com http://www.innoq.com/blog/st/ http://www.infoq.com Audience Poll How many

More information

Migrating traditional Java EE applications to mobile

Migrating traditional Java EE applications to mobile Migrating traditional Java EE applications to mobile Serge Pagop Sr. Channel MW Solution Architect, Red Hat spagop@redhat.com Burr Sutter Product Management Director, Red Hat bsutter@redhat.com 2014-04-16

More information