> Are you sure you understand what Fiddler does?

Yea, I saw what it does and I really appreciate the tip. It's really
useful and I could see the actual GET was working returning the data.
The problem was with the json data in the file I was opening (a
fundamental mistake on my part).

Just in case anyone is interested, here's the problem with IE:

var myjson = {
  'tag1': 'entry1",
  'tag2": 'entry2',    // <-- that comma will cause an error in IE,
but not FF or Opera
};

Our data is actually automatically formatted, but we mistakenly
thought the comma was allowed on the last entry. Apparently it's
dependent on browser implementation.

But thanks very much for your help!

Reply via email to