Tagged Questions
The jsonserializer tag has no wiki summary.
9
votes
2answers
758 views
Best way to serialize/unserialize objects in javascript?
I have many js objects in my application, something like:
function Person(age) {
this.age = age;
this.isOld = function (){
return this.age > 60 ? true : false;
}
}
// before ...
6
votes
4answers
764 views
Deserializing JSON array into strongly type .NEt object
I am using Newtonsoft's JSON Parser via Hammock.
When I can call the 3rd party api and get back a single class worth of data everything deserialises fine using this code
TheUser me = ...
4
votes
2answers
399 views
Is there any way to JSON.NET-serialize a subclass of List<T> that also has extra properties?
Ok, we're using Newtonsoft's JSON.NET product, which I really love. However, I have a simple class structure for hierarchical locations that look roughly like this...
public class Location
{
...
3
votes
2answers
3k views
Cannot find DataContractJsonSerializer from an Asp.Net Mvc application
I can't get access to the DataContractJsonSerializer method from System.Runtime.Serialization.Json
If I do:
using System.Runtime.Serialization.Json;
I get an error...
How can I access this in my ...
2
votes
4answers
373 views
Can I tell the WCF WebAPI serializer to ignore nested class objects?
I am using WCF WebAPI to write REST services using WCF.
I am returning my POCO classes as json/xml objects from my service.
Most of my POCO classes contain ICollections as they are part of EF4.1 Code ...
2
votes
4answers
1k views
Ruby objects and JSON serialization (without Rails)
I'm trying to understand the JSON serialization landscape in Ruby. I'm new to Ruby.
Is there any good JSON serialization options if you are not working with Rails?
That seems to be where this answer ...
2
votes
1answer
236 views
JSON Serialization of a Django inherited model
I have the following Django models
class ConfigurationItem(models.Model):
path = models.CharField('Path', max_length=1024)
name = models.CharField('Name', max_length=1024, blank=True)
...
2
votes
2answers
434 views
Coercing Json Serializer into producing a particular datetime format (yyyy-mm-ddThh:mm:ss.msmsmsZ)
MyClass theSession = new MyClass()
{
accountId = 12345,
timeStamp = DateTime.Now,
userType = "theUserType"
...
2
votes
2answers
465 views
Rename field in JsonSerializer
I have a class library that I need to output via a JsonResult in the ASP.NET MVC framework. (JsonResult uses the JsonSerializer to produce its output.)
I discovered through reading the documentation ...
1
vote
0answers
28 views
jquery IE9 checkbox form serialize returns “on”
In FF this works fine:
<div id="conditionAssociationList" class="clearfix">
<input id="a0_1681" type="checkbox" name="cb" value="1681">
<label for="a0_1681" ...
1
vote
0answers
97 views
How to exclude null-value fields when using Flexjson?
I am serializing a class like this into JSON using Flexjson:
public class Item {
private Long id;
private String name;
private String description;
...
// Getters and setters
...
1
vote
4answers
547 views
Cannot find JavaScriptSerializer in .Net 4.0
I cannot seem to find the JavaScriptSerializer object nor the the System.Web.Script.Serialization namespace within Visual Studio 2010. I need to serialize something to JSON what am I supposed to use?
...
1
vote
1answer
85 views
additional attributes in both JSON and XML
I am currently trying to incorporate attributes in the API of my Rails app. The use case is simple. I have a User model:
class User < ActiveRecord::Base
attr_accessible :email
end
I have ...
1
vote
2answers
253 views
Grails - grails.converters.JSON - removing the class name
Is there a way to remove the class field in a JSON converter?
Example:
import testproject.*
import grails.converters.*
emp = new Employee()
emp.lastName = "Bar"
emp as JSON
as a string ...
1
vote
3answers
206 views
reverse serialize() -jquery
I sent my data (json) for an ajax request with this code;
var formdata = $("#customForm").serialize();
type: "post",
dataType: "json",
data: formdata,
In the ...
1
vote
1answer
298 views
How to invoke another serializer from a custom Gson JsonSerializer?
I have my custom class User:
class User {
public String name;
public int id;
public Address address;
public Timestamp created;
}
I'm now creating a custom JsonSerializer for ...
1
vote
1answer
103 views
Sequel JsonSerializer conflicts with aliasing
In a Sinatra web application I am trying to get data from DB and convert them into object that is acceptable for UI (and finally to JSON). But there is some difference in names of attributes needed ...
1
vote
1answer
214 views
What JSON serializer for .NET will insert items into a list rather than replacing the list?
Ok, so I have this basic class setup...
public class Location
{
public string Name{ get; set; }
private LocationList _LocationList = new LocationList();
public LocationList Locations{ ...
1
vote
1answer
206 views
Serialized data in my sql field as text
I have orders details as serialized in the TEXT Type of mysql field. Recently one of customer add a big order which a TEXT type field was unable to process. So Now I want to change the TEXT to ...
1
vote
2answers
159 views
Unable to set jsonSerialization in Azure
The app I'm trying to put in Azure was built in ASP.NET 3.5, and I converted it to 4.0 when moving it to the cloud. Everything works great, until I try to add this block to my web.config:
...
1
vote
2answers
2k views
JavaScriptSerializer().Serialize(Entity Framework object)
May be, it is not so problematic for you. but i'm trying first time with json serialization. and also read other articles in stackowerflow.
I have created Entity Framework data model.
then by method ...
1
vote
1answer
632 views
How can I deserialize elementary types from json in ASP.NET(System.Runtime.Serialization.Json)
HI!
I have a little problem.
When I'm using DataContractJsonSerializer with complex types(own types) it works fine. But I have to deserialize TimeStamp or DateTime from string. So I cant mark this ...
0
votes
1answer
73 views
Django is throwing a “[123L, 123L] is not JSON serializable”
in my code i have:
json.dumps({'foo': {'bar': [123L, 123L]}})
the long ints are primary keys. this line for some reason generates the error:
"[123L, 123L] is not JSON serializable"
When i try to ...
0
votes
0answers
24 views
How to define known types for pagemethod parameter
Is there any way to specify known types while calling pagemethod?
Below is the small example I'm try to play with
class Person {
public string Name {get;set;}
}
class Employee : Person
{
public ...
0
votes
0answers
87 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
4answers
39 views
How to deserialize a JSON string in .NET, when you don't have a type for it
Check this URL:
http://api.stackoverflow.com/1.1/users/811785/questions?sort=votes
It's a URL from StackOveflow's API. The returned JSON is really complex, and I'd like to convert it into an object, ...
0
votes
1answer
78 views
Json.NET Serializing my object gives me the wrong output
I'm having a bit of a problem with serializing my .NET objects into JSON using JSON.NET. The output I want to be serialized will have to look like this:
{"members":[
{"member":
{
...
0
votes
0answers
302 views
Nullable Integer and JSON Serializer Question
I have a class like
public class MyClass {
public int? ID {
get;
set;
}
public string Name {
get;
set;
}
}
And in my MVC action method I have codes:
...
0
votes
1answer
223 views
maxJsonLength when consuming WCF service using Jquery
I am working on Google Map Marker V3.User can add Map Marker and additional info and this information is stored in sql Sever database. when the map page is loaded first time I retrieved all the ...
0
votes
0answers
77 views
How do I conditionally include or exclude a property from JSON.NET's serializer based on List.Count?
I know how to exclude parameters based on default values and such via the [DefaultValue(foo)] attribute on the respective property, but for a collection type, I want to exclude the output if there are ...
0
votes
1answer
116 views
NHibernate.IFutureValue<> when serialized includes .Value
I'm building an ASP.NET (2.0, no, I can't change it) site with NHibernate, and have a custom JSON converter so I can not-serialize properties I want hidden from the client. This lets me just return ...
0
votes
1answer
124 views
JQuery serialize function with an empty input field that has a title attribute
I have the following form input field:
<input type="text" value="" title="Enter item description" name="description">
When I call JQuery's serialize function on the containing form, it gives ...
0
votes
1answer
233 views
Json Deep serialize
In a case where Person is a POJO having a List of "hobbies".
Just trying to understand this statement to implement a deep serialize mechanism:
new JSONSerializer().include("hobbies").serialize( ...
0
votes
2answers
279 views
escaping string for json result in asp.net server side operation
I have a server side operation manually generating some json response. Within the json is a property that contains a string value.
What is the easiest way to escape the string value contained within ...
0
votes
1answer
784 views
How to convert an HTML table to JSON and use the JSON with JSON.NET?
I'm asking this question because I think it's one that we run into from time to time. I needed to take an HTML table that had been manipulated client side and send the resulting table data to the ...
0
votes
3answers
426 views
UpdatePanel seems to struggle with huge data as AsynPostBack. jSonSerializer maxLength doesn't help
I have a ASP.NET 3.5 App and trying to update a Update Panel which has a nested custom control. In that custom control is a ComponentArt Gird, which gets filled by almost 13MB of Data (Yes, I could ...