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

learn more… | top users | synonyms

134
votes
1answer
19k views

ServiceStack vs ASP.Net Web API

I am wanting to write a new REST style API and have looked at ServiceStack and quite like it. However, I have seen that Microsoft has released the ASP.Net Web API project as part of the new MVC 4 ...
27
votes
4answers
2k views

What's the current best solution for generating HTML from ASP.NET Razor templates within a Console Application?

I want to do this: string template = "Hello @Model.Name! Welcome to Razor!"; string result = Razor.Parse(template, new { Name = "World" }); And it appears that http://razorengine.codeplex.com is ...
23
votes
1answer
2k views

Are these the main differences between RestSharp and ServiceStack's Client Code?

I have been unable to make a definitive choice and was hoping that somebody (or a combination of a couple of people) could point out the differences between using RestSharp versus ServiceStack's ...
20
votes
1answer
6k views

How do you implement authentication in servicestack.net

I'm investigating servicestack.net - but it's examples and articles don't seem to cover authentication - is this something handled by servicestack.net - and if so how? In particular I'm interested in ...
19
votes
3answers
1k views

ServiceStack: RESTful Resource Versioning

I've taken a read to the Advantages of message based web services article and am wondering if there is there a recommended style/practice to versioning Restful resources in ServiceStack? The ...
18
votes
2answers
420 views

How to use Servicestack Authentication with Active Directory/Windows Authentication?

I am creating a secure (SSL) public service where the users credentials reside in Active Directory. I want to leverage ServiceStack's Authentication and have read over the wiki article. I already have ...
17
votes
2answers
5k views

What is the best way to run ServiceStack on Linux / Mono?

Listed on the ServiceStack website it shows that ServiceStack can run on Mono with either: XSP mod_mono FastCgi Console What are these different configurations and which is preferred for Web ...
17
votes
2answers
831 views

Websharper - should I invest time and bind myself to it or use C#/plain F# for Web development + new TypeScript for JS [closed]

Probably this question is not very constructive for gurus as most of you are, but I have spent a lot of time recently trying to decide on what technology to focus next for several years ahead. This is ...
17
votes
3answers
2k views

Disabling ASP.NET HttpHandler response caching

Background I'm in the midst of comparing the performance of NancyFx and ServiceStack.NET running under IIS 7 (testing on a Windows 7 host). Both are insanely fast - testing locally each framework ...
16
votes
2answers
4k views

Recommended ServiceStack API Structure

I'm trying work out the best way to structure our API; we have Reviews which we've setup in a standard REST structure (list one, list all, create, update etc). Where it doesn't quite fit the examples ...
16
votes
1answer
4k views

Is it possible to serve HTML pages with ServiceStack?

I'm evaluating ServiceStack for use in a Windows Service to host REST services. So far, it's excellent and way outperforms WCF. Not to mention its much easier to use. The Windows Services mentioned ...
15
votes
2answers
5k views

servicestack REST API and CORS

Anyone know if the servicestack framework can be used to create CORS REST services? I've been banging my haed against the WCF REST stuff for days now - utterly useless. Thanks
14
votes
1answer
3k views

OData with ServiceStack?

I just saw ServiceStack and I consider building a service with it. Is it possible to serve OData feeds with service stack, so I'd be able to expose IQueryable and query it from the client?
14
votes
2answers
3k views

How to: Merge multiple assemblies into one

I consuming my servicestack using EXE project (startup task for azure application) in that i have copied following servicestack's dll & some Azure's dlls in to EXE project. When i build this ...
14
votes
1answer
3k views

Should ServiceStack be the service layer in an MVC application or should it call the service layer?

I'm creating an MVC website and also intend to create a web API for use both within the website and potentially by third parties. From the MVC controllers I'll be calling into a service layer which ...
14
votes
1answer
406 views

ServiceStack Validation Not Always Firing

So I was trying to build a End To End integration testing suite with RavenDB and ServiceStack but I ran into a really weird issue where the validation doesn't run on some requests. This is really ...
13
votes
3answers
1k views

When to use Requirejs and when to use bundled javascript?

This may be a dumb question for web guys. But I am little confuse over this. Now, I have a application where I am using couple of java script files to do perform different task. Now, I am using java ...
12
votes
1answer
3k views

ServiceStack.Net Redis: Storing Related Objects vs. Related Object Ids

My team has decided to work with Redis via the ServiceStack.net Redis Client as an underlying repository for a new high-volume website we're working on. I'm not really sure where to look for ...
12
votes
2answers
1k views

Service Stack on MVC4

I am just trying to get Service Stack running under a mvc4 project. Does the ServiceStack.Host.Mvc nuget package work with mvc 4.0 ? I installed it and added the ...
11
votes
1answer
2k views

In what order are the ServiceStack examples supposed to be grokked?

