Example XML Request
The following is an example of an XML request for the
ListBackupInformation method:
<?xml version="1.0" encoding="iso-8859-1" ?>
<request>
<data>
<serverName>SQL01</serverName>
<filePath>D:\Backups\SampleSQL01.bak</filePath>
<sqlUserName>sampleUser</sqlUserName>
<sqlUserPass>Pass1Word</sqlUserPass>
</data>
<procedure>
<execute namespace="SQL Admin Provider"
procedure="ListBackupInformation">
<before source="data" destination="executeData" mode="merge"/>
<after source="executeData" destination="data" mode="insert"/>
</execute>
</procedure>
</request>
Example XML Response
The following is an example of the structure of an XML response
for the ListBackupInformation method. The actual returned data will
be filled in within the <data> nodes:
<?xml version="1.0" encoding="iso-8859-1" ?>
<response>
<data>
<filePath>D:\Backups\SampleSQL01.bak</filePath>
<backups>
<backup>
<backupName/>
<backupDescription/>
<backupType/>
<expirationDate/>
<compressed/>
<position/>
<deviceType/>
<userName/>
<serverName/>
<databaseName/>
<databaseVersion/>
<databaseCreationDate/>
<backupSize/>
<firstLsn/>
<lastLsn/>
<checkpointLsn/>
<differentialBaseLsn/>
<backupStartDate/>
<backupFinishDate/>
<sortOrder/>
<codePage/>
<unicodeLocaleId/>
<unicodeComparisonStyle/>
<compatibilityLevel/>
<softwareVendorId/>
<softwareVersionMajor/>
<softwareVersionMinor/>
<softwareVersionBuild/>
<machineName/>
<flags/>
<bindingId/>
<recoveryForkId/>
<collation/>
</backup>
</backups>
</data>
</response>