FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getFeaturesQueryRequest

Description

A getFeaturesQueryRequest message contains an element of getFeaturesQueryRequestType.

Derived By

Type getFeaturesQueryRequestType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
queryParams  featureQueryParametersType  0..1  Required. See featureQueryParametersType. Leave this element blank to return all features.
pageNumber  integer  1..1  Required. Starts at 1. Say the getFeatureCount 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.
Referenced By
Name  Type 
getFeaturesQuery  Method 
XML Example

The following XML fragment illustrates a getFeaturesQueryRequest message:

<getFeaturesQueryRequest>
   <queryParams>
      <featureName>
         <value>Feature_add</value>
         <searchType>STARTS_WITH</searchType>
      </featureName>
      <versionFormat>
         <value>FIXED</value>
         <searchType>EQUALS</searchType>
      </versionFormat>
   </queryParams>
   <pageNumber>1</pageNumber>
   <batchSize>50</batchSize>
</getFeaturesQueryRequest>