Re: [IronPython] JSON vs. IronPython

2010-07-09 Thread Tristan Zajonc
There are bugs in the IronPython 2.6.1 json implementation that I believe have been reported and will be fixed in 2.6.2. For instance, the following gives me an exception: json.loads(json.dumps(dict(test="test"))) I have had better luck with simplejson and import simplejson as json Tristan On

Re: [IronPython] JSON vs. IronPython

2010-07-09 Thread Brian Curtin
On Fri, Jul 9, 2010 at 13:05, Marcin Krol wrote: > Hello everyone, > > I have successfully used JSON as serialization protocol between various > clients and servers in 2 projects, incl. Java app talking to Python servers, > so I would like to use JSON in my upcoming C/S project as well: there's >

[IronPython] JSON vs. IronPython

2010-07-09 Thread Marcin Krol
Hello everyone, I have successfully used JSON as serialization protocol between various clients and servers in 2 projects, incl. Java app talking to Python servers, so I would like to use JSON in my upcoming C/S project as well: there's Json.NET, but how viable is using it in IronPython? Doe