FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: createUniformSuiteResponse

Description

A createUniformSuiteResponse message contains an element of createUniformSuiteResponseType.

Each suite in the createUniformSuiteRequest is added as an atomic unit; adding each either succeeds or fails.

Derived By

Type createUniformSuiteResponseType

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

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

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

reason
string
Gives reason for partial failure or failure.
 
failedData  failedUniformSuiteDataListType  0..1  Information about the suites that were not added is listed in the failedData element. See failedUniformSuiteDataListType.
responseData  createdUniformSuiteDataListType  0..1  Information about the suites that were added is listed in the responseData element. See createdUniformSuiteDataListType.
Referenced By
Name  Type 
createUniformSuite  Method 
XML Example

The following XML fragment illustrates a successful createUniformSuiteResponse message:

<createUniformSuiteResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <createdUniformSuite>
         <recordRefNo>1</recordRefNo>
         <uniqueId>HID-12</uniqueId>
      </createdUniformSuite>
   </responseData>
</createUniformSuiteResponse>