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"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://api.service.softlayer.com/soap/v3.1/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Header>
<ns1:totalItems>
<amount>1</amount>
</ns1:totalItems>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<ns1:getVirtualGuestsResponse>
<getVirtualGuestsReturn SOAP-ENC:arrayType="ns1:SoftLayer_Virtual_Guest[1]" xsi:type="ns1:SoftLayer_Virtual_GuestArray">
<item xsi:type="ns1:SoftLayer_Virtual_Guest">
<domain xsi:type="xsd:string">cgallo.com</domain>
<hostname xsi:type="xsd:string">KVM-Test</hostname>
<id xsi:type="xsd:int">121401696</id>
</item>
</getVirtualGuestsReturn>
</ns1:getVirtualGuestsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|