Tagged Questions
2
votes
0answers
48 views
Cannot recreate JSON value from JSON in string format
I have the following object:
public class TestModel
{
public object TestValue { get; set; }
}
My database contains strings in JSON format e.g.
["test value"]
["one value",["another value|or ...
2
votes
1answer
94 views
AngularJS friendly return types of List and Dictionary with ServiceStack
AngularJS cannot bind to a value type model, as explained here:
https://github.com/angular/angular.js/issues/1267
Modifying an array within an object that's displayed in a ng-repeat
On the ...
1
vote
3answers
103 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.
...
1
vote
2answers
27 views
Dynamically switch applicable DataContract at runtime?
Can I turn data contract attributes off and on dynamically? Essentially, I'd like two data contracts, one between the 3rd party and my app, and one between my app and my client - without having to ...
1
vote
1answer
42 views
Using class and property names as output in JSON
I have this DTO:
public class Post
{
public int Id { get; set; }
public string Message { get; set; }
public DateTime CreatedDate { get; set; }
}
Then i have a route in servicestack that ...
1
vote
0answers
32 views
Quering deserialized json using jsonPath
Querying JSON with SelectToken
ServiceStack has some feature like that?
Edit
ServiceStack analysis from fastJSON's page:
ServiceStack Serializer
An amazingly fast JSON serializer from ...
1
vote
5answers
57 views
What kind of Json structure is this? 4-dimensional array?
{"filters":
[
[
"Color",
[
[
"Blue",
629,
"t12-15=blue"
],
[
"Green",
279,
"t12-15=green"
]
...
1
vote
0answers
39 views
Service Stack Json Response Contains Extra Characters
I'm converting a Web Api project to service stack and in json responses I'm getting an extra line of text before and after the json content. I'm using fiddler to capture the response.
Edited for ...
1
vote
1answer
56 views
ServiceStack.Text how to get subclass values to be serialized?
I have these two classes for example, PropertyEx is inheriting from PropertyDataEx
public class PropertyDataEx
{
public string Name { get; set; }
}
public class PropertyEx : ...
1
vote
0answers
46 views
Integrating Amazon SNS with ServiceStack
I'm developing a suite of ETL-style apps which will link cloud-based systems with on-premise systems using Amazon SNS and Amzazon SQS along with some restful services. SNS allows you to set-up an HTTP ...
1
vote
1answer
55 views
ServiceStack.Text and ISODate(“”)
Why ServiceStack.Text DeserializeFromString cant convert ISODate formats.
For example, i have json string like
{ "Count" : 4, "Type" : 1, "Date" : ISODate("2013-04-12T00:00:00Z") }
and class
...
1
vote
1answer
43 views
Costomising the serialisation/serialised JSON in service stack
I need to turn this beutifull default JSON from Service Stack :
{
"Status": "ok",
"LanguageArray": [{
"Id": 1,
"Name": "English"
}, {
"Id": 2,
"Name": ...
1
vote
1answer
89 views
Debug ServiceStack POST Request Deserialization
I have a use case where I am posting a complex object with an array member using jQuery. E.g.:
data: {
obj1: obj1,
arr1: [ ... ]
}
On the server I have implemented a ServiceStack service. The ...
1
vote
2answers
120 views
Why can't servicestack deserialize this JSON to C#?
I am trying to deserialize the following JSON representation to a strongly typed object. I am able to serialize it from c# -> json, but not vice versa.
C#
public class Package
{
public Guid ...
1
vote
3answers
90 views
Deserializing Json with numbered keys in ServiceStack
I have such Json:
{
data:{
"50":{"id":"50","name":"test", etc...},
"51":{"id":"51","name":"test", etc...},
"53":{"id":"53","name":"test", etc...},
...
}
}
What is the correct ...
2
votes
1answer
91 views
Expand dictionary to JSON fields
We have DTO class like this:
public class DTO
{
public int Number { get; set; }
public string Title { get; set; }
public Dictionary<string, string> CustomFields { ...
2
votes
3answers
128 views
How do I incrementally serialize and deserialize JSON with ServiceStack?
What I have is this:
string json = @"{'number': 3, 'object' : { 't' : 3, 'whatever' : 'hi', 'str': 'test'}";
How do I read the fields until I'm at 'object', then serialize the whole 'object' into a ...
3
votes
1answer
99 views
1
vote
1answer
108 views
JSON property with hyphen in it in ServiceStack
I have some JSON formed like this:
{
"snippet-format":"raw",
"total":1,"start":1,
"page-length":200, ...
}
I have a C# DTO with members called Total, Start etc. These are successfully ...
3
votes
4answers
122 views
Seeing the Http Response content in ServiceStack
I am using ServiceStack to create a C# client to a JSON RESTful service. I have this code that returns my DTO:
Search result = restClient.Get (search);
This works fine, but in order to effectively ...
1
vote
1answer
82 views
Unable to deserialize simple Json using ServiceStack serializer
For some reason, this code is not working.
What I missing here? It is a simple class, and the Json is really basic.
using System;
using ServiceStack.Text;
namespace Test
{
public class Boo
{
...
1
vote
2answers
113 views
What am I doing wrong with this Service Stack Web Service or jQuery call?
I was able to get Service Stack's Hello World example working, but now I'm trying to expand it a little to return a custom Site object. I made a simple test html file that uses jQuery to pull a ...
2
votes
1answer
136 views
SertiveStack.Text Deserialize json to object always converts to string and behaves strangely with quotes
What I'm trying to do:
I have json objects that have values which could be string, ints, doubles, or lists of any of these. I'm trying to deserialize these json strings into C# objects, but because ...
1
vote
1answer
78 views
ServiceStack Deserializing
I'm able to get ServiceStack to serialize my objects but deserializing is another story. I'm receiving this json:
{
"Return": {
"A":15,
"B":16,
"Result":240
},
...
1
vote
3answers
350 views
Do not serialize Entity Framework class references in JSON (ServiceStack.Text library)
As most of the people I've also ran into a problem of circular reference error when serializing (terrible) EF objects to JSON. Doing db.Detach(efObject) helps - but I still get garbage like ...
3
votes
1answer
137 views
Is there a way to ignore default values during serialization with ServiceStack json?
I am using Entity Framework as my orm. It has ComplexTypeAttribute (which is used to annotate POCO's). Properties that are complex types, are always instantiated(using default constructor), regardless ...
3
votes
1answer
379 views
How to omit Get only properties in servicestack json serializer?
I have an object which I am de-serializing usign ToJson<>() method from ServiceStack.text namespace.
My Question is how to omit all the "Get" only propeties while serialization? Is there any ...
2
votes
1answer
353 views
How to configure ServiceStack.Text JsonSerializer property names when deserializing
I'm trying to deserialize JSON data using the ServiceStack.Text library with non-C#-like property name conventions, specifically snake case like the following:
{
"first_name": "Foo",
...
9
votes
2answers
243 views
Serialize C# Enum Definition to Json
Given the following in C#:
[Flags]
public enum MyFlags {
None = 0,
First = 1 << 0,
Second = 1 << 1,
Third = 1 << 2,
Fourth = 1 << 3
}
Are there any existing ...
2
votes
1answer
50 views
Getting string values from JsonObject
Suppose I have these JSON strings:
string s1 = "{\"foo\":\"wh\"o\"a\"}";
string s2 = "{\"foo\":{\"bar\":123}}";
I want to get the value of foo in string format, so out of s1 I want to get ...
1
vote
1answer
135 views
reconstituting property of type object with Servicestack.Text
I'm using the Servicestack.Text package to serialize and deserialize objects to and from JSON. One of my objects has a property of type object (System.Object). It is one of three things: a long, a ...
1
vote
1answer
111 views
ServiceStack.Text json only serialize struct properties
Is it possible to make ServiceStack.Text sterilize public fields of a struct just like the .net JavaScriptSerializer does?
Currently if a struct does not define a filed as a property, i.e. property ...
2
votes
2answers
218 views
How to use a custom JSON Serializer in Servicestack?
I am wondering how you can use a custom JSON Serializer in ServiceStack. I am aware of the JsConfig.SerializeFn/DeSerializeFn but these seem to always 'JSON.stringify' the result of my custom ...
1
vote
1answer
208 views
Serializing polymorphic collections with ServiceStack.Text
We're in a process of switching from Json.NET to ServiceStack.Text and I came across an issue with serialization of polymorphic collections.
In JSON.NET I used to create a custom ...
1
vote
1answer
31 views
Recursive referencing the same class
In my case I stared to use ServiceStack...
I created a class
public class dtoClass
{
public string aText { get; set; }
public DbGeography dbGeo { get; set; }
public dtoClass d { get; ...
0
votes
2answers
161 views
File deserialization with ServiceStack's TypeSerializer
I use ServiceStack.Text as JSON library in my C# project and I'm trying to deserialize a string from file using it's TypeSerializer.DeserializeFromString.
I have the following code:
async public ...
1
vote
2answers
440 views
ServiceStack.Text does not serialize my object as expected
I'm trying to compare performance results of serialization / deserialization using Newtonsoft.Json and ServiceStack.Text libraries. I have a large class which is named Application and I'm using an ...
4
votes
2answers
1k views
User authentication when consuming a REST webservice with ServiceStack
The ServiceStack docs are full of examples on how to use server side implementation of authentication of a user. But how does one set the user credentials on the client side?
I use ServiceStack to ...
3
votes
1answer
233 views
Serialize list of interface types with ServiceStack.Text
I'm looking at ways to introduce something other than BinaryFormatter serialization into my app to eventually work with Redis. ServiceStack JSON is what I would like to use, but can it do what I need ...
3
votes
2answers
266 views
Does ServiceStack.Text offer pretty-printing of JSON?
TL;DR: Is there a built-in way in ServiceStack.Text to produce pretty-printed JSON?
I am using ServiceStack.Text for doing JSON serialization. It works really good so far, but the created JSON (using ...
2
votes
4answers
414 views
How to read json file and serialize it in custom class?
I have following JSON saved in menu.json file:
{
"menu": {
"menuitems": [
{
"label": "Account",
...
1
vote
2answers
207 views
How to Deserialize data from file to Custom Class with ServiceStack.Text JsonSerializer?
I have student class with following structure:
public class Student
{
public int StudentId {get;set;}
public string StudentName {get;set;}
public string[] Courses ...
1
vote
1answer
105 views
What should I be aware of when migrating from Json.NET to ServiceStack.Text
I have an existing REST API with many consumers, that primarily talk JSON. It is built with Json.NET, but we want to migrate to use ServiceStack.Text for serialization. This question is about the ...
3
votes
1answer
1k views
ServiceStack.Text.JsonObject.Parse vs. NewtonSoft.Json.Linq.JObject.Parse for nested tree of 'dynamic' instances?
I'd like to try ServiceStack's json parsing, but I've already figured out how to do something I need via Newtonsoft. Can this same thing by done via ServiceStack?
I've tried with the commented out ...
2
votes
2answers
424 views
Issue parsing JSON with ServiceStack.Text
I'm using ServiceStack.Text to parse WorldWeatherOnline's Marine Api.
When Deserialising the JSON the library parses the JSON incorrectly as you can see in the second column of the image below
...
0
votes
0answers
282 views
Cannot convert model type… to ServiceStack.Text.JsonObject
I'm using ServiceStack.Text to parse WorldWeatherOnline's Marine Api on Monotouch.
This is the error "Cannot implicitly convert type DiveConditions.Model.Weather' toServiceStack.Text.JsonObject'"
...
2
votes
1answer
100 views
ServiceStack deserialization failing on jQuery request but not C# client
My frontend implementer is running into a strange issue with a rather complex nested DTO.
Here is the json that he is passing through a jquery ajax call
{"Id":"507e7e5aa6305825c012c606","Name":"test ...
3
votes
2answers
415 views
ServiceStack JsonServiceClient, force traffic on the wire for localhost?
This ServiceStack client code works:
var client = new JsonServiceClient("http://localhost:32949/test");
var request = new MyRequest { ClassificationId = new ClassificationId (21300) };
var response = ...
1
vote
1answer
467 views
Can ServiceStack.Text deserialize JSON to a custom generic type?
Example is the following, where T is some DTO that I expect to get 1...n back matching the resultCount. This loaded up fine using Jayrock JsonConvert, however is just returning a new JsonResult to me ...
0
votes
2answers
601 views
ServiceStack.Text.JsonSerializer.DeserializeFromString<T>() fails to deserialize if string contains \n's
Trying: T obj = JsonSerializer.DeserializeFromString(jsonData);
on a string that has several \n's throughout it. JayRock's library successfully deserializes this like: T obj = ...





