FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: updateFeatureBundleResponse

Description

An updateFeatureBundleResponse message contains an element of updateFeatureBundleResponseType.

Each feature bundle in the updateFeatureBundleRequest is modifed as an atomic unit; modifying each either succeeds or fails. No specific information is returned about feature bundles that were modified successfully.

Derived By

Type updateFeatureBundleResponseType

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  failedUpdateFeatureBundleDataListType  0..1  Information about the feature bundles that were not modified is listed in the failedData element. See failedUpdateFeatureBundleDataListType.
Referenced By
Name  Type 
updateFeatureBundle  Method 
XML Example

The following XML fragment illustrates an unsuccessful updateFeatureBundleResponse message (Feature_add8 does not exist):

<updateFeatureBundleResponse>
   <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>
               <uniqueId>HID-100016</uniqueId>
            </featureBundleIdentifier>
            <description>Now with A, B, C</description>
            <features>
               <feature>
                  <featureIdentifier>
                     <primaryKeys>
                        <name>Feature_add8</name>
                        <version>1.0</version>
                     </primaryKeys>
                  </featureIdentifier>
                  <count>10</count>
               </feature>
               <opType>ADD</opType>
            </features>
         </featureBundle>
         <reason>Identifier Feature_add8 is invalid.</reason>
      </failedFeatureBundle>
   </failedData>
</updateFeatureBundleResponse>