I decided to switch back to XML-RPC, and found that while making a JSON
call without params specified worked great, it didn't work under
XML-RPC. So I added this line to line 274 of the latest version:
if (params == null) params = [];
I've spent about 30 minutes total programming JavaScript, so I'll take
no offense if you fix it up, but I think the change makes the library a
tad more convenient to use.
Also, I noticed that when I returned an array to the client through
JSON, it came through as an Array, but when I returned an array to the
client through XML-RPC, it came through as an Object. Am I doing
something wrong?
Thanks for any help.
Steve
The answer to that question was yes. My mistake, I figured it out. :-)
Great work! I can tell I'm going to be leaning on this library for
years.
Steve