13

I see the error in my prod server log; can u give me any hint about what kinds of situations would trigger the error? Thanks.

Token PropertyName in state Start would result in an invalid JavaScript object.

2010-08-02 04:33:56,446 DEBUG 10 XXX - at Newtonsoft.Json.JsonWriter.AutoComplete(JsonToken tokenBeingWritten)
   at Newtonsoft.Json.JsonWriter.WritePropertyName(String name)
ashutosh raina
  • 9,228
  • 12
  • 44
  • 80
Ricky
  • 34,377
  • 39
  • 91
  • 131

1 Answers1

0

Looking at the source:

http://json.codeplex.com/SourceControl/changeset/view/64750#128137

It would appear you are trying to write something out-of-order.

Without seeing your code it would be difficult to know what.

Possibly some exception is being caught and thrown and upsetting the output order?

stusmith
  • 14,003
  • 7
  • 56
  • 89