Tagged Questions
1
vote
2answers
26 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
53 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
2answers
117 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
89 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 ...
3
votes
1answer
121 views
Deserialize a type containing a Dictionary property using ServiceStack JsonSerializer
The code snippet below shows two ways I could achieve this. The first is using MsgPack and the second test is using ServiceStack's JSONSerializer. The second is more favourable because the ...
0
votes
2answers
160 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 ...
3
votes
1answer
321 views
ServiceStack Redis C# slow retrieving data
I'm using Redis Servicestack in C#. Currently, the way I'm storing data is the following:
var listTypedRedis = db.As<MyObject>();
foreach (var obj in myObjects)
{
...
0
votes
2answers
600 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 = ...
2
votes
1answer
146 views
using ServiceStack.Text: override the CreateInstance stuff?
I'm using ServiceStack.Text's JSON serialization stuff for one of my projects. However, when deserializing data I would like the ability to override the part that creates the instance of the object. I ...
2
votes
1answer
122 views
How can we access the data from ServiceStack's JSON Serializer when an error occurs?
How do we get more information about the JSON De-serialization exceptions when ServiceStack's JSON Serializer is configured to throw on exceptions with:
JsConfig.ThrowOnDeserializationError = true;
...
2
votes
1answer
408 views
ServiceStack Serializing lists in XML
I have a predefined xml sample which defines the requests and responses, the only part I can't get working with ServiceStack.Text.XmlSerializer is the following snippet, which is basically a list of ...
1
vote
2answers
211 views
Can I make ServiceStack Deserialize json value of 1 as true?
Can I make ServiceStack Deserialize json value of 1 as true?
Here's a unit test showing what I want to do.
Is this possible? if so how?
public class Foo
{
public bool isWorking { get; set; }
}
...
0
votes
1answer
508 views
ServiceStack.Text serialization exception (Incorrect number of arguments supplied for call to method 'Void set_Item(Int32, MyApp.MyClass)')
I am trying to deserialize an object that contains nested lists of classes with ServiceStack.Text.
The serialization went well, but when trying to deserialize, I get this error:
...