Tagged Questions
1
vote
0answers
26 views
Alternative to cookie based session/authentication
Is there an alternative to the session feature plugin in servicestack? In some scenarios I cannot use cookies to match the authorized session in my service implementation. Is there a possibility to ...
1
vote
1answer
24 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
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
1answer
56 views
ServiceStack user management
is there a way to manage users with ServiceStack?
I've only found the IUserAuthRepository interface that has some methods to get a user by name, email and id. But how to get a list of users (with ...
1
vote
2answers
95 views
how do you request a session from servicestack basic authentication, at /auth/basic?
I have set up a servicestack service with basic authentication using the first example, here:
https://github.com/ServiceStack/ServiceStack/wiki/Authentication-and-authorization
This automatically ...
2
votes
1answer
99 views
ServiceStack: Accessing the HttpRequest in a selfhosted application
I currently have an IIS hosted application that I would like to switch over to use the self-hosted method.
But I'm having difficulty accessing the session so I can retrieve the current users ...
2
votes
1answer
158 views
WPF consumer with ServiceStack using openid
We have a servicestack webservice which is authenticated using openid
and the client is a wpf app, trying to use openid/oauth and have questions
Is is possible to authenticate the wpf client using ...
1
vote
1answer
121 views
How can MonoTouch supply cookie on each ServiceStack request?
I've spent several days attempting to get to grips with ServiceStack and it seems great. Only issue is with authentication which seems to be a lot of friction, hard work and tears.
I want MonoTouch ...
1
vote
1answer
25 views
Overriding IAuthSession OnRegistered handler
I am using ServiceStack's SocialBootstrapApi and it contains a class CustomUserSession that I can use to override the OnRegistered method. I want to override it because I am attempting to obtain ...
1
vote
1answer
126 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: ...
1
vote
1answer
115 views
ServiceStack Custom authentication class for User & Admin
I was just looking for feedback on how to go about implementing this:
I have two types of users needing authentication in my system, Users & Admins. Now the tasks they will carry out and the data ...
2
votes
1answer
48 views
ServiceStack: How to see if the handler for the current request requires authentication
I have a webservice using the old API. Almost all of my service handlers requires authentication and I therefore use the Authenticate attribute on the service level.
All my services implement a ...
2
votes
1answer
167 views
Use asp.net authentication with servicestack
I have written a couple of ms lightswitch applications with forms authentication -> this creates aspnet_* tables in sql server.
How can I use the defined users, passwords, maybe even memberships, ...
1
vote
0answers
50 views
Can I access webservice from within a custom user session in service stack?
I have the standard Hello World web service, with my custom user auth session, because I wanted some additional parameters. The authentication part works as expected. Below is my CustomUserSession:
...
1
vote
1answer
298 views
Clarification / Examples on ServiceStack Authentication
I'm trying to get to grips with ServiceStack to build a new mobile product with it. It's slowly coming together but the documentation, although good, is a little brief in parts with no facility for ...
2
votes
1answer
136 views
Testing ServiceStack Basic authentication
ServiceStack provides an example where the different methods of authentication are tested in code. I was trying to build a simple browser test, just to see how it works.
I basically used this: ...
1
vote
1answer
160 views
Is this the right way to do stateless authentication per call on ServiceStack?
I have REST service requirements in which some calls require authentication and some don't. Absolutely no state is used, as the calls are all independent from one another. I have put something ...
1
vote
0answers
26 views
How to implement auth by credential in soapclient?
I found the method " WcfServiceClient.SetCredential" is commented, so I try create new ChannelFactory and assign the property "Credentials.UserName" with my username & password, but it return ...
2
votes
1answer
477 views
Authenticate SignalR Hub using ServiceStack Authentication Plugin
I have created a ServiceStack service on top of Asp.Net that implements Basic authentication. Everything is working fine on the service routes. I am able to login and I get the session cookies which ...
3
votes
1answer
328 views
ServiceStack authentication
I'd like to change servicestack's authentication so that it doesn't rely on the session being persisted.
Correct me if I'm wrong but servicestack uses the session to store the remember me settings, ...
4
votes
2answers
1k views
User authentication when consuming a REST webservice with ServiceStack
The ServiceStack docs are full of examples on how to use server side implementation of authentication of a user. But how does one set the user credentials on the client side?
I use ServiceStack to ...
1
vote
1answer
111 views
ServiceStack AuthFeature.HtmlRedirect being ignored
When I set the authentication feature redirect property it is not being applied when I go to access a secure page.
For example I set the authentication feature to redirect to use a custom log in page.
...
2
votes
1answer
129 views
How to disable ServiceStack sessions while keeping authentication features to implement per-request authentication
I'm trying to force per request authentication, but by adding the AuthFeature the SessionFeature gets added automatically, which appears to cache the authentication result (I'm not getting multiple ...
2
votes
1answer
1k views
ServiceStack Web Service with Basic Authentication and SetCredentials
Right now I'm playing with ServiceStack and its Authentication and authorization support.
Working on the CustomAuthenticationMvc (the Web Service Host app) from the Use Cases project and while trying ...
2
votes
1answer
181 views
What is the cleanest way to leverage Forms Authentication from ServiceStack?
I'm trying to integrate ServiceStack with an existing Web Forms site. The site uses Forms Authentication along with some custom authentication logic involving database calls, etc.
How can I secure ...
2
votes
1answer
171 views
Redirect on successful Login using servicestack
I've recently decided to migrate over to using servicestack authentication. From what I can tell, to have a redirect after a successful login of an oauth provider, you add the url to the appSettings ...
2
votes
1answer
352 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 ...
1
vote
0answers
164 views
How to do ServiceStack auth with MVC without EF
I'm working through the example AccountController and trying to implement my own. I'm trying to do OAuth (via GMail) and so I've got it working all the way through ExternalLoginCallback(string). The ...
18
votes
2answers
419 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 ...
5
votes
1answer
698 views
When ServiceStack authentication fails, do not redirect?
We're building a ServiceStack API which will use Basic authentication. I've currently set up the auth in my AppHost as follows:
var authDb = new OrmLiteConnectionFactory("Server=(...);", true, ...
2
votes
1answer
142 views
Using Bcrypt with ServiceStack
I am looking to use ServiceStack for an upcoming project, but I want to use bcrypt for hashing passwords. Currently the builtin repositories use SHA256 hashing. Is there any way for me to leverage ...
6
votes
1answer
404 views
Cross platform ServiceStack Authentication
What is the best way to architect the following solution for authentication?
I have a standalone (not integrated with MVC) ServiceStack REST service layer. This service is the entry point to all my ...
1
vote
1answer
86 views
Servicestack v. 3.9.18 Authenticate attribute does not appear to work anymore
Just upgraded to servicestack.mvc v. 3.9.18 to fix some null ref exception error, but now the AuthenticateAttribute does not seem to have any effect anymore. I have this action in a controller:
...
1
vote
2answers
208 views
ServiceStack Authenticate attribute results in null ref exception - pull request 267
I am making an MVC3 site using ServiceStacks authentication mechanism. When I add the AuthenticateAttribute to a controller, I get a null reference exception:
System.NullReferenceException was ...
1
vote
2answers
510 views
Authentication in servicestack.razor
I try to create complete web apps using ServiceStack.Razor.
but got problem how to handle authentication in service and page.
handle unauthorized access in service quite easy as we can set ...
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 ...
0
votes
1answer
147 views
ServiceStack AuthenticateAttribute results in null reference exceptions second time unless cookies are deleted
I am trying to get ServiceStacks Authentication to work on an MVC site. My controllers are like this:
public abstract class ControllerBase : ServiceStackController<AuthUserSession> {
...
3
votes
2answers
482 views
Performance in Service Stack vs IIS for serving files
We're using Service Stack for a web service API. We wrote a "get file" routine to fetch files rather than letting IIS serve the files directly, because we need server-side authentication logic.
We ...
1
vote
1answer
240 views
How can I convert ServiceStack.HttpResult to Response in Asp.Net MVC
Servicestack's AuthService is designed for REST style http response. Because of that
AuthService.Post(auth) returns HttpResult.So you can easily consume it via JQuery + Ajax.
But if you want to use ...
0
votes
2answers
208 views
How can I overwrite Login Url in ServiceStack.MVC auhtentication?
How can I override login Url?
Could you add it to AuthenticateAttribute as property?
1
vote
1answer
791 views
Authentication and Authorization with ServiceStack.MVC
AuthorizeAttribute is useless while using ServiceStack.Mvc
AuthenticateAttribute is for DTO objects.
There is no sample for AccountController with ServiceStack, Signout is not working in ...
1
vote
1answer
459 views
Using ServiceStack's AuthService with Controller and AuthorizeAttribute
There is no simple ServiceStack sample as classic ASP.NET MVC. Both AppHarbor and SocialBootStrap api based on SinglePage Application. How can I implement classic Asp.net MVC application with ...
4
votes
1answer
3k views
How can I extend ServiceStack Authentication
I'm using ServiceStack Authentication with ServiceStack.OrmLite (SqlServer). I have different User types like Student, Teacher, Principal.. All user types will have relation with other Db Tables.
What ...
1
vote
1answer
522 views
ServiceStack OAuth Redirect URL
The ServiceStack AuthService enters an infinite loop after authenticating with an OAuth provider because of this line in OAuthProvider.cs:
return ...
4
votes
1answer
416 views
Authenticated ServiceStack.Redis.PooledRedisClientsManager
How do I specify a username and password for the Redis hostname when instantiating a PooledRedisClientManager?
var _redis = PooledRedisClientManager("my.redishost.com:1234");
I specifically need to ...
2
votes
1answer
1k views
How to implement Client Authentication with ServiceStack.Net
I am developing web services using the servicestack.net library.
In my scenario, the web services will be called from a WPF application. I need the ability to authenticate that only an approved ...
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 ...
