1
vote
5answers
325 views
How to pass a JSON date value via ASP.NET MVC?
ASP.NET Json() formats and returns a date as
{"d":"\/Date(1240718400000)\/"}
which has to be dealt w/ on the client side which is problematic. What are your suggestions for app …
0
votes
4answers
132 views
ajax request that returns json array, IE6/7 is caching it and data is not fresh
Hi,
for some reason, IE6/7 is caching the ajax call that returns a json result set back.
My page makes the call, and returns a json result which I then inject into the page.
How …
3
votes
2answers
45 views
What is the JSON.NET equivilant of XML’s XPath, SelectNodes, SelectSingleNode?
At present the structure of my code uses XmlDocument to load Xml and then SelectNodes to iterate through a list of repeating items. For each elements Im using XmlNode.SelectSingleN …
1
vote
2answers
206 views
Google Visualization API .net?
How can i use data in my .NET app that is coming in google's visualisation api json format? Can't imagine at the moment how to use this data.
Do i have to parse the json to an ob …
2
votes
1answer
139 views
Suggestions on how to create a custom GeoJson serializer using JSON.NET?
I will be attempting to create a C# library to serialize objects to GeoJSON using Json.NET ( for serialization ) and GeoAPI.NET ( for geometry definitions ).
I have thought abou …
0
votes
0answers
21 views
Parse out javascript injection during JSON deserialization.
I need to scan inbound string properties sent to a C# coded web server. The scan should strip out any JavaScript injection threat before my web server stores client supplied data i …
3
votes
4answers
571 views
JSON.NET and nHibernate Lazy Loading of Collections
Hi there
Is anybody using JSON.NET with nHibernate? I notice that I'm getting errors when i try to load a class with child collections.
Thanks
Graham
0
votes
2answers
79 views
JsonConvert.DeserializeObject and “d” wrapper in WCF
By default WCF service wrap JSON response in "d" wrapper and there I found a problem with parsing it.
If I parse with JsonConvert.DeserializeObject(response) where response is
"{ …
1
vote
2answers
192 views
JSON.net problem with JsonConvert.DeserializeObject
Hi
I have the following code and json:
public class Labels
{
public Labels()
{}
public Label[] Label {get;set;}
}
public class Label
{
public Label()
{ }
…
3
votes
2answers
155 views
LINQ and JSON.NET when the property names vary
I am attempting to parse some JSON content in to C#. For the simpler cases I am having great success with JSON.NET and really appreciate the clean approach offered by the LINQ prov …
1
vote
1answer
270 views
Deserializing some JSON with JSON.NET
Hi everyone! I'm very new to JSON, and I need to parse some that an API is providing. A quick google search turned up JSON.NET, so I'm trying to use it now to parse this JSON into …
2
votes
1answer
120 views
JSON.NET and arrays using LINQ
I looked at this http://stackoverflow.com/questions/401756/parsing-json-using-json-net question and answer and it's close to what I need. The critical difference Is that I need to …
0
votes
2answers
182 views
deserializing generic dictionary using json.net
I have a class looking like this:
class MyClass {
public int Id;
public Dictionary<int, MyClass[]> ChildValues;
}
when I try to deserialize this class using Json.N …
1
vote
1answer
193 views
How to read Google AJAX Feed API results from C# code?
I want to use Goolge AJAX Feed API in my C# console application to save return feeds as C# collection so i can use this .net collcetion in my .net application.
I noticed google g …
1
vote
2answers
258 views
Deserialize json with json.net c#
Hi, am new to Json so a little green.
I have a Rest Based Service that returns a json string;
{"treeNode":[{"id":"U-2905","pid":"R","userId":"2905"},
{"id":"U-2905","pid":"R","us …
