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
2
votes
1answer
94 views
AngularJS friendly return types of List and Dictionary with ServiceStack
AngularJS cannot bind to a value type model, as explained here:
https://github.com/angular/angular.js/issues/1267
Modifying an array within an object that's displayed in a ng-repeat
On the ...
3
votes
1answer
60 views
ServiceStack multiple services web API
I'm a newbie with ServiceStack and to learn how it works, I'll develop a web API for Northwind database (using the repository pattern).
I've checked the sample project ServiceStack.Northwind and ...
2
votes
1answer
37 views
servicestack forbidden 404 error using iis8
my servicestack web service works fine in IIS express (VS 2012) and when deployed to windows azure, but it does not work using IIS 8 (Window 8). I am getting 404 forbidden error. My web.config has ...
3
votes
0answers
38 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 ...
1
vote
1answer
45 views
ServiceStack Redis CRUD
First time using ServiceStack Redis. I looked around the web and could not find a very basic crud example. Closest I found was this and this. Just wondering If I'm doing it right. Thanks.
Note : ...
1
vote
1answer
30 views
How/where does ServiceStack cache the razor views?
When a request is first made to a ServiceStack service, it goes in and looks for all Razor views, compiles and caches them. Where is the assembly cached for the compiled views stored? When in release ...
1
vote
3answers
103 views
Deserialize Json Object to polymorphic C# object without typeNameHandling
My problem is I want to deserialize a json object to a C# object, but the trick is that the C# object contains List< abstract class > and this abstract class is a super class of another 10 classes.
...
1
vote
1answer
47 views
ServiceStack example on Mono
Working on getting a ServiceStack.NET HelloWorld example up and going on Mono. Stuck at this error:
System.Web.HttpException
Failed to load httpHandler type ...
1
vote
2answers
58 views
Service Stack Serialization Exception for soap 1.1
The Request Message:
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
...
1
vote
1answer
35 views
How to remove *Response convention in service stack?
I am trying to stand up a service using Service Stack. The service needs to meet soap 1.1 standards.
Now the operation object that I am trying to use is called SendGetAccountResponse and I created no ...
1
vote
1answer
52 views
How do I get started with Redis on Servicestack on Windows?
I've just got started with ServiceStack and have created my first service in MVC4. Now I want to persist my objects using Redis. I can't figure out how to get it running on Windows or if the ...
1
vote
1answer
32 views
The use of FacebookAuthProvider in apps
I've been working with ServiceStack for quite some time now and i love it. But there is one thing i can't figure out.
How are app's (ios, android etc.) that are using my servicestack endpoints, ...
2
votes
1answer
32 views
What tools can I used to document ServiceStack web services?
Which tools can I use to document ServiceStack web services?
Is there anything available in servicestack that can help?
I am currently using RestServiceBase version of ServiceStack.
1
vote
0answers
20 views
How can I implement 'RenderPartial' method for 'ServiceStack.Razor.RazorFormat'?
I added ServiceStack.Razor configuration to the ServiceStack sample project RestIntro, added a Views folder containing _Layout.cshtml and Customers.cshtml, when i browse the app
...
1
vote
0answers
44 views
Make Servicestack's FacebookAuthProvider return AuthResponse
Is it possible to make ServiceStack's FacebookAuthProvider return AuthResponse instead of always returning HttpWebResponse.
I've tried creating my own CustomFacebookAuthProvider and overriding ...
3
votes
1answer
41 views
Error handling with ServiceStack's IStreamWriter & IHasOptions
With an implementation of IStreamWriter and IHasOptions that returns an image/jpeg result, if an error occurs in WriteTo, the global error handler in AppHost is not called, and the image/jpeg header ...
2
votes
0answers
46 views
Patterns for handling scheduled/unscheduled downtime using ServiceStack and WebApi
Now that we have webservices running, we need to make changes to db, servers etc. so ..
wondering if there are any patterns for handling planned and unplanned downtime using ServiceStack and also ...
3
votes
1answer
53 views
How do I map multiple Request DTOs to a single Route
I have been experimenting with the ServiceStack framework to develop a simple REST API. I am having troubles trying to define the Routes properly to handle the different URLs I desire.
I have a ...
1
vote
1answer
22 views
ServiceStack + 3rd Party COM Inteop + Context disconnected exception
I'm getting Context Disconnected errors when testing my ServiceStack service. I assume it's due to failing race conditions between the GC for the COM object's response callback thread, my ServiceStack ...
1
vote
1answer
38 views
Enable gzip/deflate compression
I'm using ServiceStack (version 3.9.44.0) as a Windows Service (so I'm not using IIS) and I use both its abilities both as an API and for serving web pages.
However, I haven't been able to find how ...
2
votes
1answer
37 views
Selectively disable certain REST Services in ServiceStack during runtime
I want to disable some services programmatically. The user can specify via a configuration file if he wants to enable some part of functionality, and if not, the services should not be ...
1
vote
1answer
70 views
Using ServiceStack to upload image files
We have a requirement to upload images using ServiceStack APIs.
I am aware of two possible ways:
1) Use JSON object to upload file (Using BASE64 string).
2) Use "multipart/form-data"
Is there any ...
1
vote
2answers
27 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 ...
2
votes
1answer
63 views
Servicestack ORMLite Query Multiple
I was wondering if ORMLite had a QueryMultiple solution like dapper.
My use case is in getting paged results.
return new {
Posts = conn.Select<Post>(q => q.Where(p => p.Tag == ...
1
vote
1answer
34 views
Accented characters in Views are not rendered properly
I'm using ServiceStack (v3.9.44.0) as a Windows Service (targeting .Net4.5) and I use Razor to let ServiceStack generate and serve HTML.
Things work pretty well, but there is an odd issue: it seems ...
1
vote
1answer
35 views
ServiceStack Service structure for predominantly read-only UI
I'm getting started with ServiceStack and I've got to say I'm very impressed with all it has under the bonnet and how easy it is to use!
I am developing a predominantly read-only application with it. ...
1
vote
1answer
33 views
How to access the Request object in a custom exception handler in ServiceStack
I want to register a custom exception handler in ServiceStack. The wiki at https://github.com/ServiceStack/ServiceStack/wiki/Error-Handling says:
this.ServiceExceptionHandler = (request, exception) ...
2
votes
1answer
32 views
ServiceStack Ormlite SqlExpressionVisitor null check in Where extension
I would like to write a method for querying table with one method by null cheking parameters using SqlExpressionVisitor of Ormlite
Here is my method :
public static List<UserChatsDTO> ...
1
vote
0answers
35 views
Passing XML data as a string parameter in the request ServiceStack
I’m using ServiceStack and every time I’m trying to pass XML string as a string parameter or “< “ symbol for the POST request I’m getting an exception: SerializationException - Could not ...
1
vote
1answer
39 views
Is it possible to send raw json with IRestClient
I love the simplicity of using servicestack's IRestClient to test my api, but I need to replicate a test scenario when someone sends an incomplete object. For instance if my dto looks like this:
...
2
votes
1answer
50 views
Problems running ServiceStack as daemon on Linux (Ubuntu 13) as described on the wiki page
I have a problem running ServiceStack as daemon on Linux.
I just started to work into creating a REST API with C# on Mono. I studied your Wiki about it and yesterday I tried to run ServiceStack as ...
1
vote
2answers
40 views
How can I get the session object from the layoutfile in ServiceStack?
From all the other pages I can get hold of the Session object with this code:
@{
var user = Request.GetSession();
}
Authenticated: @user.IsAuthenticated
When I try to get the session from ...
1
vote
1answer
50 views
ServiceStack Authentication validation with Captcha
I want to put a CAPTCHA field into the the auth submit form api/auth/credentials.
So, now the form will need to contain a captcha field apart from username, password and rememberme.
I will then ...
2
votes
1answer
36 views
Using ServiceStack Mini Profiler in self-hosted console application
Is it possible to use ServiceStack Mini Profiler in self-hosted console application? If it is, where should I put profiler enable/disable code? In ASP.NET hosted ServiceStack it's usually in ...
3
votes
1answer
35 views
ServiceStack: Why are my calls not resolved to correct routes?
I am using a "new" api with IReturn interface. All my calls are being resolved to /api/json/syncreply route, rather then the ones specified in the plugin registration.
If I hit the url in browser I ...
1
vote
2answers
20 views
Error handling from custom plugins
I am writing a plugin for servicestack and I want to take advantage of the error handling built in to the services. The idea is that I want to perform some logic before the route is handled, and ...
1
vote
1answer
33 views
How to show ApiMember attribute data for properties of complex types on ServiceStack's generated metadata page
Is it possible to have ApiMember attribute data show up on ServiceStack generated metadata for properties of complex types on the request DTO? If so, how can this be achieved?
Let's say I have a ...
0
votes
1answer
36 views
ServiceStack redirection when inheriting from ServiceStackController
As per this question, there's a way to change redirect URL for ServiceStack auth services.
However, when inheriting my controllers from ServiceStackController<AuthUserService> this obviously ...
3
votes
1answer
47 views
servicestack: adding www-authenticate header to an error response
When throwing an 401 error because of missing authorization, I want to include the www-authenticate header.
But how do I do that?
I tried with a response filter, but that didn't seem to work.
Edit
...
1
vote
1answer
42 views
Using class and property names as output in JSON
I have this DTO:
public class Post
{
public int Id { get; set; }
public string Message { get; set; }
public DateTime CreatedDate { get; set; }
}
Then i have a route in servicestack that ...
2
votes
1answer
82 views
How to create a enumerable / class string or int and serialized?
I have been looking for hours now and i have no idea how to solve my problem. I am writing a Service Stack API and I need whoever is going to consume it to pass in valid values in only.
I have a ...
1
vote
1answer
34 views
StringMapTypeDeserializer (null) - Property '_' does not exist on type
I recently deployed a new service and started getting the above error.
The service works, but I get the error reported in my logs.
2013-05-03 09:56:36,455 [51] WARN ...
1
vote
1answer
29 views
ServiceStack server on dynamic IP address desktop
I am writing an application for deployment on desktop computers and using ServiceStack to expose json services to a central application which will consume them. I'm using ServiceStack self hosting ...
1
vote
0answers
29 views
Why is IRequiresHttpRequest lazily loaded?
I'm trying to set up a set of rules that execute under one of 3 conditions:
HttpRequest.HttpMethod = "Put"
HttpRequest.HttpMethod = "Post"
HttpRequest == null
This last one will occur in the case ...
1
vote
0answers
31 views
To serialize directly to file stream or buffer before
Here I was wondering what is generally considered to be faster.
Either writing to the stream directly while serializing data
using (var fs = new FileStream(file, FileMode.Create, FileAccess.Write, ...
1
vote
1answer
29 views
OPTIONS Verb for Routes with custom CORS headers
Lets say I have a route like this:
[Route("/users/{Id}", "DELETE")]
public class DeleteUser
{
public Guid Id { get; set; }
}
If I am using CORS with a custom header, an OPTIONS preflight ...
1
vote
1answer
42 views
ServiceStack proper way to access routes and avoid markup
I think this question is more about best practices regarding web services and not necessarily limited to ServiceStack only. From what I've read here and on the SS wiki, the 'recommended' way to ...
2
votes
1answer
59 views
Long polling in SERVICE STACK
We have developed a C# Webservice in Service stack. In this whenever we get a request for checking the availability of a Data we need to check in the Database and return the result. If data is not ...
2
votes
1answer
31 views
Calling ServiceStack service from WCF client
I have an old SOAP service developed using WCF and also a number of .NET clients using WCF to call the service.
I have created a new service using the ServiceStack framework that implements the same ...
1
vote
1answer
45 views
Route Attribute Ignored
According to multiple documentation sources, routes can be defined as attributes on the DTO. I have the following DTOs (the last one is in a different file):
[Route("/hdos", "GET")]
public class ...

