The records returned from the query are contained in the RecordList element.
A list of records is returned with every query result received from the Oracle Endeca Server. The list of records is represented as a RecordList complex type that is returned in a Results response by the Conversation Web Service. Each record is returned in a Record element.
<cs:Results xmlns:cs="http://www.endeca.com/MDEX/conversation/2/0" xmlns:mdex="http://www.endeca.com/MDEX/XQuery/2009/09"> <cs:Request> ... </cs:Request> <cs:ContentElement xsi:type="cs:RecordList" Id="RecordList" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <cs:NumRecords>2231</cs:NumRecords> <cs:TotalPages>224</cs:TotalPages> <cs:RecordRange First="1" Last="10"/> <cs:RecordListEntry> <cs:Record> <cs:attribute name="AFFINITY_CARD" type="mdex:boolean">false</cs:attribute> <cs:attribute name="AMOUNT_SOLD" type="mdex:double">550.370000</cs:attribute> ... <cs:attribute name="WEEK_ENDING_DAY" type="mdex:dateTime">2000-03-26T00:00:00.000Z </cs:attribute> </cs:Record> <cs:ComputedProperties/> </cs:RecordListEntry> <cs:DimensionHierarchy> <cs:DimensionValueWithPath> <cs:DimensionValue DimensionName="Channel" Spec="3">Direct Sales</cs:DimensionValue> <cs:DimensionValue DimensionName="Channel" Spec="Direct">Direct</cs:DimensionValue> <cs:DimensionValue DimensionName="Channel" Spec="/">Channel</cs:DimensionValue> </cs:DimensionValueWithPath> </cs:DimensionHierarchy> ... <cs:PaginationControl Label="First" Active="false"> <cs:Operator OwnerId="RecordList" Page="0" xsi:type="cs:PageOperator"/> </cs:PaginationControl> ... <cs:Column ColumnKey="AMOUNT_SOLD" DisplayName="Amount Sold" SpecColumn="false"> <cs:SortControl Key="AMOUNT_SOLD" Direction="Ascending" Active="false" xsi:type="cs:SortControl"> <cs:Operator OwnerId="RecordList" xsi:type="cs:SortOperator" Key="AMOUNT_SOLD" Direction="Ascending"/> </cs:SortControl> <cs:SortControl Key="AMOUNT_SOLD" Direction="Descending" Active="false" xsi:type="cs:SortControl"> <cs:Operator OwnerId="RecordList" xsi:type="cs:SortOperator" Key="AMOUNT_SOLD" Direction="Descending"/> </cs:SortControl> </cs:Column> ... </cs:ContentElement> </cs:Results>