CS 4720
Web Services and Service Oriented Architecture
CS 4720 – Mobile Application Development
Web Services and Service Oriented Architecture CS 4720 Mobile - - PowerPoint PPT Presentation
Web Services and Service Oriented Architecture CS 4720 Mobile Application Development CS 4720 The traditional software model Organizations build it all from scratch We can't trust anyone! Our competitors will sabotage us!
CS 4720 – Mobile Application Development
2
3
4
5
6
7
8
9
10
11
12
Receive PO Get Items from Inventory Update Customer Profile Compute Subtotal Compute Shipping Cost Compute Export Tax Compute International Shipping Compute Total
[ship within US] [ship outside US]
Ship Order
Fork Join Branch Merge
13
14
15
16
17
POST /InStock HTTP/1.1 Host: www.example.org Content-Type: application/soap+xml; charset=utf-8 Content-Length: nnn <?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> <soap:Body xmlns:m="http://www.example.org/stock"> <m:GetStockPrice> <m:StockName>IBM</m:StockName> </m:GetStockPrice> </soap:Body> </soap:Envelope>
18
Content-Type: application/soap+xml; charset=utf-8 Content-Length: nnn <?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> <soap:Body xmlns:m="http://www.example.org/stock"> <m:GetStockPriceResponse> <m:Price>34.5</m:Price> </m:GetStockPriceResponse> </soap:Body> </soap:Envelope>
19
20
21
22
23
24
25
26
27
28
29
30
31
32