The datacontractjsonserialize tag has no wiki summary.
0
votes
0answers
16 views
JSON Serialize Date Time Format
I have encountered issues with DateTime using DataContractJsonSerializer from CODE PROJECT. The serializer returns date like 1319266795390+0800, and the code project provided a regex pattern (string p ...
0
votes
0answers
15 views
DataContractJsonSerializer.writeObject 500 error
Here is my code
DataContractJsonSerializer jsonSerializer = new DataContractJsonSerializer(typeof(T));
jsonSerializer.WriteObject(HttpContext.Current.Response.OutputStream, data);
My data ...
0
votes
0answers
46 views
How to send JSON in C# with DataContractJsonSerializer without charset?
I use DataContractJsonSerializer and StringContent to send JSON to a web service:
DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(Employee));
MemoryStream ms = new ...
0
votes
1answer
35 views
How to create nested JSON objects and arrays with DataContractJsonSerializer?
I want to create JSON with nested arrays and objects like this:
{"orderId": "AF34235",
"recipients": [{"name": "Jane Doe", "address": "123 Main"},
{"name": "Bob Doe", "address": ...
0
votes
0answers
116 views
DataContractJsonSerializer 'Newtonsoft.Json.Linq.JToken' is a recursive collection - NO WCF
I have a .net mvc4 application that uses the json media type formatter for rest/webapi requests as the UI is a SPA application. I successfully deserialize our data class from the json using the ...
0
votes
1answer
83 views
error deserializing the object of type … End element '…' from namespace '' expected. Found element 'item' from namespace ''
When I deserialize my jsonstring ,I am getting error message
There was an error deserializing the object of type RecordInfo. End element 'Warning' from namespace '' expected. Found element 'item' ...
0
votes
1answer
79 views
DataContractJsonSerializer to deserialise Json
I am trying to deserialize a Json String. My Deserialization works up to OrderData.
When I deserialize OrderData is always null and SourceData also not showing up. It's not throwing any error either. ...
0
votes
1answer
216 views
Partial deserialization of JSON object by using DataContractJsonSerializer in C#
As a response from a Bitbucket REST API I'm getting the following JSON object (simplified version):
{
"repositories": [
{
"scm": "hg",
"has_wiki": false, ...
3
votes
1answer
97 views
JSON decimal to double
Is there a way to set that JSON would decode variables to double instead of decimal?
example:
[DataContract]
class ReturnData
{
[DataMember]
public object[] array { get; set; }
}
public ...
0
votes
0answers
53 views
JsonConvert.DeserializeObject and ādā wrapper in WCF Live vs Local
Hi I'm getting a really strange error.
We have a wcf service running locally serializing to json
On live it looks like this
...
0
votes
0answers
174 views
How do I efficiently deserialize a JSON object with nested objects using a stream reader in C#?
I would like to efficiently deserialize JSON object which contains a nested array of JSON objects.
For example, a JSON directory listing could contain a root JSON file system object with a recursive ...
0
votes
1answer
250 views
Deserialize json with array of different types using DataContractJsonSerializer
Is there a way to deserialize such json
{
"photos": [
19,
{
"pid": 288777129,
"aid": -6
},
{
"pid": 286441792,
"aid": -6
},
{
"pid": 114893258,
...
0
votes
1answer
402 views
DataContractJsonSerializer to skip nodes with null values
I am using DataContractJsonSerializer to serialize my custom object to JSON. But i want to skip the data members whose values are null. If DataMember is null that node should not come in JSON string.
...
1
vote
1answer
396 views
Deserializing JSON using System.Runtime.Serialization.Json
I'm having issues with deserializing some json with C#.
Suppose this is a snippet of the json I'm being sent (repeated many times, but nothing else other than id/name):
[
{
"id":0,
...
1
vote
2answers
234 views
JSON string and DatacontractJsonDeserializer
I am trying to parse a Json String that is returned let is say from a service. For simplicity it will be like:
Dim jsonstring = _
<s>
{"menu": {
"id": "file",
"value": "File",
"popup": {
...
0
votes
2answers
164 views
How to parse json to enum from different sources
I'm getting data in json format from different sources and I'm trying to map them to objects implementing the same interface.
The json variable looks something like this from feed 1:
{"identifier": ...
0
votes
0answers
71 views
Use DataContractJsonSerializer to serialize class into separate json objects
I'm using DataContractJsonSerializer to serialize some of the properties of my class into a json object. Is it possible to have a property on this class which must be serialized but as a separate json ...
-2
votes
1answer
376 views
Serialize an object with DataContractJsonSerializer
I have a class which contains some items. I want to serialize an instance of this class to json using the DataContractJsonSerializer :
[DataContract]
public class Policy
{
private string ...
0
votes
1answer
1k views
Serialize an object using DataContractJsonSerializer
I have created a generic extension method to serialize JSON using the DataContractJsonSerializer.
looks like this:
public static string ToJSON<T>(this T obj) where T : class
{
...
0
votes
1answer
160 views
Custom C# Class Name from JSON
I have some JSON that nicely deserializes (with DataContractJsonSerializer) to:
class Datum { /* properties */ }
Is there a decoration (in WinRT) to trick the Serializer?
Something like this:
...
0
votes
1answer
411 views
Exposing WCF class reference method client side
I have a WCF Service. I add reference of a DLL in the WCF service.Now ddl has a class, i'm able to get access of the class at WCF client side by using the serviceknowntypeattribute but not the ...
1
vote
2answers
85 views
Detecting the difference between null property and ommitted property in JSON
I have a RESTful webservice which receives JSON and it deserialises it into a c# class using the DataContractJsonSerializer, though this can be changed.
Its purpose is to update fields on a resource
...
2
votes
2answers
1k views
deserialize json to object c# on windows phone
I'm trying to deserialize json data services recieved from a web server into an object. So far i have just set up a httpwebrequest which gets json fromatted data from the server.
public void ...
2
votes
2answers
269 views
prevent a propery from being serialized using a datacontractjsonserializer C#
I am using the .net datacontractjsonserializer to serialize my list of objects to a JSON string, but there are certain public properties that I don't want to serialize, how to prevent the ...
1
vote
2answers
637 views
Windows Phone, How to deserialize json which has nested Array
I am now doing a windows phone project, and need to request to a web service for some json data.
if the json structure is like
[Dictionary1,
Dictionary2,
Dictionary3
]
then, ...
0
votes
1answer
377 views
Json deserialization of anonymous array
I would like to deserialize the following json using DataContractJsonSerializer:
"coordinates": [
[
18.008966033966707,
...
0
votes
1answer
399 views
Is C# DataContracts expressive enough to describe GeoJSON correctly?
So I've been trying to map GeoJSON to C# DataContracts so that we're able to easily support returning GeoJSON in our WCF/REST-apis. The more i work with DataContracts and serialization the more i get ...
4
votes
3answers
3k views
DataContractJsonSerializer - Deserializing DateTime within List<object>
I'm having trouble using the System.Runtime.Serialization.Json.DataContractJsonSerializer class to deserialize DateTime instances contained within a List<object>. I cannot seem to get DateTime ...
3
votes
2answers
1k views
parse an array as a Json string using DataContractJsonSerializer WP7
How can I parse the elements of an array in a Json string using DataContractJsonSerializer?
The syntax is:
{
"array":[
{
"elementsProperies":"SomeLiteral"
}
]
}
3
votes
3answers
2k views
Parsing JSON key value pairs in C#
With reference to Parse JSON in C#
I am trying to parse the following JSON feed in C# and I have a problem with accessing the data in "rates". I have tried to deserialize this into a List> or ...
2
votes
2answers
453 views
How to serialize class that derives from class decorated with DataContract(IsReference=true)?
I have class A that derives from System.Data.Objects.DataClasses.EntityObject.
When I try to serialize using
var a = new A();
DataContractJsonSerializer serializer = new ...
0
votes
1answer
317 views
Silverlight 4 DataContractJsonSerializer, private fields of a derived class
I use DataContractJsonSerializer to deserialize json data in Silverlight 4.
Json data key names do not match my class property names; so I guess I have to use
DataMemberAttribute. So I did the ...
1
vote
1answer
726 views
Deserializing JSON object with unknown fields
The question is similar to Deserializing JSON with unknown fields but I would like to use the built in DataContractJsonSerializer instead.
So I have JSON data like that:
{
"known1": "foo",
"known2": ...
2
votes
1answer
3k views
JSON sample to [DataContract]
Is there any tool allowing to generate DataContract entity definitions based on a JSON sample? I'm really missing the old good WSDL metadata with code generation facilities.
2
votes
1answer
614 views
Safest place for the XmlSerializer to save temp files
It's come to my attention that the XmlSerializer needs to use disk space to do its bidding. If there is no writeable %temp% folder, then it fails with an error as follows:
Source : System.Xml ...
8
votes
2answers
839 views
Serialize Dictionary<TKey, TValue> to JSON with DataContractJsonSerializer
I have an object tree that I'm serializing to JSON with DataContractJsonSerializer. Dictionary<TKey, TValue> gets serialized but I don't like the markup - the items are not rendered like this:
...
2
votes
2answers
248 views
Windows Phone - Background Task - Broken at DataContractJsonSerializer.WriteObject
I am using Background Task in Windows Phone Mango. I need to send data to server using JSON format. But when DataContractJsonSerializer.WriteObject function is executed, nothing happens thereafter.
...
3
votes
1answer
258 views
Deserializing JSON in ASP.NET C#
I have the following JSON:
{
"recipe": {
"rating": 19.1623,
"source_name": "Allrecipes",
"thumb": "http://img.punchfork.net/8f7e340c11de66216b5627966e355438_250x250.jpg",
...
0
votes
1answer
772 views
How to deserialize JSON returned by WCF Data Service (OData)
An external OData Service returns the following during a POST operation (for a service operation):
{
"d" : {
"__metadata": {
"uri": "http://dd-1620/ServiceData.svc/Customers('1001')", "type": ...
3
votes
2answers
1k views
How can I serialize anonymous type using DataContractJsonSerializer
Using the code below, how can I use the DataContractJsonSerializer to convert the resultant list to JSON?
ETA: I have seen several extension methods to generically JSON-ize objects, but I'm not sure ...
2
votes
1answer
434 views
How do I format a DateTime structure so that it matches the format used by DataContractJsonSerializer?
When I serialize the current time as a DateTime using the DataContractJsonSerializer I get the following 1307654074638-0500.
I'd like to generate my own JSON that could be deserialized by the ...
0
votes
1answer
178 views
Silverlight json won't serialize
I have been trying to serialize some json data in Silverlight. I am using the following code
System.Runtime.Serialization.Json.DataContractJsonSerializer serializer = new ...
1
vote
1answer
654 views
DataContractJsonSerializer and maxItemsInObjectGraph
How can I set the maxItemsInObjectGraph for the DataContractJsonSerializer?
I get an error saying "Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change ...
2
votes
1answer
876 views
.NET DataContractJsonSerializer, Nested collections throwing me for a loop
I'm working on a class to get the Latitude and Longitude of an address by 3 different providers (just for comparison sake).
Note, this might look like a lot to look at, but some info is just there ...
5
votes
1answer
2k views
DataContractJsonSerializer DateTime implicit timezone conversion
I have a date time in the database and I retrieve it from the database using Entity Framework, I then pass out the data via JSON API through the DataContractJsonSerializer.
The time in the date time ...
2
votes
1answer
826 views
DataContractJsonSerializer: Serializing a class with an interface property
I am trying to serialize a Class like this:
[DataContract]
public class GenericFlow
{
[DataMember]
public ISource Source { get; set; }
[DataMember]
public IList<IFilter> ...
2
votes
1answer
482 views
Constructors Not Called On Deserialization
Various places I've been reading have pointed out that on deserialization, the .NET Framework makes a call to FormatterServices.GetUninitializedObject, in which constructors are not called and field ...
0
votes
1answer
1k views
How do DataContracts work? - Deserialize Json
I grabbed an example off of this SO question, and built my own custom Google Maps object used for deserializing the json object.
Now the code works like a champ, but I just need an explanation on ...
1
vote
2answers
5k views
System.Runtime.Serialization.Json.DataContractJsonSerializer.WriteObject ignores NonSerialized attribute while serializing
If i try to serialize an object of the following ClassToSerialize class with System.Runtime.Serialization.Json.DataContractJsonSerializer
[DataContract,Serializable]
public class ClassToSerialize
{
...
0
votes
1answer
439 views
Deserializing JSON 2 Dimension array of values
I've got a 2 dimensional of values in JSON format:
[[57, 2], [57, 2], [58, 2], [55, 2], [60, 2], [54, 1], [59, 11]]
Each of the pairs actually contains a pair of unrelated readings, and there is one ...