Wiki
retrieve Full Resource List


Added by Magnus Martikainen 5 January 2005.
This call was missing from the API (as I pointed out several times before).


Retrieves a list of all resources associated with a particular caller, whether or not they are active.

Passed In

Returned

Schema

Request

<xsd:element name="retrieveFullResourceListRequest">
  <xsd:complexType>
    <xsd:sequence/>
  </xsd:complexType>
</xsd:element>

Response

<xsd:element name="retrieveFullResourceListResponse">
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element maxOccurs="unbounded" minOccurs="0" ref="types:resource"/>
    </xsd:sequence>
  </xsd:complexType>
</xsd:element>

Sample Message

Request

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
                  xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Body>
    <retrieveFullResourceListRequest xmlns="urn:oasis:names:tc:wstrans:v1:types"/>
  </soapenv:Body>
</soapenv:Envelope>

Response

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
                  xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Body>
    <retrieveFullResourceListResponse xmlns="urn:oasis:names:tc:wstrans:v1:types">
      <resource uri="http://company.com/server/resource.zip"/>
      <resource uri="file:C:\Temp\File.zip"/>
    </retrieveFullJobsListResponse>
  </soapenv:Body>
</soapenv:Envelope>

See also: retrieveResourceInformation