The issue is that, by default, readviewentries returns the number of entries specified by a value in the server doc. For one of our customers, this was creating an issue, since they need to return 200 entries.
We store the URL to retrieve the values in a .net application config file. So, we simply wanted to update our ?readviewentries call to include the &count=200 value.
Here was our original entry:
This was our first try (which of course fails since we need to escape out the ampersand)
After escaping the ampersand with amp; the new key is something that looks like:
lcspendingconversion?readviewentries&Count=200
Problem solved...
0 comments:
Post a Comment