The COUNT tag returns the wrong value when the Limit request parameter is used.
If the requested limit is smaller than the number of records that match the
criteria, then the value for Limit is returned.
For example, given some search criteria that matches 50 records and a Limit of
10 is specified, something similar to the following is returned:
<RETS ReplyCode="0" ReplyText="Operation Successful">
<COUNT Records="10"/>
...
</RETS>
but should have returned something like:
<RETS ReplyCode="0" ReplyText="Operation Successful">
<COUNT Records="50"/>
...
</RETS>
Attached is a patch file that fixes this problem. This patch is intended to be
applied after the patch in Issue #6.
Original issue reported on code.google.com by work4dhu...@gmail.com on 12 Feb 2011 at 6:23
Original issue reported on code.google.com by
work4dhu...@gmail.com
on 12 Feb 2011 at 6:23Attachments: