Tagged Questions
1
vote
0answers
24 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
33 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, ...
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 ...
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 ...
3
votes
1answer
148 views
Custom exception handling in ServiceStack REST service
I have a ServiceStack REST service and I need to implement custom error handling. I've been able to customize service errors by setting AppHostBase.ServiceExceptionHandler to a custom function.
...
0
votes
0answers
30 views
ServiceStack CookieException
Under ServiceStack (3.9.33) we are getting the following exception:
errorCode":"CookieException"
"message":"The 'Name'='$Version' part of the cookie is invalid."
"stackTrace":" at ...
1
vote
1answer
127 views
Cast Error when trying to read Web.config Config Section
I am trying to find out if it's possible to configure ServiceStack to authenticate a call using an API key in the host header?
I have found an example here: ...
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 ...
2
votes
1answer
285 views
Using ServiceStack's Swagger Plugin, how to implement a string field with a list of preset values
I am implementing Swagger API documentation using ServiceStack's new Swagger plugin and am trying to determine how to use the "container" data type. I need to display a string field that has a list of ...
3
votes
1answer
109 views
Is it possible to use one generic/abstract service in ServiceStack?
I am developing a (hopefully) RESTful API using ServiceStack.
I noticed that most of my services look the same, for example, a GET method will look something like this:
try
{
...
2
votes
1answer
354 views
How to Authenticate users differently in service stack based on service routes?
I am using servicestack.
I want to authenticate users differently based on the route in the API.
For example:
If the user is accessing a company route: /api/company (POST) (update to company data) I ...
2
votes
1answer
117 views
ServiceStack Handler Not Found When Periods Present in Path
When doing a GET with an email address (periods present) in the middle of the path we are getting an error from ServiceStack saying "Handler for Request Not Found". When moving the email address ...
2
votes
0answers
176 views
ServiceStack Client Exception Behavior (New Api)
Since upgrading to the latest version (3.9.24) of SS our "custom" error handling on the client side (.NET clients) has stopped working as expected. We used to rely on the "ResponseDTO" property of the ...
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 ...
4
votes
2answers
614 views
Is it possible to customize the ServiceStack /metadata page?
I run my site behind a loadbalancer on a non-standard port. When loading up the /metadata page it has my public domain name yet the local port that the app is hosted on, which causes the links to the ...
1
vote
2answers
414 views
ASP.NET MVC 3 Restrict API Access
I have an ASP.NET MVC 3 application with a self hosted ServiceStack API that provides the data. After I added the API location path in Web.Config the API is callable by my code and works well:
...
1
vote
1answer
821 views
ServiceStack Authorization - Access Route Information
In the documentation for ServiceStack, it says that the best practice is:
Normally ServiceStack calls the method bool HasPermission(string
permission) in IAuthSession. This method checks if the ...
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
3
votes
1answer
630 views
Can the OpenRasta, ServiceStack and RestCake API's be used on frameworks other than .NET?
I know these API's are used for doing something easier than WCF (in terms of config and performance) for .NET, but I wanted to know if these API's can be used on other frameworks too?
Thanks,
...