FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getDownloadPackageQuery

Derived By

Restricting anyType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
DownloadPackageQueryParameters  DownloadPackageQueryParameters  1..1  See DownloadPackageQueryParameters.
PageNumber  integer  1..1  Required. Starts at 1. Say the getDownloadPackageQuery operation using the same query parameters returns 100 records. If the batch size is 50 records and you want the second batch of 50, set pageNumber to 2.
BatchSize  integer  1..1  Required. Maximum number of records to return in the response.
ReturnContainedObjects  boolean  1..1  Whether or not to include the contained objects in the response. TRUE or FALSE.
XML Example

The following XML fragment illustrates a getDownloadPackageQuery message:

<getDownloadPackageQuery>
     <DownloadPackageQueryParameters>
          <DownloadPackageID>
               <value>AS_DP</value>
               <searchType>CONTAINS</searchType>
          </DownloadPackageID>
          <Description>
               <value>AS_DP_09</value>
               <searchType>EQUALS</searchType>
          </Description>
          <!--Version>?</Version>
          <CreationDateStart>?</CreationDateStart>
          <CreationDateEnd>?</CreationDateEnd>
          <Availability>?</Availability-->
     </DownloadPackageQueryParameters>
     <PageNumber>1</PageNumber>
     <BatchSize>10</BatchSize>
     <ReturnContainedObjects>1</ReturnContainedObjects>
</getDownloadPackageQuery>