Questions tagged [identity]

An inherent property of an entity that distinguishes that entity from all others. Frequently used to refer to user identity and authentication.

Identity typically refers to user identity in authentication scenarios.

2969 questions
1
vote
2 answers

User.IsInRole not working. How to check rolebased authorization?

I am using MVC 5 with EntityFramework 6. In "IdentityModel" I am inheriting IdentityUser class using following code: public class ApplicationUser : IdentityUser { [Display(Name="First Name")] [StringLength(50, ErrorMessage = "Length…
Twix
  • 392
  • 1
  • 12
  • 38
1
vote
0 answers

VBA Macro Excel "Cannot insert explicit value for identity column in table 'table' when IDENTITY_INSERT is set to OFF"

I'm new in VBA Excel macro. I want to create a vba script to insert a record from Excel worksheet and I tried with a simple script for testing but I hit below error: Cannot insert explicit value for identity column in table 'table' when …
1
vote
2 answers

Using a Parameter As An IDENTITY starting number

I am writing a query which creates some test accounts. I am giving my stored procedure an INT which is a starting number - and want it to simply create accounts which have a number 1 more than the one before it since each account number must be…
PWilliams0530
  • 170
  • 1
  • 12
1
vote
2 answers

How to have seperate sessions on 2 asp.net applications

I have got two asp.net applications (.NET 4.5) on the same application pool on the same IIS (7.5). Their authentication tables are from two different databases. My problem is that when I log into one application, I get logged into the other as well…
Nay
  • 97
  • 1
  • 9
1
vote
1 answer

ASP.NET 4.5 How to Create Custom Log-ins?

I am relatively new to ASP.NET so I am hoping someone can help point me in the right direction. I am creating a wedding website which will only display content if a user logs in from a login control at the top of the page. I have a database created…
1
vote
1 answer

asp.net identity 2 external sign in not saving userlogin and not finding user after logging in to provider

I am using asp.net identity 2 in a new mvc project (I've set it up to use an int user id instead of the default string identifier). It works successfully logging in normally with an existing account, but if I use the external sign in instead using…
user1368182
  • 423
  • 7
  • 18
1
vote
1 answer

Cannot login to ASP.NET membership in .NET 4.5

I created a new solution for a web application based on MVC4 with ASP.NET and the Razor engine. The project uses the template that has membership. For the moment I am not using external logins due to other requirements. However, I want to make use…
1
vote
1 answer

.net Identity password encryption level

Does anyone know what type of encryption (salt+string) used by .net Indentity. Our security folks want us to use at least SHA256. I know I can override their encrption. But would rather stick with what comes out of the box if possible.
1
vote
1 answer

wso2 identity: how to implement and use custom authenticator?

i have a question for WSO2 experts, maybe some devs from this team could also help. i'm looking for any tutorial, example or step-by-step description of how to create, deploy and use custom identity authenticator in WSO2. of course this should be…
1
vote
1 answer

Cannot insert explicit value for identity column in table 'UTILISATEUR' when IDENTITY_INSERT is set to OFF

I use Visual Studio 2013 with Sql Server 2012. I use this to generate views for my project. I have two tables: UTILISATEUR (ID_UTILISATEUR,CIN,NOM,PRENOM...,ID_ROLE): ID_UTILISATEUR is primary key and ID_ROLE is the foreign key. ROLE (ID_ROLE,…
1
vote
1 answer

Can I use Google+ Accounts For Identification In A Java Program?

I was thinking of using Google+ accounts for identification in my Java program, as an alternative to storing passwords(After watching: https://www.youtube.com/watch?v=8ZtInClXe1Q). Is this possible using the Google+ API's with a pure Java solution?…
Sarah Szabo
  • 10,345
  • 9
  • 37
  • 60
1
vote
1 answer

AppDomain ShadowCopy and impersonation - The specified user does not have a valid profile

I have an ASP.NET web application using impersonation with the following web.config entry:
Snixtor
  • 4,239
  • 2
  • 31
  • 54
1
vote
2 answers

Changing Asp.NET Identity Authentication to register email address, but never username

This link here lists model class and view class properties to change in order to prompt the user for email and password log in, rather than the default username and password required by Asp.NET Identity Authentication. However, it does not…
Rachael
  • 1,965
  • 4
  • 29
  • 55
1
vote
1 answer

WSO2 IS: How to use email AND username as login

I have a WSO2 IS server running with a ReadOnly LDAP user store. Some of the users in that store have an email as username, by default these users cannot login in applications using the IS's oauth2 endpoint. If I follow the instructions here [1] I…
1
vote
0 answers

Issue in SimpleSAMLphp integration with my application

Following is the code which I am using to integrate SAML into my application: require_once('../../sp_saml/lib/_autoload.php'); $as = new SimpleSAML_Auth_Simple('trunk-sp'); $as->requireAuth(); $attributes =…
Aneel
  • 31
  • 4
1 2 3
99
100