Top "Servicestack" questions

ServiceStack is Fast, Simple and Versatile message-based Web Services and MQ Framework for .NET and .NET Core

System.BadImageFormatException on running ServiceStack examples.

I am trying to run ServiceStack Examples projects. When I run the web client I am getting the following error: {…

sqlite badimageformatexception servicestack
Mono 3.0.0: Could not load file or assembly: System.Web.Extensions.dll, Version=4.0.0.0

I am hosting a ServiceStack web service in Apache with mod-mono, I have mono-3.0.0, and xsp-2.10.2. I hosted the hello …

apache mono servicestack mod-mono
ServiceStack - Is there a way to force all serialized Dates to use a specific DateTimeKind?

I have a POCO like this: public class BlogEntry { public string Title { get; set; } public DateTime Date { get; set; } } Most …

c# servicestack servicestack-text
Redis IOException: "Existing connection forcibly closed by remote host" using ServiceStack C# client

We have the following setup: Redis 2.6 on Ubuntu Linux 12.04LTE on a RackspaceCloud 8GB instance with the following settings: daemonize …

c# .net iis redis servicestack
ServiceStack.NET Windows Authentication (NTLM) in ASP.NET MVC

How to implement Windows Authentication in a ServiceStack project build on ASP.NET MVC4? I started with a global Request-Filter …

c# asp.net-mvc-4 servicestack windows-authentication
Servicestack - architecture & reusing POCOs for everything

I refer to ServiceStack documentation reg use of POCOs: Since it promotes clean, re-usable code, ServiceStack has always encouraged the …

architecture servicestack separation-of-concerns
Is this a valid usage of ServiceStack Redis?

I am new to Redis (using it at a hosted service) and want to use it as a demonstration / sandbox …

c# redis servicestack
With OrmLite, is there a way to automatically update table schema when my POCO is modified?

Can OrmLite recognize differences between my POCO and my schema and automatically add (or remove) columns as necessary to force …

servicestack ormlite-servicestack
How to register multiple IDbConnectionFactory instances using Funq in ServiceStack.net

How would you go about registering diferent IDbConnectionFactory instances in Funq and then access them directly within your services? Do …

c# servicestack inversion-of-control ioc-container funq
ServiceStack Routing does not work with querystring

I have a simple REST service built with ServiceStack. If I configure the routes like this: //register user-defined REST-ful urls …

routing servicestack