FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: deleteFeatureResponse

Description

A deleteFeatureResponse message contains an element of deleteFeatureResponseType.

Each feature in the deleteFeatureRequest is deleted as an atomic unit; deleting each either succeeds or fails. No specific information is returned about features that were deleted successfully.

Derived By

Type deleteFeatureResponseType

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 features in the request were processed.

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

  • FAILURE—None of the features in the request were processed.

reason
string
Gives reason for partial failure or failure.
 
failedData  failedDeleteFeatureDataListType  0..1  Information about the features that were not deleted is listed in the failedData element. See failedDeleteFeatureDataListType.
Referenced By
Name  Type 
deleteFeature  Method 
XML Example

The following XML fragment illustrates an unsuccessful deleteFeatureResponse message (Feature_toDelete has a fixed version, so version needs to be specified):

<deleteFeatureResponse>
   <statusInfo>
      <status>FAILURE</status>
      <reason>All input data in the request failed. Please check the
              specific reasons in returned data.</reason>
   </statusInfo>
   <failedData>
      <failedFeature>
         <featureIdentifier>
            <primaryKeys>
               <name>Feature_toDelete</name>
               <version/>
            </primaryKeys>
         </featureIdentifier>
         <reason>Identifier Feature_toDelete is invalid.
                 # 4359-767</reason>
         </failedFeature>
      </failedData>
   </deleteFeatureResponse>