FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: setFeatureBundleStateResponse

Description

A setFeatureBundleStateResponse message contains an element of setFeatureBundleStateResponseType.

Derived By

Type setFeatureBundleStateResponseType

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.
 
failedData  failedFeatureBundleStateDataListType  0..1  Information about the feature bundles whose state was not set is listed in the failedData element. See failedFeatureBundleStateDataListType.
Referenced By
Name  Type 
setFeatureBundleState  Method 
XML Example

The following XML fragment illustrates an unsuccessful setFeatureBundleStateResponse message:

<setFeatureBundleStateResponse>
   <statusInfo>
      <status>FAILURE</status>
      <reason>All input data in the request failed. Please check the
              specific reasons in returned data.</reason>
   </statusInfo>
   <failedData>
      <failedFeatureBundle>
         <featureBundle>
            <featureBundleIdentifier>
               <primaryKeys>
                  <name>FB_basic_count10</name>
               </primaryKeys>
            </featureBundleIdentifier>
            <stateToSet>INACTIVE</stateToSet>
         </featureBundle>
         <reason>Inactive state is invalid for feature bundle.
                 # 5170-9511</reason>
      </failedFeatureBundle>
   </failedData>
</setFeatureBundleStateResponse>