Cloud9 – Smartphone movie division player solution (android)
2011 Capstone Design Project in Ajou University
2011 Capstone Design Project in Ajou University
The request:
GET /StockPrice HTTP/1.1
Host: cooolguy.net
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn
<?xml version=”1.0″?>
<env:Envelope xmlns:env=”http://www.w3.org/2003/05/soap-envelope”
xmlns:s=”http://www.cooolguy.net/stock-service”>
<env:Body>
<s:GetStockQuote>
<s:TickerSymbol>MSFT</s:TickerSymbol>
</s:GetStockQuote>
</env:Body>
</env:Envelope>
The response:
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn
<?xml version=”1.0″?>
<env:Envelope xmlns:env=”http://www.w3.org/2003/05/soap-envelope”
xmlns:s=”http://www.cooolguy.net/stock-service”>
<env:Body>
<s:GetStockQuoteResponse>
<s:StockPrice>30.08</s:StockPrice>
</s:GetStockQuoteResponse>
</env:Body>
</env:Envelope>
The request:
GET /StockPrice/MSFT HTTP/1.1
Host: coooguy.net
Accept: text/xml
Accept-Charset: utf-8
The response:
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: nnn
<?xml version=”1.0″?>
<s:Quote xmlns:s=”http://cooolguy.net/stock-service”>
<s:TickerSymbol>MSFT</s:TickerSymbol>
<s:StockPrice>32.08</s:StockPrice>
</s:Quote>