tagged [authentication]

ServiceStack custom response on failed authentication

ServiceStack custom response on failed authentication I've created a custom authentication for servicestack, which works well. The only problem is, that I get empty responses for every route, that req...

Can you get a Windows (AD) username in PHP?

Can you get a Windows (AD) username in PHP? I have a PHP web application on an intranet that can extract the IP and host name of the current user on that page, but I was wondering if there is a way to...

3 Oct at 19:53

Authenticating in PHP using LDAP through Active Directory

Authenticating in PHP using LDAP through Active Directory I'm looking for a way to authenticate users through LDAP with PHP (with Active Directory being the provider). Ideally, it should be able to ru...

How can I make SMTP authenticated in C#

How can I make SMTP authenticated in C# I create new ASP.NET web application that use SMTP to send message. The problem is the smtp was not authenticated from who send the message. How can I make SMT...

26 Apr at 10:28

How should I handle authentication with Nancy?

How should I handle authentication with Nancy? I started coding a LoginModule for Nancy, but it occurred to me that possibly I need to perform authentication a different way. Is there an accepted way ...

16 Nov at 16:40

Authentication and Authorization with ServiceStack.MVC

Authentication and Authorization with ServiceStack.MVC AuthorizeAttribute is useless while using ServiceStack.Mvc AuthenticateAttribute is for DTO objects. There is no sample for AccountController wit...

Whats the best way to force a browser redirect after logout of ServiceStack

Whats the best way to force a browser redirect after logout of ServiceStack Currently when a user logs out the log out process works correctly but the user stays on the same screen and therefore can s...

How to programmatically log in to a website to screenscape?

How to programmatically log in to a website to screenscape? I need some information from a website that's not mine, in order to get this information I need to login to the website to gather the inform...

11 Aug at 13:37

How to clear basic authentication details in chrome

How to clear basic authentication details in chrome I'm working on a site that uses basic authentication. Using Chrome I've logged in using the basic auth. I now want to remove the basic authenticatio...

12 Oct at 12:34

Why would my REST service .NET clients send every request without authentication headers and then retry it with authentication header?

Why would my REST service .NET clients send every request without authentication headers and then retry it with authentication header? We happen to run a REST web service with API requiring that clien...

How to get the currently logged in user's user id in Django?

How to get the currently logged in user's user id in Django? How to get the currently logged-in user's id? in `models.py`: in `views.py`:

Check whether the allow anonymous is on or not in ASP.NET Core

Check whether the allow anonymous is on or not in ASP.NET Core I need a way to check if "allow anonymous" is on/off in the controller action. Whether it comes from controller attribute, action attribu...

How to change users in TortoiseSVN

How to change users in TortoiseSVN I was setting up another user to use our SVN repository. He didn't have a username/password, so I logged in with my credentials. We now have a username/password for...

Devise redirect after login fail

Devise redirect after login fail All the questions I've found are related to a successful login with the helper `after_sign_in_path_for(resource)` I have a login form in the index of the site, and whe...

How to login using Windows Authentication in .NET Core with Servicestack

How to login using Windows Authentication in .NET Core with Servicestack In previous applications using ServiceStack, me and my team have been using .NET Framework and the included AspNetWindowsAuthPr...

Full name rather than the domain id in User.Identity.Name

Full name rather than the domain id in User.Identity.Name The `User.Identity.Name` property returns the domain login id. Which class/property exposes the actual user name? For user "John Doe" who logs...

26 Nov at 12:51

Why ClaimsPrincipal.Current is returned null even when the user is authenticated?

Why ClaimsPrincipal.Current is returned null even when the user is authenticated? In an ASP.Net core 2.0 applicaiton (SPA with Angular), while User.Identity.IsAuthenticated is returning true, the Clai...

Authenticating to ServiceStack with Angular

Authenticating to ServiceStack with Angular We are looking to build an Angular 2 SPA using ServiceStack. We are primarily looking for a getting started type of instructions/demos on handling authentic...

PostgreSQL error: Fatal: role "username" does not exist

PostgreSQL error: Fatal: role "username" does not exist I'm setting up my PostgreSQL 9.1. I can't do anything with PostgreSQL: can't `createdb`, can't `createuser`; all operations return the error mes...

18 Nov at 05:36

How to programatically 'login' a user based on 'remember me' cookie when using j2ee container authentication?

How to programatically 'login' a user based on 'remember me' cookie when using j2ee container authentication? i'm using form based authntication in my WAR. i want to implement a 'remember me' cookie s...

5 Sep at 21:35

how to generate a unique token which expires after 24 hours?

how to generate a unique token which expires after 24 hours? I have a WCF Webservice which checks if the user is valid. If the user is valid I want to generate a token which expires after 24 hours. ``...

1 Feb at 10:2

Alternative to cookie based session/authentication

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 s...

Angular redirect to login page

Angular redirect to login page I come from the Asp.Net MVC world where users trying to access a page they are not authorized are automatically redirected to the login page. I am trying to reproduce th...

Built-in helper to parse User.Identity.Name into Domain\Username

Built-in helper to parse User.Identity.Name into Domain\Username Is there any built-in utility or helper to parse `HttpContext.Current.User.Identity.Name`, e.g. `domain\user` to get separately domain ...

How do you implement authentication in servicestack.net

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 servicesta...