Just out of curiosity I like to know the preferred ordering, based on technical level and new api of the examples. For the most part, all the base infrastructure concerns all smell the same i.e. ...
11
votes
2answers
571 views

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 added in the AppHost: private void ConfigureAuth(Funq.Container ...
10
votes
2answers
2k views

How can I use a standard ASP.NET session object within ServiceStack service implementation

I'm just getting started with ServiceStack and, as a test case, I am looking to rework an existing service which is built using standard ASP.Net handlers. I've managed to get it all working as I want ...
10
votes
1answer
3k views

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 Routes .Add<Contact>("/Contacts") ...
9
votes
2answers
891 views

ServiceStack Request DTO design

I am a .Net developer used to develop web application on Microsoft Technologies. I am trying to educate myself to understand REST approach for web services. So far i am loving the ServiceStack ...
9
votes
2answers
244 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 ...
9
votes
0answers
209 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: ...
9
votes
1answer
766 views

use SignalR inside Service Stack REST API service

Is it possible to use SignalR inside of a service stack project? We currently are using service stack for our REST web API. We have been pleased overall with its architecture, flexibility, etc. Now we ...
8
votes
2answers
3k views

ServiceStack new service side by side ASP.NET MVC website

In the examples for ServiceStack I don't see a single application that is ASP.NET MVC website first and then made ServiceStack service second. Let's take a very simple ASP.NET MVC web application ...
8
votes
2answers
1k views

ServiceStack default format

I would like to set ServiceStack's default format to JSON, as opposed to the HTML formatted response it normally returns when a service is accessed from a browser. I know this can be specified on ...
8
votes
2answers
3k views

Does ServiceStack support binary responses?

Is there any mechanism in ServiceStack services to return streaming/large binary data? WCF's MTOM support is awkward but effective in returning large amounts of data without text conversion overhead. ...
8
votes
3answers
668 views

ServiceStack IReturn

I am looking at the new api that came out 2 weeks ago. It seems like ReqDTO : IReturn<List<ResDTO>> { //... } The "IReturn" bit seems to be optional? The DTOs in RazorRockstars demo ...
8
votes
1answer
353 views

How to get ServiceStack to format Guids with dashes when using JSON?

Using ServiceStack to return a simple User object from a Post. The user object is pretty simple: public class User { public Guid Id { get; set; } public string Username { get; set; } } ...
8
votes
1answer
952 views

How can I implement ServiceStack.net rest call over HTTPS?

I would like to authenticate users of my servicestack.net rest services using basic auth over HTTPS. Can anyone explain how the https portion of this would work or point me in the right direction? ...
8
votes
2answers
2k views

How to use ServiceStack authentication correctly in ASP.Net MVC controller

I'm having problem with getting ServiceStack [Authentication] attribute to work in ASP.Net MVC4 controller, pages / action methods with the attribute keep redirecting Users to the login page even ...
8
votes
1answer
139 views

Custom response DTO in ServiceStack FluentValidation

I am evaluating FluentValidation in ServiceStack for handling automatic validation of request DTOs: Plugins.Add(new ValidationFeature()); container.RegisterValidators(typeof(MyValidator).Assembly); ...
7
votes
1answer
1k views

Service Stack/MVC: “AppHostBase.Instance has already been set” error - but can't understand why/how to prevent

I'm trying to implement ServiceStack into my MVC3 project, and am following the tutorial at: http://www.servicestack.net/ServiceStack.Hello/ My Global.asax.cs now looks like: public class ...
7
votes
1answer
948 views

ServiceStack razor default page

Say I have 2 pages /NotADefault.cshtml /Views/Default.cshtml Question 1. Now I run it, page A always gets called implicitly as start-up default page no matter what I name it. Page B will only be ...
7
votes
1answer
954 views

Override field name deserialization in ServiceStack

I'm using ServiceStack to deserialize some HTML form values but can't figure out how to override the value that each field should be read from. For example, the form posts a value to first_name but ...
7
votes
2answers
2k views

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 named instances somehow come into play here? Is this the ...
7
votes
1answer
3k views

ServiceStack: how to deal with errors?

I'm using ServiceStack with great results so far, except that dealing with errors is seemingly tricky. If something goes wrong during serialization of a message (because I forgot to add a default ...
7
votes
3answers
1k views

ServiceStack NHibernate Session per request

I am starting to build an app, and I'm planning to use ServiceStack. Just want to know what are the best practices/good approaches for handling NHibernate ISession or, other "per request" context ...
7
votes
2answers
217 views

How to use ServiceStack Funq in my own projects

At work we're doing several new web services projects in ServiceStack and taking advantage of Funq in some of them. I'm currently working on a separate project that will consume said web services and ...
7
votes
2answers
720 views

Unable to deserialize array

Data sent from client will not get deserialized. Client: $.ajax({ type: 'POST', dataType: "json", url: 'savecommentsservice', data: { "Pid": 0, "Comments": [{ "User": "bbbbbb", ...
7
votes
1answer
42 views

Exception Handler For ServiceClientBase

I want to handle all WebServiceException's thrown by my service client. Is there a good way to do this right now? For example I'm passing a single ServiceClientBase around a windows forms app. I'm ...
6
votes
3answers
236 views

What is the syntax to assign multiple enum values to a property in F#?

I am writing a ServiceStack webservice in F# and need to limit some of the features (removing SOAP support for instance). In C# I am using the pipe operation to assign multiple Enums ...
6
votes
1answer
2k views

Is this a good use-case for Redis on a ServiceStack REST API?

I'm creating a mobile app and it requires a API service backend to get/put information for each user. I'll be developing the web service on ServiceStack, but was wondering about the storage. I love ...
6
votes
2answers
961 views

Is ResponseStatus needed in ServiceStack?

Is ResponseStatus needed? The wiki says that we need to have a ResponseStatus property in our response DTO to handle exception serialization: ...
6
votes
2answers
2k views

Can ServiceStack services contain multiple methods?

Environment is Visual Studio 2012, ServiceStack, ASP.NET Web Application Project (followed https://github.com/ServiceStack/ServiceStack/wiki/Create-your-first-webservice) Looking through some of the ...
6
votes
1answer
1k views

Service stack and Mocking, any tutorials?

I am currently evaluating ServiceStack (to create rest based services in .Net). One of the areas of interest is the testing side. My rest service will have a number of app services injected in ...
6
votes
2answers
3k views

Can i post JSON/xml string as a POST request to REST Service stack?

I am currently working on Service stack, just very new to the service stack.(quite interesting-they says we are better than WCF and REST WCF(GET,POST,PUT,DELETE) ) I also found it helpful, with less ...

1 2 3 4 5 26