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
0answers
4 views
Newer ServiceStack reporting badly with New Relic
Some of our latest Web Service applications has been using the newer 3.9.x version of ServiceStack and we are about to update one of our older applications from v3.5.x to use 3.9.44.0. The 3.5.x ...
0
votes
0answers
10 views
Html5 pushstate Urls on ServiceStack
At the moment we're using a default.cshtml view in the root of ServiceStack to serve our AngularJS single-page app.
What I'd like to do is enable support for html5 pushstate (so no hash in the URL), ...
0
votes
0answers
8 views
Service Stack Route for a collection field for a service
I have a service for Employee with a DTO
[Route("/employee/{id}", "GET PUT DELETE")]
[Route("/employees", "POST")]
public class Employee : Person
{
public Employee() : base() {
...
1
vote
0answers
12 views
ServiceStack using @helper functions to share functionality between views
I have attempted to use the @helper syntax to create helper functions that can be shared between my views.
Mostly I have followed this tutorial ...
1
vote
0answers
21 views
Alternative to cookie based session/authentication
Is there an alternative to the session feature plugin in servicestack? In some cases I cannot use cookies to match the authorized session in my service. Is there a possibility to resolve the session ...
1
vote
1answer
14 views
ServiceStack cache size
In ServiceStack when using IN-memory cache is there a way to find the actual size of the cached objects in bytes?
1
vote
1answer
19 views
Specify the services ServiceStack should register
Is it possible to specify the Services that SS registers rather than it picking up everything that it finds.
Given a library with say 10 services, it can be deployed on multiple servers, depending on ...
1
vote
1answer
28 views
How to get HttpContext in servicestack.net
I am unable to switch to all of service stack's new providers, authentication, etc. So, I am running a hybrid scenario and that works great.
To get the current user in service, I do this:
...
1
vote
1answer
13 views
Why does ServiceStack's AppHostBase.Configure take a Container parameter?
AppHostBase already contains a Container property (which resolves to EndpointHost.Config.ServiceManager.Container if defined), so why not just use Instance.Container (e.g., for registering ...
1
vote
1answer
21 views
How to do token based auth using ServiceStack
How would I implement the following scenario using ServiceStack?
Initial request goes to http://localhost/auth having an Authorization header defined like this:
Authorization: Basic skdjflsdkfj=
...
1
vote
1answer
25 views
Problems integrating NServiceBus with ServiceStack IRequiresRequestContext
I am looking to integrate NServiceBus into an existing ServiceStack web host. ServiceStack is currently using the built in Funq IoC container. NServiceBus has been configured (elsewhere in the system) ...
1
vote
0answers
14 views
Cross origin OAuth authentication
I would like to use my API website for authentication & authorisation of users and ideally keep my UI site purely static content.
I have configured ServiceStack's OAuth & OpenId (and ...
1
vote
0answers
7 views
Automatically detect when storing an object with ServiceStack.Redis
I am looking for a way to subscribe to events like Storing a specific object type to ServiceStack.Redis.
For example I may
using (var redisClient = new RedisClient())
using (var redisMyObjects = ...
1
vote
2answers
30 views
Can I use ServiceStack web service with .net 3.5
Can I use ServiceStack web service with .net framework 3.5 web forms?
Can I have a small example because I've tried to go through ...
1
vote
0answers
12 views
can more then 1 web apps on the same domain but different host share authentication
I have a servicestack web service web.mydomain.com where I use CustomUserSession and shared cache client.
How can my other servicestack web app installed on app.mydomain.com use this service?
if I ...
1
vote
2answers
21 views
ServiceStack: No /swagger-ui/index.html
I am using ServiceStack for my custom service, in stand alone mode without IIS.
I would like to add documentation for my services beyond what /metadata does. I thought to try the Swagger plug in.
I ...
1
vote
1answer
24 views
How to disable ServiceStack redirect on failed authentication?
I am implementing ServiceStack side-by-side with a MVC application. My main application uses form authentication which is configured in my web.config. When the authentication of fails, I don't get the ...
1
vote
0answers
14 views
Is better Razor diagnostics change now included in ServiceStack v3.9.45?
As I'm still getting HttpCompilationException (External Exception) when I work through Mono on Mac with no hint as to what the real error is within Razor. To test it I'm binding to an invalid property ...
1
vote
1answer
34 views
ServiceStack.net implementing CustomAuthProvider with additional parameters?
Im trying to implement a CustomAuthProvider in ServiceStack.net. I need to extend past just the username/password with a 3rd parameter. (lets call it an apikey) I would also like this to accept the ...
1
vote
0answers
30 views
ServiceStack MARS (Multiple Active Result Sets) using ORMLite and Output Parameters
ServiceStack ORMLite is great, I've typically steered clear of the ORM mentality preferring to build databases as it makes sense to build databases instead of a 1:1 class model. That said, there are ...
1
vote
0answers
17 views
IAuthProvider for OAuth2 in ServiceStack
Can anyone provide an example of how to implement IAuthProvider against an OAuth2 endpoint in ServiceStack? As far as I can see all the AuthProvider implementations I can find (like Facebook/Google) ...
1
vote
1answer
20 views
servicestack and razor in one project
Did anyone try to have servicestack web service and razor page in one project using version 3.9.45, if yes, is there anything different about latest version? I can get it to work in older version but ...
1
vote
0answers
20 views
Unable to cancel a Servicestack Facebook authentication proccess
When accessing "/api/auth/facebook" i'm redirected to facebook ouath dialog, but when trying to cancel, i keep getting redirected to the same facebook ouath dialog.
This means i cannot cancel this ...
1
vote
1answer
36 views
Unable to access javascript file (.js) using Service Stack Razor
I'm using Service Stack Razor (ServiceStack.Razor.3.9.45) and I can't access any js nor css file.
Server Error in '/' Application.
This type of page is not served.
Description: The type of page you ...
1
vote
1answer
23 views
use external htmlhelper extensions with ServiceStack
Is it possible to use the System.Web.Mvc.HtmlHelper extensions with the ServiceStack.Razor implementation.
I'm trying to use the Ext.NET extensions, but others extensions like DevExpress, Kendo have ...
2
votes
0answers
22 views
Service Stack:Type definitions should start with a '{', expecting serialized type 'AuthResponse', got string starting with
i am using the following code to athenticate the user using ServiceStack basic auth provider in my asp.net application and receiving serilization exception.Please answer if anyone has solve this ...
2
votes
2answers
46 views
why adding razorformat breaks web services in servicestack latest 3.9.45.0
I am breaking my head today why after upgrading to latest servicestack and servicestack.razor my routing in web services stops working. So I did the following test.
created a new empty web project ...
1
vote
1answer
30 views
Bulk Inserts with Service Stack & Ormlite
I am having trouble finding a good way to do fast bulk inserts in ServiceStacks Ormlite
I will be performing the inserts against SQL Azure.
The only batch inserts that I could find would be to do as ...
1
vote
1answer
18 views
ServiceStack webservice working in ie9 or ie10 using localhost as address but not with ip address as the address
I've run into an issue where chrome and opera work fine for this but there is a form that is throwing fits in internet explorer 9 and 10 when I use either the hostname or the ip rather than localhost ...
1
vote
1answer
23 views
Can ServiceStack JsonServiceClient send a get request to https w/self signed certificate?
I making a call to get using JsonServiceClient to serialize my request object. My server is using https and I created a self signed certificate.
It would appear that an exception is thrown when the ...
1
vote
1answer
21 views
How to create internal service with ServiceStack?
Is there any way to block directly access to some service(not all) by network with ServiceStack?
I create a service for internal process. this service will be called by other services, but not called ...
1
vote
1answer
16 views
servicestack Creating a wildcard route to different DTO's
I'm trying to create set of service stack routes that have wildcards in it.
I can't change it as the Url to respond to are defined by another product.
It seems as soon as service stack sees the * in ...
1
vote
0answers
13 views
How to ignore favicon.ico route on ServiceStack host (non MVC)
I'm having this weird problem with ServiceStack. I've hosted this as a regular ASP.NET web application - so no MVC project. When I browse to the metadata page I get following in my NLOG table:
...
1
vote
0answers
14 views
Snapshot views of services disabled when Razor plugin is added to ServiceStack.Net in v3.9.45
The snapshot of service data is good to use in development as I first write the service and see if it's returning data and then write the view. However after I upgraded to ServiceStack v3.9.45 it ...
2
votes
1answer
38 views
Return PDF documents
I've tried implementing a custom formatter for returning PDF documents from ServiceStack. Without much luck, though. I've looked at the examples and pretty much copied the VCard sample, but replaced ...
1
vote
0answers
33 views
HTTP 404 is returned if method is not defined in service
Why is HTTP 404 returned instead of HTTP 405 in response to a valid URI with undefined method? How could I change that to return HTTP 405?
1
vote
1answer
26 views
ServiceStack Profile Steps not rendering
I have a ServiceStack Service with a service call like so:
public class MyService : Service
{
public object Get(MyServiceRequest request)
{
using ...
1
vote
1answer
17 views
Returning an error without throwing an exception with servicestack
From what I know, exception throwing can be a little heavy. I can see that ServiceStack's Error handling suggests throwing an exception, which gets beautifully serialized to the client side.
1. How ...
3
votes
1answer
49 views
ServiceStack SelfHosted Site Default page
I have tried all the Razor self-hosted and the servicestack templates and in those projects it is possible to serve static html and cshtml if you have the razorFormat installed. I don't know what I ...
2
votes
2answers
29 views
Is it possible to control the JSON serialization behavior of JsonServiceClient?
I am trying to interact with an ASP.NET MVC controller action using a ServiceStack JsonServiceClient. The default serialization behavior of DateTime objects does not seem to be compatible with what ...
2
votes
1answer
45 views
Serving bundled JavaScript with a pure AppHost implementation of ServiceStack
I would like to use ServiceStack as a pure AppHost implementation without using MVC. I want to use it to drive a Single Page App.
Serving the SPA's single HTML shell page is straightforward enough ...
1
vote
0answers
23 views
Using Microsoft Enterprise Library 5.0 Logging Provider for Service Stack
I have a project based on ServiceStack framework and I want to use the Logging provider for Microsoft Enterprise Library 5.0, here are the steps I followed:
(1) Installed the Service Logging ...
2
votes
1answer
86 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
57 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
36 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
35 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
40 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
28 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
94 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
44 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 ...


