[Json-rpc-java] IE 6.0 Hanging Issue with async calls

Michael Connor mlconnor at yahoo.com
Sat May 5 04:25:12 SGT 2007


Just wanted to let everyone know that I had this problem before and resolved it just now.

I got advice from someone else who mentioned that in JSONRpcClient_handleResponse there was an eval statement that causes IE to hang.  The statement looks like this...

eval("obj = " + data);

We are using Prototype and the new version Prototype 1.5.1 now supports encoding and decoding of JSON.  I substituted the previous line with the Prototype call....

obj = data.evalJSON();

That did it for me...  Hope this helps others.

Michael Connor




More information about the Json-rpc-java mailing list