blob: 4ee083c90cbbe8867f602494ce752474158cc9a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:simple="http://www.example.com/simple">
<soapenv:Header/>
<soapenv:Body>
<simple:stockQuote>
<symbol>fbnt</symbol>
<companyName>FlyByNightTechnology</companyName>
<price>1000.0</price>
<open1>1000.0</open1>
<high>1000.0</high>
<low>1000.0</low>
<volume>1000.0</volume>
<change1>1000.0</change1>
<quotes>
<price>2000.0</price>
</quotes>
</simple:stockQuote>
</soapenv:Body>
</soapenv:Envelope>
|