Integrated Windows Authentication is a term associated with Microsoft products that refers to the SPNEGO, Kerberos, and NTLMSSP authentication protocols.

learn more… | top users | synonyms

0
votes
1answer
19 views

Windows authentication username and password when trying to access MVC4 app in IIS6

I have just been banging my head against a brick wall all afternoon with this annoying problem. My deployed MVC app wasn't working on my server. When I tried to access the site I was getting the ...
-1
votes
1answer
15 views

ASP.net Forms authentication not working on iis

i working on windowsbased authentication my config looks like this web.config authorization allow roles="Administrator" allow roles="SuperUser" /> deny users="*" authorization in ...
0
votes
0answers
10 views

Deploying MVC 3 website on Windows Server 2003 with Windows Authentication

I have deployed an MVC 3 website on IIS of my Windows Server 2003 edition. I have set the authentication to Basic, Integrated, and Windows in order to enable site to use Windows authentication, and ...
3
votes
1answer
28 views

Why use FormsAuthenticationTicket with Windows Authentication?

I've been reading a ton of stuff online about authentication and authorization and finally settled on some code that seems to be working...but I don't fully understand everything that it's doing (as ...
0
votes
1answer
19 views

Slow performance using local impersonation on ASP

I'm working on a large web application running under IIS 6.0 and connecting to an SQL Server 2005 database. I'm currently trying to connect to the database using Windows Authentication to properly log ...
0
votes
0answers
7 views

iis service account in form authentication app

my application is form authenticated. However to connect to SQL i need to use the iis account. So how do i get the iis service account information while creating the connection string. My connection ...
4
votes
0answers
76 views

Sign in as Different User in asp.net?

I am trying to implement "Sign in as different user" on windows authentication asp.net web site. I followed this blog Sign in as Different User. Everythig is fine except Cancel button. When user ...
0
votes
0answers
10 views

TideSDK and Windows Authentication secured resources

I would like to access a windows authentication secured resource on an IIS Server from my WebApplication. I always get an "401.2 - Unauthorized" back from Server. Is there a way to use integrated ...
0
votes
1answer
12 views

ASP.Net WebForms using Windows Authentication

I'd like to play about with WindowsAuthentication but am seemingly falling down at the first hurdle. So I created an empty ASP.Net Webforms app and amended the web.config as so: ...
0
votes
1answer
11 views

CORS with Windows Authentication (NTML)

I've run into the CORS issue when doing an xhr request to a different domain (in my case, localhost to another server). This blog describes the various issues I've run into : ...
0
votes
1answer
28 views

Prompting for credentials on saving data

I am developing an ASP.Net MVC4 app that uses windows authentication. One of the requirements of the app is to prompt for credentials when an item is edited, even though the app is already aware of ...
2
votes
0answers
33 views

Windows authentication on Sharepoint

Update: OK, this is solved now. The code does work, but the permissions on the Sharepoint server have turned out to have gone awry. So that's a relief. I'm using VBA to send a request from Excel ...
0
votes
1answer
38 views

Windows authentication doesn't works when I run project from Visual Studio

Windows authentication works good when I host my ASP.NET MVC project on IIS. But if I run this from Visual Studio - it doesn't. Here is my Web.config: <authentication mode="Windows" /> ...
0
votes
0answers
25 views

Where will windows based authentication for my asp.net MVC web application, fail to allow users from accessing the web application

My requirements are:- To build an asp.net MVC web application to use windows based authentication, since all the users which will be accessing the application are our internal employees, and they ...
0
votes
0answers
16 views

IIS Application Pool Identity oddity

I was tinkering with a asp.net test website on my dev server trying to get an app to use Windows Auth and also connect to SQL Server....anyway I think I changed a setting somewhere, and I'm not sure ...
-1
votes
2answers
37 views

Login to windows authenticated domain when not connected to domain [closed]

I have an ASP.NET Windows Authenticated application. When I am in my office, I can connect to this application without any issues, as I am logged into the domain and connect through my local server ...
0
votes
0answers
27 views

Binding Image ImageSource to URL breaks HttpClient NTLM Handshake

I have a .NET 4.5 WPF application which displays a number of icons in a grid - those icons are loaded through setting the ImageSource of an Image control to a specific URL (no authentication ...
0
votes
2answers
52 views

MVC 4 / IIS 7.5 - Prompting for windows authentication credentials

I have a MVC4 application which is using Windows Authentication. Both my computer (developing) and the host server are running IIS 7.5 and are on the same domain. The application has it's own app pool ...
0
votes
1answer
23 views

3 requests for every resource (2 x 401.2 and 1 x 200) in a windows authenticated asp.net mvc app

I was trying to track down why my site was so painfully slow in IE9 when I pulled out Fiddler and realised that every request is being sent 3 times (twice I get 401.2 and then a success). I verified ...
0
votes
0answers
24 views

sharepoint 2013 webpart is not shown to fba user

I have a strange problem. First let me introduce environment. We are 2 people developing same sharepoint on same machine with different users and we are using SVN to merge our projects. We are both ...
0
votes
0answers
19 views

Windows authentication in asp.net app with roles

I was searching for resolving this problem for two days, and i see all posts here, but nothing helps me. I'm trying to make Windows authentication in intranet app. We have groups in AD with different ...
0
votes
1answer
38 views

HTTP Error 401.2 - Unauthorized for new site in a working app pool

I am deploying a new EF 4.0 ASP.NET MVC 4 site to an IIS 7.0 server but I'm getting an error that says: "HTTP Error 401.2 - Unauthorized You are not authorized to view this page due to invalid ...
0
votes
0answers
20 views

Is User Control level authorization possible on Intranet application in asp.net webform?

After a long googling, I found that Windows Authentication is the only solution for my Intranet Application (using ASP.Net 3.5 Web Forms). However for authorization, I failed to find out if User ...
0
votes
1answer
79 views

web api windows authentication unauthorized on foxxl

I hope somebody can help me with the following issue, I have been working on a mvc4 web api running on .net 4.0 and ef code first. I am trying to use basic authentication in combination with the ...
0
votes
0answers
24 views

how to customize windows login authentication method

I want to add more functionality to windows login screen, like adding 2 factor authentication and like this, is it possible in windows? and how can I get such api. note that I need a c++ api
0
votes
0answers
29 views

Calling MVC Web Api With Windows Authenctication

Currently, we have a web service base on MVC4 Web Api, and is hosted on a windows server. The web api use windows authentication. I try to use below code, but get the http 401 error. How can I pass ...
1
vote
1answer
32 views

Disable Remember Password of browser in ASP.NET windows auth mode

How we can disable 'Remember Password' of browser in ASP.NET application while we are using windows authentication mode? and is it possible that we can handle it through code?
0
votes
0answers
26 views

Windows Authentication Single Sign-On with SQL Server and Liquibase?

Liquibase requires a username and password as parameters. Has anyone been able to get Windows domain authentication to their SQL Server database with Single Sign-on working with their Liquibase ...
0
votes
0answers
29 views

Service HTTP Post is receiving “Existing Connection Was Forcibly Closed”

I have a windows service that I am trying to get running on a server. It just posts data to a php page and has further logic based on the response back. This works 100% on my machine and 100% on the ...
-4
votes
1answer
60 views

Windows Authentication in mvc 4 with validation to check the user should also exist in my DB [closed]

In my current project(MVC 4 ) we have to provide access to the users who exist in Active Directory. An additional validation also need to carry out to check whether user should also exist in my local ...

1 2 3 4 5 32
15 30 50 per page