FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getProductsQueryResponse

Description

A getProductsQueryResponse message contains an element of getProductsQueryResponseType.

Derived By

Type getProductsQueryResponseType

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

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

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

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

The following XML fragment illustrates a successful getProductsQueryResponse message:

<getProductsQueryResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <product>
         <uniqueId>HID-100245</uniqueId>
         <productName>Product_basic</productName>
         <version>1.0</version>
         <description>Product_basic description</description>
         <state>DRAFT</state>
         <licenseTechnology>
            <uniqueId>HID-100</uniqueId>
            <primaryKeys>
               <name>FLEXnet Licensing</name>
            </primaryKeys>
         </licenseTechnology>
         <licenseGenerator>
            <uniqueId>HID-101</uniqueId>
            <primaryKeys>
               <name>demo</name>
            </primaryKeys>
         </licenseGenerator>
         <hostType>
            <name>Certificate or Trusted Host</name>
         </hostType>
         <usedOnDevice>false</usedOnDevice>
         <productCategory>Uncategorized Products</productCategory>
         <allowDownloadObsoleteFrInAdmin>false</allowDownloadObsoleteFrInAdmin>
         <allowDownloadObsoleteFrInPortal>false</allowDownloadObsoleteFrInPortal>
         <creationDate>2011-10-22T20:38:15.660Z</creationDate>
         <lastModifiedDate>2012-03-28T20:39:35.162Z</lastModifiedDate>
      </product>
   </responseData>
</getProductsQueryResponse>