Hi
I use Tamino 4.4 with “Tamino API for Java” but I come from Tamino 2.2.
In a query, I have a result of 4000 XML but only need the document from positon >= 300
My first idea is
…
TQuery query = TQuery.newInstance(“ESQ0011[Factura/FechaEmision=‘20061108’]”);
TResponse tresp = tacc.query(query, PAGE_SIZE);
int count=0;
while (ti.hasNext() && count<300)
{
ti.next();
count++;
}
if (count==300)
{
//my process
…
}
I suppose that better ways to do it. I would like some recomendation, help, … whatever.
Thanks a lot
Tony
#webMethods#API-Management#webMethods-Tamino-XML-Server-APIs