rpn…I had indeed tried the query:
/Journal[/Journal/@JournalName between ‘Ya’,‘Yz’]
and I was getting “XQL Request processed, no object returned”.
However, your tip led me to remember the “string” X-Path function, so I tried
/Journal[string(/Journal/@JournalName) between ‘Ya’,‘Yz’]
and I am getting much better results. However, I now have some other problems.
1. the query is slower now.
2. the query is now case sensitive, so “between ‘y’, ‘z’” returns a different result set from “between ‘Y’, ‘Z’”.
3. the count of records being returned is inconsistent. If I specify a result size that is greater than the actual result size, I get an accurate count. But if the result size is lower, I get a wildly inaccurate and inconsistent overcount. It don’t need the count on this particular query, I just find it rather strange that this is happening.
any thoughts on this?!?
#Tamino#webMethods#API-Management