Dear collegues
I will be pleased on any feedback about the next problem.
- when we perform a sorted query, via a cursor, using _xql, then we get every docs in the doctype instead the subset asked. The query is the next one:
http://i_merw2k/tamino/CCPXIX/estelac?_xql(1,10)=STLIbermarcData sortby (STLValidation[1]/STLValidationName asc)
- The key of the problem, seems to be in the use of the selection of first ocurrence in STLValidation[1]. Of course STLValidation is a multiple element. In the other hand, none of the stored documents in the database, has more than one ocurrence of the element STLValidation. Performing the same query, without restriction about STLValidation ocurrence, everything seems to work OK, getting back from Tamino, just the subset selected, instead the complete doctype content. The query is the following:
http://i_merw2k/tamino/CCPXIX/estelac?_xql(1,10)=STLIbermarcData sortby (STLValidation/STLValidationName asc)
- We tried also, the _cursor command, with the following aspect, and it delivers the same answer as the second query:
http://i_merw2k/tamino/CCPXIX/estelac?_cursor=open&_xql=STLIbermarcData sortby (STLValidation[1]/STLValidationName asc)&_position=1&_quantity=10
Questions