FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getFeatureBundlesQueryResponse

Description

A getFeatureBundlesQueryResponse message contains an element of getFeatureBundlesQueryResponseType.

Derived By

Type getFeatureBundlesQueryResponseType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
statusInfo  StatusInfoType  1..1 
Element  Data Type  Description 
status
StatusType

Returns one of the following:

  • SUCCESS—All feature bundles in the request were processed.

  • PARTIAL_FAILURE—Some, but not all feature bundles in the request were processed. The getCount and getQuery operations never return PARTIAL_FAILURE.

  • FAILURE—None of the feature bundles in the request were processed.

reason
string
Gives reason for partial failure or failure.
 
responseData  getFeatureBundlesQueryResponseDataType  0..1  See getFeatureBundlesQueryResponseDataType.
Referenced By
Name  Type 
getFeatureBundlesQuery  Method 
XML Example

The following XML fragment illustrates a successful getFeatureBundlesQueryResponse message that returns the contained features:

<getFeatureBundlesQueryResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <featureBundle>
         <uniqueId>HID-100236</uniqueId>
         <name>FB_basic_count10</name>
         <description>Basic now contains Feature_add3</description>
         <state>DRAFT</state>
         <features>
            <feature>
               <featureIdentifier>
                  <uniqueId>HID-100230</uniqueId>
                  <primaryKeys>
                     <name>Feature_add1</name>
                     <version>1.0</version>
                  </primaryKeys>
               </featureIdentifier>
               <count>10</count>
            </feature>
            <feature>
               <featureIdentifier>
                  <uniqueId>HID-100231</uniqueId>
                  <primaryKeys>
                     <name>Feature_add2</name>
                     <version>1.0</version>
                  </primaryKeys>
               </featureIdentifier>
               <count>10</count>
            </feature>
            <feature>
               <featureIdentifier>
                  <uniqueId>HID-100237</uniqueId>
                  <primaryKeys>
                     <name>Feature_add3</name>
                     <version>1.0</version>
                  </primaryKeys>
               </featureIdentifier>
               <count>10</count>
            </feature>
         </features>
      </featureBundle>
   </responseData>
</getFeatureBundlesQueryResponse>