Tagged Questions
The newtonsoft tag has no wiki summary.
8
votes
1answer
301 views
An exception in Json.NET: Token PropertyName in state “Start” would result in an invalid JavaScript object
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 ...
7
votes
2answers
7k views
Parsing JSON DateTime from Newtonsoft's JSON Serializer
I've serialized an object using Newtonsoft's JSON serializer, and the DateTime has come through as:
/Date(1237588418563+0000)/
When I $.evalJSON() on that, it is an object but I can't find any ...
6
votes
2answers
10k views
deserializing JSON to .net object using NewtonSoft (or linq to json maybe?)
I know there a few posts about Newtonsoft so hopefully this isn't exactly a repeat...I'm trying to convert JSON data returned by Kazaa's API into a nice object of some kind
WebClient client = new ...
5
votes
2answers
490 views
how to deserialize JSON into IEnumerable<BaseType> with Newtonsoft JSON.NET
given this JSON:
[
{
"$id": "1",
"$type": "MyAssembly.ClassA, MyAssembly",
"Email": "me@here.com",
},
{
"$id": "2",
"$type": "MyAssembly.ClassB, MyAssembly",
"Email": ...
4
votes
3answers
247 views
Parsing JSON string to .NET Object
I´m parsing a JSON string to a corresponding .NET Object with the Newtonsoft library. I have a problem parsing JSON properties that are arrays. Sometimes the JSON property is an array, other times, it ...
4
votes
1answer
370 views
How to implement custom JsonConverter in JSON.NET to deserialize a List of base class objects
I am trying to extend the JSON.net example given here
http://james.newtonking.com/projects/json/help/CustomCreationConverter.html
I have another sub class deriving from base class/Interface
public ...
3
votes
1answer
681 views
serializing/deserializing derived objects using JSON.NET without using JsonProperty?
I'm using the NewtonSoft JSON.NET library for serializing the following class where DTOBase can hold derived instances.
public class Command
{
public DTOBase CommandDTO { get; set; } ...
3
votes
2answers
595 views
Serialize .Net object to json, controlled using xml attributes
I have a .Net object which I've been serializing to Xml and is decorated with Xml attributes. I would now like to serialize the same object to Json, preferably using the Newtonsoft Json.Net library.
...
2
votes
1answer
63 views
Newtonsoft.Json - ignore DataContractAttribute
i have a type
class Foo
{
public string Name { get; set; }
}
and i can serialize it quickly with JsonConvert.SerializeObject() method (without custom settings) . But if i decorate class ...
2
votes
1answer
298 views
Json.Net - Serialize property name without quotes
I'm trying to get Json.Net to serialise a property name without quote marks, and finding it difficult to locate documentation on Google. How can I do this?
It's in a very small part of a large Json ...
2
votes
2answers
257 views
Error while using Newtonsoft.Json to parse a Json string
My JSON string looks like this. Please note that it has escape characters.
string json = "\"{\\\"Status\\\":true,\\\"ID\\\":24501}\"";
When I use the Parse method like below I run into an error ...
2
votes
1answer
140 views
more json c# issues
This is a continuation of a previous question of mine. The solution worked for what I was trying to do at the time but broke a whole lot of my code. I know it was bad practice not to make sure ...
2
votes
1answer
408 views
JSON C# problem using Newtonsoft
Trying to compile a project using the Newtonsoft.Json.WindowsPhone reference and I am gettign 2 errors when building. I am compiling for windows mobile 6.0 and the latest version of Newtonsoft ver ...
2
votes
2answers
637 views
Error when updating Twitter status with Twitterizer
I have this test application, for twitterizer.
var temp = TwitterViewModel.TokenStore;
string token = HttpContext.Current.Request.QueryString["oauth_token"];
string verifier = ...
2
votes
2answers
766 views
Newtonsoft.json throwing error: Array was not a one-dimensional array
I am getting an error when trying to serialize an object products.
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Price = 3.99M;
...
1
vote
1answer
26 views
Serialising class hierachy in Newtonsoft Json
I'm attempting to serialize a class hierarchy in Newtonsoft Json using C#.
My class structure looks like this:
public abstract class Foo
{
public string PropertyOne{get;set;}
}
public class ...
1
vote
2answers
64 views
RESTful service returning JSON wrapped in XML Serialization tag?
I have a service that attempting to serialize a list into JSON (using JSON.NET) and return as a string. That's all well and good, but my JSON is coming back wrapped and I can't figure out why.
...
1
vote
2answers
132 views
RestSharp - Could not load file or assembly 'Newtonsoft.Json, Version=4.0.3.0
I'm making a GET request to Yammer.com's REST API using RestSharp (which is awesome), and getting this error:
Could not load file or assembly 'Newtonsoft.Json, Version=4.0.3.0, Culture=neutral, ...
1
vote
0answers
31 views
Newtonsoft.JSON error with text with HTML encoded character
I allow user input from TinyMCE on client and store it as a JSON string, then pass it to server ASP.NET C#.
The JSON String looks like this: { "mcfn2" : ";lt;p;gt;Trước đ& oacute;, việc tung ra ...
1
vote
2answers
140 views
twitter API with MonoDevelop and C#
i m working with MonoDevelop. I tried using Twitterizer, as well as tweetsharp but both gives error.
My MonoDevelop version is 2.8.2. When the application launches i get the following error.
Could ...
1
vote
1answer
89 views
Json.NET Uri (de)serialization errors
I need to serialize and deserialize an object that contains an System.Uri property using the latest (4.0.3) Json.NET library.
The following code demonstrates the problem:
string input = ...
1
vote
1answer
169 views
how to force netwtonsoft json serializer to serialize datetime property to string?
I am using Newtonsoft's Json
when i serialze a date time property i get the json response as:
..."CreatedOn":"\/Date(1317303882420+0500)\/",...
i want it to be in simple string as
..."createdOn": ...
1
vote
1answer
79 views
How can I have Raw HTML inside a JsonConvert's SerializeObject()?
I'm trying to recreate the following JavaScript code using Newtonsoft's parser:
var nav = { container: $('.ux-navigation-control'), manual: true, validate: true };
Trying to use Html.Raw inside ...
1
vote
1answer
222 views
How to check if dynamic is empty.
I am using Newtonsoft's Json.NET to deserialize a JSON string:
var output = JsonConvert.DeserializeObject<dynamic>("{ 'foo': 'bar' }");
How can I check that output is empty? An example test ...
1
vote
1answer
177 views
How to Serialize XML to a JSON object with Json.NET
I can serialize XML to a JSON string like this:
var xml = new XmlDocument();
xml.LoadXml("<person><name>John</name></person>");
string jsonString = ...
1
vote
2answers
321 views
Newtonsoft ignore attributes?
Im currently using the same C# DTOs to pull data out of CouchDB, via LoveSeat that I am to return JSON via an ASP MVC controller.
I am using the newtonsoft library to seralise my DTOs before sending ...
1
vote
2answers
588 views
Using Json.net - partial custom serialization of a c# object
I ma using Newtonsofts' Json.Net to serialize some and array of objects to json.
The objects have a common set of properties but also have Meta property which is a dictionary
During serialization I ...
0
votes
1answer
38 views
Twitterizer TwittterTimeline NewtonSoft.JSON.JsonSerializationException problems
The following code throws a NewtonSoft.JSON.JsonSerializationException {"Unexpected token when deserializing object: StartObject. Line 1, position 1884."}
Twitterizer version :2.4.0.26532 ...
0
votes
0answers
16 views
how to read particular data values in JSON using LINQ, returned by Facebook Graph API using NewtomSoft in asp.net
In my ASP.Net Application i'm parsing the JSON values returned by the Facebook Graph API with Newtonsoft.dll,its parsing correctly when i try to calculate the values with selecttoken. its not working ...
0
votes
0answers
23 views
Exception when serializing JSON - what's wrong?
I'm trying to use Newtonsoft.Json to perform a simple serialization, but its not working. What's wrong with this code?
using System.Diagnostics;
using Newtonsoft.Json;
namespace ...
0
votes
2answers
34 views
Check JSON and XML is valid? c#
Im using newtonsoft json.net http://json.codeplex.com/ and I would like to know ...
how to validate json and xml are valid json/xml.
how do i verify this?
0
votes
1answer
25 views
how to exclude null from JSON? (after converting from XML)
Below is code to convert xml to json using http://json.codeplex.com/
how to exclude null from JSON? (ie "SessionId": "null")
string xml = ""; //see XML value below
XmlDocument doc = new ...
0
votes
0answers
51 views
MonoTouch.Dialog + TweetStation + MyProgram
I am developing a Tweeter search application for iPhone which uses, MonoTouch.Dialog.dll, Newtonsoft.Json.dll, and TweetStation.dll (I have compiled the TweetStation as a library, and using that as a ...
0
votes
0answers
48 views
Serializing a C# object without surrounding quotations symbols
In C#, how do I serialize an object with Newtonsoft.Json.JsonConvert.SerializeObject without surrounding quotation marks around properties and their values.
0
votes
1answer
129 views
Json.NET: Deserilization with Double Quotes
I am trying to deserialize a json string received as a response from the service. The client is Windows Phone 7, in C#. I am using Json .NET - James Newton-King deserializor to directly convert the ...
0
votes
2answers
206 views
Selenium WebDriver: Could not load file or assembly 'Newtonsoft.Json Version=4.0.2.0'
Selenium's webdriver gives me that error when trying to use the Chrome or IE driver.
I have got Selenium via Nuget, so it should be giving me the correct libraries. However, it seems to want a ...
0
votes
1answer
232 views
Newtonsoft.Json : Cant get JSON data to convert into C# Object
Call to a REST based API returns me data in JSON format(stored in variable strJSONStringFromAPI).
{
"id": "551",
"name": "Dev D",
"work": [
{
"employer": {
...
0
votes
2answers
205 views
Returning unescaped Json in MVC with Json.Net
I'm having surprising trouble trying to figure out how to return unescaped Json, using Json.Net in an MVC project. It's completely alluding me, but I'm sure I'm missing something simple...
So far, I ...
0
votes
2answers
78 views
JSON nested classed, parent reference
i'm trying to deserialize some JSON into objects it works perfectly .. almost ...
i'm using the NewtonSoft.Json lib in C#
i have a serie of nested classes.
For example:
class car (string prop, ...
0
votes
2answers
170 views
convert text to json
i use Newtonsoft.Json.Net20.dll
Html
<div id="a" runat="server">
</div>
Code
string kb = "a";
string b= Newtonsoft.Json.JsonConvert.SerializeObject(kb).ToString();
...
0
votes
2answers
108 views
How to get the type of deserialized C# object from JSON text?
I am trying to get the type of serialized C# object in JSON Text ( $type in JSON text) without deserialising the JSON text to object again . can you please suggest what are all the option do i ...
0
votes
1answer
103 views
Compare two JObjects or JArray
I have this WPF application which gets data from REST web service and returns a JSON data. Then this data will be converted to xml. This xml file later will be converted back to JSON to be compared ...
0
votes
0answers
129 views
De-sererialzing JSON using JSONConvert - from HTTP-POST
I am trying to deserialize JSON from an HTTP POST. The problem is exactly like this post. jQuery stringify at the source is not an option... because the data originates from a mobile device.
...
0
votes
1answer
74 views
Problem: JSON Deserialization of two objects using one JSON message with Json.NET C#
I am using ASP.Net MVC and JSON.Net API.
I would like to deserialize two objects, let's say: CustomerOrderHeader and a CustomerOrderLines collection.
I have the JSON in the jsonString variable:
{
...
0
votes
1answer
106 views
De-sererialzing JSON using JSONConvert - doesn't complie
I'm using VS2008. I've referenced the Newtonsoft.Json (Json.Net) library (v. 3.5) (just the dll... didn't see documentation on what to do with the .pdb and xml file). I'm running .Net 3.5 on ...
0
votes
2answers
191 views
Json.NET Deserialize value as Null or empty Array
In my application I'm interacting with external json service.
/// simple response class
public class AllForm
{
[JsonProperty("HOTELS")]
public Hotel[] Hotels
{
...
0
votes
3answers
340 views
Selenium 2.0 TFS Newtonsoft.json problem
I'm using selenium 2.0.3 (from a nuget package) for some browser tests. Which all work fine on my local maching.
On our TFS build machine I'm getting the following error when a selenium test is run.
...
0
votes
1answer
155 views
an easy way to serialise c# objects
I'm using Newtonsoft.Json to turn json into objects, that works fine. I was wondering if there's a nice way to reverse the process noting that i dont want to jsonise all the object fields. To ...
0
votes
1answer
164 views
Newtonsoft Object -> Get JSON string
I have an object that is created by Newtonsoft's JSON serializer. I need to get the JSON string that was used to create the object. How do I deserialize the object into a simple JSON string?
0
votes
0answers
88 views
How to pass APIKEY to google to get the Ranks
I have develop a win application in that i have try to get the google ranks at first time i got the ranks but when i try to second time it is throwing error so i need to pass the APIKEY,how can i pass ...