ServiceStack is a modern, code-first, DTO-driven, WCF replacement web services framework encouraging best-practices for creating DRY, high-perfomance, scalable REST web services
17
votes
0answers
243 views
How to force Monotouch AOT Compiler to see a nested generic method?
I've had to jump through hoops but I've almost managed to get ServiceStack working on iOS with Monotouch in my project. One runtime JIT exception is holding out...
System.ExecutionEngineException: ...
5
votes
0answers
159 views
Why isn't ServiceStack.Text being copied to Bin?
I have added ServiceStack.Redis via Nuget to an assembly that I have. That package has a dependency on ServiceStack.Common which has a dependency on ServiceStack.Text
this project is referenced from ...
4
votes
0answers
246 views
How to authenticate requests using ServiceStack, own user repository, and device ids?
I'm building a mobile app and a ServiceStack web service back-end. The Authentication stuff in ServiceStack looks great but easy to get lost in its flexibility - guidance much appreciated. I'll be ...
4
votes
0answers
243 views
HtmlHelper extension to wrap around content for ServiceStack Markdown Razor
Using ServiceStack Markdown Razor, how can I create an HtmlHelper extension method that works like:
In your views you can now do:
@{
using (Html.BeginLink())
{
@Html.Raw("Hello ...
4
votes
0answers
101 views
ServiceStack ICacheClient Increment not working
I have a problem with ServiceStack.CacheAccess.Memcached.MemcachedClientCache.
The Increment method does not work as expected.
For the test, I am using a regular console app and the ICacheClient ...
3
votes
0answers
47 views
How do I get the username in a self-hosted ServiceStack running on Windows
I'm building a Windows service and instead of exposing a WCF or .Net remoting interface, I'm giving ServiceStack a shot. (So far, I'm digging it!)
I need to get the Username of the user calling the ...
3
votes
0answers
39 views
Push notification with Compact Framework using ServiceStack
I want to implement push notifications to my client application working on windows mobile with compact framework 3.5.
For accessing remote data it uses servicestack/protobuf on the server (self hosted ...
3
votes
0answers
40 views
searching/reporting with servicestack
We currently have an aging client/server based application where all the clients connect directly to our transactional database (MS SQL Server)... 99% of our business logic is located in the stored ...
3
votes
0answers
69 views
OrmLite.Sqlite x86 / x64 and native library preloading
I want to target both x86 and x64 platform with a .Net 4 service and ServiceStack.OrmLite.Sqlite
I've read about native library preloading ...
3
votes
0answers
62 views
Should I inject ServiceStack's ICacheManager?
I'm looking to implement a caching tier in our application and accidentally came across ServiceStack's ICacheManager.
ICacheManager.Resolve looks as though it's exactly what I'm after (try and get, ...
3
votes
0answers
124 views
ServiceStack Request DTO with multiple parameters
I am am newbie so be kind.
I can call my Web Service which takes 3 parameters, however I only ever see the first parameter in the request
...
3
votes
0answers
113 views
Error writing headers when returning FileInfo HttpResult
I'm on Mono 3.x, on Mac OSX and I'm trying to return a static file with ServiceStack. The code is (and should be, according to other answers) very straightforward:
public class AirPlayService : ...
3
votes
0answers
55 views
Intermittent Validation Problems using ServiceSttack
I'm using ServiceStack to build an API and at the same time, I'm using the plugin that allows Razor views to return html to browsers.
I have validation set up and configured correctly. I know this ...
3
votes
0answers
109 views
ServiceStack Razor View wraps content with extra data
I'm using ServiceStack with the Razor plugin and returning response objects from my service methods. If the service uses a default view then the response is fine, but if I specify a View in the ...
3
votes
0answers
69 views
IOneWay SOAP Parameters and Void Return
I'm having a couple of issues with getting a correct WSDL generated for a ServiceStack SOAP+REST service.
The main issue is that when I use AddServiceReference the generated IOneWay is populated and ...