Questions tagged [custom-authentication]

176 questions
0
votes
1 answer

Symfony2 custom authentication provider bad credentials

I'm implementing a custom authentication provider for using an external api following roughly the cookbook on the symfony website. It works almost everything correctly, the listener listens the login form properly, then it calls the authenticate…
originof
  • 795
  • 1
  • 7
  • 24
0
votes
1 answer

Custom authentication, authorization and session for WCF

I have read about various implementations of authentication and authorization for WCF, starting from reusing some built in .NET and WCF features and ending with completely custom implementations. But there are so many factors to take into account,…
JustAMartin
  • 13,165
  • 18
  • 99
  • 183
0
votes
0 answers

Call to service initialize function through HttpModule

I have written WCF Data Service, which runs perfectly well without authentication. Then I wanted to add some authentication code by adding HttpModule in application like below: public class BasicIdentity : IIdentity { string _name; public…
MaxRecursion
  • 4,773
  • 12
  • 42
  • 76
0
votes
1 answer

asp.net mvc, multiple CustomAuthorize Role Providers

I am trying to lock my application down to each method where by users and admin can see the whole controller but only administrators can create, delete, and edit. I have created a CustomAuthorize class which holds the method: public class…
Steven
  • 91
  • 1
  • 9
0
votes
1 answer

WSO2 Identity Server authentication with response in return

I have a custom authenticator for Liferay that authenticates the user using "AuthenticationAdmin" service and service method "login()" only returns the boolean response.I In my case I want the calling web application to know more from this login…
0
votes
1 answer

MVC 3 Forms authentication with IOC container

I have a problem implementing forms authentication with an IOC container in my ASP.NET MVC 3 project. We have stored our user information in the database and has a lot of custom properties. I have an interface of my user definition registrated to…
0
votes
1 answer

Please help solve issue whith custom autentification

i have simple authentication type i chek in DB if userName and password exist i creat FormsAuthenticationTicket and add it HttpContext.Current.Response.Cookies.Add(cookie); when i check HttpContext.Current.User.Identity.IsAuthenticated before…
0
votes
1 answer

How do I bypass a fatal error handling in CakePHP custom Authenticator Object?

I'm doing a soap based authentication in my custom Authenticator object. Sometime the soap endpoint may not be available. This in sequence will throw a SOAP-ERROR: Parsing WSDL: Couldn't load from and then will be handled…
0
votes
1 answer

Custom Windows Active Directory Authentication in ASP.net C# page

I sort of want to be able to do mixed windows and forms authentication. //I want to check the browser the user is using If(IE || chome)//I know IE and chrome can authenticate without a popup login box { //check windows authentication …
-1
votes
1 answer

Spring security filter should be called after login in reactive programming

[CustomerWebFilter class] Here in the filter class I need to recheck urls which doesn't need any authentication or authorization. I don't want a filter method call for specified urls like login and others. Filter should be called after successful…
-1
votes
1 answer

Why to create a custom principal interface when you want to create a Custom Principal in Asp.net MVC?

Recently I seaerched for how to create custom principal and I got the answer but there is one thing that I do not understand, I found this solution on stack overflow using System; using System.Collections.Generic; using System.Linq; using…
Mo Haidar
  • 3,748
  • 6
  • 37
  • 76
1 2 3
11
12