Problem : Given an app that needs to exchange info such as ConsumerKey/ConsumerSecret for oAuth from – server running “WebApi” […]
Tag: servicestack
ServiceStack Route design
Problem : Are these 3 routes the same? Which one is normally preferred? [Route(“/todo/{id}”, “DELETE”)] [Route(“/todo/delete”,”POST”)] [Route(“/todo/delete/{id}”,”GET”)] public class DeleteTodo […]
ServiceStack IReturn
Problem : I am looking at the new api that came out 2 weeks ago. It seems like ReqDTO : […]
ServiceStack.Net Redis: Storing Related Objects vs. Related Object Ids
Problem : My team has decided to work with Redis via the ServiceStack.net Redis Client as an underlying repository for […]
Getting ServiceStack to retain type information
Problem : I’m using ServiceStack to serialize and deserialize some objects to JSON. Consider this example: public class Container { […]
How do I secure my service using SSL for Services created using Service stack?
Problem : I would like to secure my REST service implemented over the Service Stack, by means of X509 certificates? […]
How to pipeline multiple read commands to Redis using ServiceStack
Problem : Using ServiceStack, is there a way to perform multiple read commands (in particular the ContainsKey command)? The objects […]
ServiceStack Validation Not Always Firing
Problem : So I was trying to build a End To End integration testing suite with RavenDB and ServiceStack but […]
Why ServiceStack.Text doesn’t default dates to iso8601?
Problem : If I use Newtonsoft.Json.NET it defaults to iso8601 (i.e.: 2011-06-02T09:34:29+02:00) for serializing/deserializing dates. Why ServiceStack.Text doesn’t default to […]
ServiceStack API and ASP MVC Authentication in two ways
Problem : I’m having trouble solving architecture of an ASP MVC application that servers html pages and web services through […]