Json.NET is a popular high-performance JSON framework for .NET
0
votes
2answers
21 views
JSON.NET deserialize function does not return values
I used JSON.NET DeserializeObject function and I'm not getting any value. All it returns is NULL! Help!
Here is the code (very simple code actually!):
public class FMKey
{
public string keyName ...
0
votes
2answers
46 views
How do I deserialize a very simple list of integers?
I have (or will have; its not written yet) a .NET web API controller method that I was just going to have return a list of ints as a JSON response. On the client side, I just wanted to deserialize the ...
3
votes
0answers
17 views
Unable to programmatically set Content-Type in BizTalk Wcf-Custom response port
I am attempting to receive JSON messages into BizTalk using the bLogical REST Start Kit for BizTalk (http://biztalkrest.codeplex.com/).
I am able to successfully receive a message, transform it, and ...
2
votes
2answers
53 views
JSON deserialization in C# sub array
I'm trying to desearialize the following using Newtonsoft.Json
{
"max_id_str":"1234567",
"results":[{
"created_at":"Tue, 21 May 2013 03:06:23 +0000",
"from_user":"Name Here",
...
0
votes
0answers
15 views
Property getter called during deserialization with JSON.Net
When deserializing I'm seeing that property getters are called:
Newtonsoft.Json.dll!Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(object target) + 0x86 bytes
...
-1
votes
1answer
32 views
Formatting output of Newtonsoft.Json.JsonConvert.SerializeObject(dataSet) [duplicate]
I have a DataTable. When it's serialized into JSON with
Newtonsoft.Json.JsonConvert.SerializeObject(dataTable)
I get results in the following format:
[
{
"CLICK_KEY": 6254523744,
...
0
votes
0answers
12 views
Inheriting DefaultContractResolver and treating refereced entities differently
I want to serialize only changed properties. I was managed to do it for the root type, but it contains references to other objects to be serialized (might even be of the same time).
This is my ...
0
votes
1answer
50 views
JSON.NET cast error when serializing Mongo ObjectId
I am playing around with MongoDB and have an object with a mongodb ObjectId on it.
When I serialise this with the .NET Json() method, all is good (but the dates are horrible!)
If I try this with the ...
0
votes
1answer
29 views
How to append node to existing json file using json.net
i am working with json in asp.net using json.NET where on button click values from textbox gets added to json file called country.json. There are two textbox which takes country and its capital as ...
0
votes
0answers
28 views
What does “ReferenceLoopHandling” mean?
I'm doing some test on
Newtonsoft.Json.JsonConvert.SerializeObject(object value, JsonSerializerSettings settings);
And I use this method like this:
JsonConvert.SerializeObject(product, new ...
0
votes
1answer
37 views
Serializing/deserializing derived objects in SignalR
I am using SignalR 1.1 with .NET clients.
I have a single method in my hub that accepts an object of BaseMessage class and broadcasts it to all clients:
public void SendMessage(BaseMessage message)
{
...
-1
votes
0answers
31 views
JSON.net preserve comments in file [closed]
Im using JSON.net with an asp.net mvc project. I have a json file to store the configuration for the application, but every time I change it, I lose all of the comments in the file.
Is there any way ...
0
votes
0answers
20 views
Json regex deserialization with JSON.Net
I'm trying to read the following example json from a text file into a string using the JSON.Net parsing library.
Content of C:\temp\regeLib.json
{
"Regular Expressions Library":
{
...
0
votes
1answer
33 views
JSON NET throwing Unexpected Character Exception [closed]
I'm parsing the following JSON with json.net.
...
1
vote
1answer
49 views
json.net deserialize string to class
i created a json file on my server which im using to send data to a c# program through JSON.NET deserialize. However im im getting a null object exception, can anyone please show me how to create the ...
0
votes
1answer
19 views
Convert EdmType to JsonSchemaType
I am making C# code generation with T4 for an ASP.NET Web API project... I need a simple way to convert an EdmType to JsonSchemaType.
Thanks!
0
votes
0answers
25 views
JSON.Net automatically ignoring property during serialization
I have an Entity Framework entity class that I have extended, here is the code:
partial class Product {
#region Enumerations
public enum Channels {
Unallocated,
Retail,
...
0
votes
2answers
29 views
WCF Json Service not configured correctly
Using .Net 3.5. Trying to provide a WCF - Json service.
Looked for implementation examples and after failing with a few went with Code Project "How to create a JSON WCF RESTful Service in 60 seconds"
...
0
votes
1answer
21 views
Conditional object serialization in JSON.NET
I've been trying to figure out a way to ignore some objects from being serialized based on some conditions. All I can find is how to ignore properties of an object using the ShouldSerialize* method, ...
0
votes
1answer
60 views
deserialize array of multi data type
I have problem when trying to deserialize a json from internet.
But I don't know how to deserialize difference types in one array correctly.
How to do it correctly?
Sorry for my poor english.
Here ...
0
votes
1answer
31 views
JSON parsing in windows phone returns an exception
I am doing a sample for Json parsing in windows phone. I am using Json.Net (json.codeplex.com/releases/view/78509) library, for parsing the response string. But am getting an exception while parsing. ...
1
vote
1answer
39 views
What is JSON.NET for? MVC already has a way to convert objects to json
I looked at the JSON.NET site but I am not getting it... I already have code like this ..
string[] invalidFiles = new string[] { "one.xls", "two.xls", "three.xls" };
return Json(new
...
0
votes
0answers
19 views
How to deserialize JSON to an object that inherits from List<T> using JSON.Net
public class BrightcoveItemCollection<T> : List<T>, IJavaScriptConvertable where T : BrightcoveItem, IJavaScriptConvertable
{
public string Property1 {get;set;}
public ...
1
vote
0answers
36 views
Deserialize derived classes using Json.net without using JObject
I have a large json dataset that I need to deserialize. I am using Json.net's JsonTextReader to read the data.
My problem is that I need to deserialize some derived classes, so I need to be able to ...
1
vote
2answers
95 views
JSON.Net in Api controllers w/ param containing Dictionary is always null
I've seen some tutorials out there that claim to work, but they are outdated or simply do not work.
How can I use JSON.Net to serialize and deserialize the data received to and sent from my API ...
0
votes
1answer
38 views
Facebook Social Plugin Comments JSON.net deserializing not working
I have the following code inside of a WebClient StringCompleted.
var json = JsonConvert.DeserializeObject<dynamic>(e.Result);
the URL is this: ...
1
vote
3answers
96 views
Deserialize Json Object to polymorphic C# object without typeNameHandling
My problem is I want to deserialize a json object to a C# object, but the trick is that the C# object contains List< abstract class > and this abstract class is a super class of another 10 classes.
...
0
votes
1answer
56 views
Deserialize json with Json.NET
I have JSON that looks like this (from the Philips HUE API):
{
"1": {"name": "Bedroom"},
"2": {"name": "Kitchen"}
}
When I try to deserialize this document I run into problems because the ...
0
votes
1answer
31 views
parsing JSON and removing extraneous characters before adding to observable collection
I am trying to GET JSON From a webservice , which i was able to figure out . BTW This was my JSON Data
{
"X-YZ-111/AB.CD": {
"P1": "F",
"P2": "43.46"
}, ...
0
votes
1answer
40 views
Deserializing JSON data to C#
I have this json file
[{"Ticker":"610-KW",
"Ric_Code":null,
"Business_Description":"Sultan Center Food Products Company KSCC is a Kuwait-based public shareholding company that holds investments in ...
1
vote
2answers
53 views
Deserializing a JSON array to a ObservableCollection
I am using RestSharp to communicate with a remote server. I receive a JSON serialized string, which i am able to deserialize into a c# object. I also am able to deserialize json arrays to List. ...
0
votes
1answer
44 views
Any better way to solve the error handling in windows phone using json.net?
I work on a Windows phone 7.1 project target on wp7 and wp8.
I successfully fetch data from a REST api using C#.
The API response me with 1 json, but it can be 2 structures.One for the correct result ...
0
votes
1answer
34 views
what causes IIS to load .NET 2.0 dll instead of 4.0 version inside 4.0 application pool?
We have a website, built using the latest MVC 4 running on IIS 7. We created its own application pool and set its runtime version to 4.0. All was going well for the past couple of months.
Yesterday, ...
0
votes
1answer
48 views
ArgumentException when deserializing using JSON.Net
I have an object as follows,
public class Foo
{
public Dictionary<string, List<double?>> Bar { get; set; }
}
I serialize using, string myJson = JsonConvert.Serialize(myFoo) and get ...
3
votes
2answers
47 views
JSON.NET silently ignores circular references and sets arbitrary links in the chain to null to resolve them
I'm trying to serialize an object graph in JSON.NET in which a Galaxy contains StarSystems, a StarSystem contains Planets, a Planet contains a Colony, a Colony has an Owner, and the Galaxy also has a ...
1
vote
1answer
38 views
how much camel caseing does CamelCasePropertyNamesContractResolver do?
using JSON.Net like this:
JsonConvert.SerializeObject(someObject,
Newtonsoft.Json.Formatting.None,
new JsonSerializerSettings() {
...
0
votes
1answer
63 views
C# Json.NET WCF Rest DateTime Format
Take a look at the following example code, I would like the output to be a WCF date format "/Date(1237951967000)/" or the time zone variant.
class Program
{
public class Test
{
public ...
-1
votes
1answer
32 views
How to serialize subitem using json.net & c#
How can i serialize using json.net & c#?
what is best way?
How to append child node?
output json string like this :
{
"OptQty":100,"OptQtySpecified":false,
"OptTextList":
...
0
votes
1answer
28 views
Deserializing Json to Object list
I have the following Json that I am looking to deserialize into a list of TwitterTiles (see below).
JSON:
{
"twitterTile":
[
{
"hashtag": "#genoa",
...
2
votes
2answers
92 views
How to return JSon object
I am using a jQuery plugin that need a JSON object with following structure(I will be retrieving the values from database):
{ results: [
{ id: "1", value: "ABC", info: "ABC" },
{ id: "2", ...
-1
votes
0answers
28 views
how to extract specific tags from xml and convert to json with json.net
I am using JSON.net, c# and i have an xml file. 10 Namespaces, 100 different tags, 500 lines of code. I would like to convert that xml to json. The point is that i do not want to convert the whole ...
2
votes
1answer
42 views
How can I deserialize using JSON.NET and preserve the parent object
I have some JSON like:
{
"companyName": "Software Inc.",
"employees": [
{
"employeeName": "Sally"
},
{
"employeeName": "Jimmy"
}
]
}
I want to deserialize it into:
...
0
votes
1answer
63 views
Linq to Twitter Authenticated But Getting 215 “Bad Authentication Data”
I have been using Linq to Twitter for Authenticating with OAuth for the Twitter API 1.1.
I set my credentials and then pass them to Linq to Twitter which states I that isAuth returns true. However, ...
0
votes
1answer
22 views
Using JSON.NET in Windows Phone to Query One-Time Objects
I'm working with the Philips Hue API and when I first try to register a username I get the following JSON response back. (My goal is to extract the GUID value of "username" in the "success" object
[
...
0
votes
2answers
73 views
Json.net deserialization array of interfaces
I'm getting a "type is interface, cannot be instanciated" deserialization error with json.net even though I am specifying type on the object I'm trying to deserialize
private static ...
0
votes
1answer
76 views
C# JSON file into list
In my C# + WPF + .NET 4.5 code, suppose I have defined a Player class in the following manner:
public class Player {
public string FirstName;
public string LastName;
public List<int> ...
0
votes
0answers
39 views
Skip deserialization when type is unavailable (not referenced)
I have some json that was generated by using json.net to serialize a type found in a dll which we no longer have a reference to. The json was was generated using the TypeNameHandling.Objects setting ...
1
vote
1answer
49 views
How can I use JSON.NET to handle a value that is sometimes an object and sometimes an array of the object?
I notice there are some other results on stackoverflow for this question but they don't seem to work or are vague. Using the most popular result, I have put together this:
The problem is that when ...
0
votes
0answers
24 views
JavaScriptSerializer JArray deserilization
I am currently converting a JArray to string and using
var foo = serializer.Deserialize<Dictionary<string, Dictionary<string, string>>>(Sign.ToString());
Will it still work if I ...
0
votes
1answer
55 views
deserializing json with multiple definitions for the same object
What is the best approach to deserializing a json blob which has different definitions for the same object?
For example, the following json is valid;
{
"ObjectA": {
"settings": {
...

