active questions tagged windows-authentication - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T08:36:41Zhttp://stackoverflow.com/feeds/tag/windows-authenticationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1527296/how-do-i-use-my-login-rather-that-my-machine-name-with-windows-authentication-to0How do I use my login rather that my machine name with Windows Authentication to a SQL Server under Web Setup?chazlarson2009-10-06T18:32:30Z2009-12-20T05:22:19Z
<p>I've got a Web Setup project installing a web app. In a Custom Action, I'm executing a SQL script to build a database.</p>
<p>Simple, mostly MS sample code. Works fine.</p>
<pre><code>private void ExecuteSql(string serverName, string dbName, string Sql)
{
System.Data.SqlClient.SqlConnection masterConnection = new System.Data.SqlClient.SqlConnection();
masterConnection.ConnectionString = "Server=" + serverName + "; Database=" + dbName + ";Integrated Security=SSPI";
System.Data.SqlClient.SqlCommand Command = new System.Data.SqlClient.SqlCommand(Sql, masterConnection);
Command.Connection.Open();
Command.Connection.ChangeDatabase(dbName);
try
{
Command.ExecuteNonQuery();
}
finally
{
Command.Connection.Close();
}
}
</code></pre>
<p>The problem is that the user that is being sent over to the SQL Server is "DOMAIN\MACHINENAME$", like "AMBER\CHAOS$" rather than "AMBER\corwin".</p>
<p>If I add "AMBER\CHAOS$" as a login on the SQL Server and give the user sufficient rights, everything works fine. That's not possible in the final environment.</p>
<p>So, what do I need to do to make my web setup connect to SQL server as "AMBER\corwin" rather than "AMBER\CHAOS$"?</p>
http://stackoverflow.com/questions/1134913/user-isinrole-fails-when-using-vs-2008s-debugging-web-server-on-windows-7-using3User.IsInRole fails when using VS 2008's debugging web server on Windows 7 using Windows Authholz2009-07-16T00:56:20Z2009-12-17T00:15:22Z
<p>When the following line is called when running a website from the VS2008's web server i get a "The trust relationship between this workstation and the primary domain failed." exception.</p>
<pre><code>if (User.IsInRole("SomeRole"))
...
</code></pre>
<p>I have turned UAC off, and set VS 2008, and it's built-in webserver, to run as an Administrator, and i have also rejoined my box to the domain. This code works fine if called from one of my Server 2003 boxes in IIS, and it always worked fine in Vista.</p>
<p>Any ideas on what may be causing this?</p>
<p>EDIT:</p>
<p>I just tried running it in IIS 7.5 on my local machine and i am getting the same error. Running it on Windows XP in IIS 5.1 and in the VS 2008 webserver works.</p>
http://stackoverflow.com/questions/1841410/windows-7-automatic-logon-policy-not-working-for-winhttp-api-vb6-activex-control0Windows 7: Automatic Logon Policy not working for winhttp API VB6 activeX controlYasir Laghari2009-12-03T17:11:30Z2009-12-10T15:40:44Z
<p>I'm using WinHttp to do POSTs in a VB6 activeX control as follows</p>
<pre><code>Set WinHttpReq = New WinHttpRequest
WinHttpReq.Open "POST", strUrl, False
WinHttpReq.SetAutoLogonPolicy AutoLogonPolicy_Always
aPostBody = 'Sometext'
WinHttpReq.Send aPostBody
UploadFile = WinHttpReq.ResponseText
</code></pre>
<p>This works great on windows XP (all versions of IE), but on windows 7 it sends back a 401 and Automatic Logon Policy doesn't work here (<a href="http://msdn.microsoft.com/en-us/library/aa383144%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa383144%28VS.85%29.aspx</a>) </p>
http://stackoverflow.com/questions/1868819/file-upload-in-flex-when-iis-is-set-to-integrated-windows-authentication0file upload in flex when IIS is set to 'integrated windows authentication'unknown (google)2009-12-08T18:11:58Z2009-12-09T21:53:22Z
<p>Hello,</p>
<p>I have a flex app that allows the user to upload a file. The flex side uses the FileReference.upload method that goes to an .aspx page that handles the upload. It works only intermittently when I have IIS set to integrated windows authentication. That said, for testing purposes,I wrote a separate aspx page that does a file upload and this always works....I'd like to leverage the file import,though, within the nice looking flex app and not kick off a new webpage for a file upload.</p>
<p>In looking at the IIS logs I have a hypothesis as to what's happening, and want to know if someone has full understanding as to why it may only intermittently work and can confirm or deny this:</p>
<ol>
<li>Flex' FileReference upload guts does whatever it does on the client then initiates a POST request to my .aspx page. On the times it failes, the IIS logs state that IE didn't pass the credentials so denies the request then sends a 401 response.</li>
<li>I don't get this 401 response on the flex side even though I'm listening for HTTP status codes (flash bug?). </li>
<li>A new request is somehow immediately made to perform the upload again (it's not my code). I'm inferring this by looking at the IIS lgos which shows a second POST right after the previous one, only this time the user credentials are sent through, but the kicker is that the file the user uploaded is not uploaded this time. I infer this by the fact that the IIS logs show 0 bytes are posted, whereas the previous 401 request show a lot of bytes are POSTed.</li>
</ol>
<p>On the times it does work, what happens is that the first request for the HTTP POST the FileReference makes so happens to send the windows credentials along, so the client is not challenged.</p>
<p>Can any body give any ideas on how to get the FileReference.upload to consistently work when integrated authentication is being used in IIS?</p>
<p>Chris</p>
http://stackoverflow.com/questions/1290004/cross-browser-windows-forms-logoff1Cross-browser windows forms logoff?Will2009-08-17T19:43:39Z2009-12-09T16:28:03Z
<p>Looking for a cross-browser way to log a user off a webpage which uses windows authentication.</p>
http://stackoverflow.com/questions/1862526/how-to-impersonate-another-windows-user-when-using-windows-authentication3How to impersonate another Windows user, when using Windows authentication?ProfK2009-12-07T20:04:48Z2009-12-07T20:07:28Z
<p>I have an ASP.NET application where only users authenticated by Windows (i.e. logged on user) have access to most pages. Now, my client wants to be able to 'log on' through this app, with a custom login dialogue/page.</p>
<p>Is Authentication the way to achieve this, and how do I go about it?</p>
http://stackoverflow.com/questions/1829727/authenticate-user-in-global-catalog1Authenticate user in Global CatalogWallstreet Programmer2009-12-01T23:39:15Z2009-12-04T21:43:19Z
<p>I need to authenticate user's Windows credentials, given a userId, domain and password. Our Active Directory contains multiple domains, some which we can list using the following code:</p>
<pre><code>var domains = System.DirectoryServices.ActiveDirectory.Forest.GetCurrentForest().Domains;
</code></pre>
<p>However, we also have users that belong to domains outside the forest. They are however accessible to me from the Global Catalog (GC). Below code allows me to get a directory entry for a userid.</p>
<pre><code>System.DirectoryServices.DirectoryEntry globalCatalogDE = new System.DirectoryServices.DirectoryEntry("GC://DC=nsroot,DC=net");
var ds = new System.DirectoryServices.DirectorySearcher(globalCatalogDE);
ds.Filter = "(&(objectClass=user)(sAMAccountName=" + userId + "))";
System.DirectoryServices.DirectoryEntry userDE = ds.FindAll()[0].GetDirectoryEntry();
</code></pre>
<p>How do I authenticate a user that belongs to a domain I can not directly access but is available to me in the GC?</p>
http://stackoverflow.com/questions/1847239/sql-server-and-windows-authentication-in-iis71SQL Server and windows authentication in IIS7gerrod2009-12-04T14:21:10Z2009-12-04T16:35:36Z
<p>I'm trying to get an ASP.NET website running on Vista (IIS7), using SQL Server and Windows Authentication. No matter what I do, when I connect to the database, I get the exception:</p>
<pre>
SqlException was unhandled
Login failed for user 'MyDomain\MachineName$'.
</pre>
<p>It doesn't seem to matter what settings I apply, I cannot get IIS7 to pass through my Windows login credentials.</p>
<p>Extra details:</p>
<ul>
<li>Both the SQL Server and my local machine are on ActiveDirectory</li>
<li>Vista Enterprise, IIS7</li>
<li>SQL Server 2005</li>
<li>Anonymous Authentication disabled, Windows Authentication enabled</li>
<li>Impersonation on/off makes no difference</li>
<li>All Identities (NetworkService, LocalSystem, etc) give the same result</li>
<li>Classic and integrated pipelines give the same result</li>
</ul>
<p>Help!</p>
http://stackoverflow.com/questions/1841978/change-username-programmatically-when-connecting-to-a-sql-server-using-windows-au0Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi applicationJosephStyons2009-12-03T18:40:02Z2009-12-04T15:06:58Z
<p>I have a Sql Server that uses Windows Authentication.</p>
<p>I want to connect to the server from a Delphi application.</p>
<p>By default, SQL Server will assume the credentials of the user that launches the connecting process.</p>
<p>This means that to change the login, I currently have two options:</p>
<ol>
<li><p>Log off and Log in as the desired
user, then run my application</p></li>
<li><p>Launch the program from the command
line using the RUNAS command.</p></li>
</ol>
<p>I'd like to let the user provide credentials from within the application, and log in as that user. Is this possible, either by manipulating the ConnectionString or by programatically changing the user of the current process?</p>
<p>The closest I've found is <a href="http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q%5F21637479.html" rel="nofollow">this entry</a>, which tells me how to launch <strong>another</strong> process under specific credentials. I could use that technique to create a "launcher" program that launches the connecting process after gathering credentials from the user, but I'd really like something cleaner.</p>
<p>I'm using Delphi 2010 for this project.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1842028/how-can-i-use-integrated-windows-authentication-when-debugging-locally-with-visua0How can I use integrated Windows Authentication when debugging locally with Visual StudioKevin Babcock2009-12-03T18:48:01Z2009-12-03T21:18:12Z
<p>I'm using RESTful WCF services to serve data to a client. The application hosting the services requires integrated Windows Authentication on the server, making testing locally in Cassini quite difficult. I use the following behavior configuration for my service, which works great when deployed to IIS with Integrated Security turned on.</p>
<pre><code><webHttpBinding>
<binding name="InstaCheckServiceWebHttpBinding">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" />
</security>
</binding>
</webHttpBinding>
</code></pre>
<p>But with this configuration the app throws the following error when I try to call the web services when debugging locally in Visual Studio.</p>
<p><em>Security settings for this service require 'Windows' Authentication but it is not enabled for the IIS application that hosts this service</em></p>
<p>Is there a way to include integrated Windows Auth when using Visual Studio's built-in web server, or some other workaround to this issue?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1829762/asp-net-windows-authentication-loggin-off1ASP.NET Windows Authentication - Loggin offXavier2009-12-01T23:47:25Z2009-12-02T01:27:30Z
<p>Hi Guys,</p>
<p>I have an ASP.NET application using Windows Authentication.
At the moment the only way for a user to log-off the application is to close the browser (it is a pain because closing the tab itself is not enough).</p>
<p>I would like to have a log-off button so make it easier to log-in as a different user.</p>
<p>Is it possible at all (IE and/or Firefox)?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1828001/encrypting-windows-authentication-connection-strings2Encrypting Windows Authentication connection stringszsharp2009-12-01T18:32:53Z2009-12-01T19:57:10Z
<p>I am accessing an SQL Server database using Windows Authentication</p>
<ol>
<li>Do I need to encrypt the connection string in the web.config?</li>
<li>Does the name of the connection string (or database) matter in terms of security? (viz: <code>ApplicationServices</code>?</li>
</ol>
http://stackoverflow.com/questions/1825539/windows-authentication-testing-for-different-users0Windows authentication - testing for different usersarame33332009-12-01T11:20:30Z2009-12-01T12:04:45Z
<p>My application does not have any roles.
However I use windows authentication to stop anonymous users from accessing the webpages.
I need to test different users using the system.
I do not want to know different users passwords and I cannot set up dummy users in Active Directory.
So how do I do this?</p>
http://stackoverflow.com/questions/1508295/thread-currentprincipal-identity-vs-active-directory-entry0Thread.CurrentPrincipal.Identity vs. Active Directory entrydavek2009-10-02T08:20:57Z2009-11-29T01:00:01Z
<p>In this extremely helpful summary from Mike O'Brien</p>
<p><a href="http://blog.mike-obrien.net/PermaLink,guid,5e975b20-7b05-472f-bd80-04028ab8b6fa.aspx" rel="nofollow">http://blog.mike-obrien.net/PermaLink,guid,5e975b20-7b05-472f-bd80-04028ab8b6fa.aspx</a></p>
<p>he gives an overview of how IIS 7 deals with authentication for different settings (I couldn't find a similar summary for IIS 6, which is the version we are using). We have set the authentication to Integrated Windows Authentication; anonymous access is turned off and I am not using impersonation. The asp.net app sits in an intranet, but I have no control (and very little knowledge) of how many domains there are, how they interact with each other etc.etc. According to the article above I should get the same user information for all three of:</p>
<pre><code>Thread.CurrentPrincipal.Identity
HttpContext.Current.User.Identity
Request.LogonUserIdentity
</code></pre>
<p>I <strong>do</strong> get the correct user, but the casing is different from the AD name. So my question is: if </p>
<pre><code>Thread.CurrentPrincipal.Identity
</code></pre>
<p>(which is what I am using) gives the right AD name, but displays a different casing to AD, is that most likely an issue with Thread.CurrentPrincipal.Identity, with the intranet/domain settings, or differences between IIS 6 & IIS 7?</p>
<p>(apologies for the vague nature of this question: I'm just trying to look for suggestions as where best to look and/or input as to whether there is something inherently unwise about using Thread.CurrentPrincipal.Identity).</p>
<p><strong>EDIT:</strong> update for IIS 6 - according to this link</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa302377.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa302377.aspx</a></p>
<p>I should be getting DOMAIN\username for IIS 6 as well, so no difference there. Could the issue be related to how Kerberos/NTLM interact with IIS?</p>
<p><strong>EDIT #2:</strong> The problem can be summarised thus:</p>
<p>I am displayed as e.g. DOMAIN\joebloggs in AD. I logged in as joebloggs. But the credentials I get back from a (successful) authentication using Thread.CurrentPrincipal.Identity show DOMAIN\JoeBloggs. Where could that be coming from?</p>
http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-20091How to get the current logged on user, including domain in Delphi 2009?Steve2009-11-26T14:08:30Z2009-11-27T12:41:25Z
<p>I need to get the current logged on username? I need this to work properly when I call the code from ASP.NET which is working in Windows Authentication mode. i.e. I do not want to get the ASPNET user in that circumstance, but the impersonated user. This is related to my earlier <a href="http://stackoverflow.com/questions/1797814/windows-authentication-in-a-com-object-called-from-asp-net">question</a>. Everything I try returns <strong>ASPNET</strong>.</p>
http://stackoverflow.com/questions/1793649/jmeter-with-windows-authentication1JMeter with Windows Authentication?Kyle Trauberman2009-11-24T23:21:17Z2009-11-26T13:28:14Z
<p>I am using JMeter to load test some pages that reside in a SharePoint 2007 Site. The farm that contains the pages resides in a different domain than the machine running the test, and uses Windows Authenticiation. The connection to the server is over an unencrypted (non-SSL) connection. Because of this, I need to pass login credentials to the server.</p>
<p>How do I configure JMeter to login to the server using windows authentication?</p>
http://stackoverflow.com/questions/1797814/windows-authentication-in-a-com-object-called-from-asp-net0Windows Authentication in a COM object called from ASP.NETSteve2009-11-25T15:44:56Z2009-11-25T18:42:13Z
<p>I have a COM object written in Delphi, which uses Active Directory Services to return the current logged on user. This is the code I use :</p>
<pre><code>var
SysInfo : IADsWinNTSystemInfo;
begin
SysInfo := CoWinNTSystemInfo.Create;
Result := SysInfo.DomainName + '/' + SysInfo.UserName;
end;
</code></pre>
<p>CoWinNTSystemInfo is just a wrapper around Activeds.dll and does the following :</p>
<pre><code>CreateComObject(CLASS_WinNTSystemInfo) as IADsWinNTSystemInfo;
</code></pre>
<p>This works fine when the COM object is called from another windows executable, but we have someone trying to call it in ASP.NET. Apparently, the code above returns the ASPNET user and not the impersonated user. The person using our component is pretty sure IIS is setup properly, as the same COM object uses SQL Server and windows authentication from within the COM object with no problems.</p>
<p>The following has been added to the web config</p>
<pre><code><authentication mode="Windows"/>
<identity impersonate="True"/>
</code></pre>
<p>IIs has Integrated Windows Authentication <strong>enabled</strong> and Anonymous Access <strong>disabled</strong></p>
<p>Is there any other way of doing this, or am I missing something.</p>
http://stackoverflow.com/questions/1260153/windows-authentication-in-iis-7-5-fails-with-trust-relationship-exception0Windows Authentication in IIS 7.5 Fails with Trust Relationship ExceptionSean Carpenter2009-08-11T12:53:04Z2009-11-25T00:14:31Z
<p>I have an ASP.Net 2.0 application that uses integrated Windows Authentication to authenticate/authorize users. The application works fine on Windows XP/IIS 5.1, Windows Server 2008/IIS 7, and Windows Vista/IIS 7. When I try to run this application on Windows 7/IIS 7.5, I get the following exception: <code>The trust relationship between this workstation and the primary domain failed.</code></p>
<p>The stack trace is as follows: </p>
<pre><code>[SystemException: The trust relationship between this workstation and the primary domain failed.
]
System.Security.Principal.NTAccount.TranslateToSids(IdentityReferenceCollection sourceAccounts, Boolean& someFailed) +1085
System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) +46
System.Security.Principal.WindowsPrincipal.IsInRole(String role) +128
System.Web.Configuration.AuthorizationRule.IsTheUserInAnyRole(StringCollection roles, IPrincipal principal) +229
System.Web.Configuration.AuthorizationRule.IsUserAllowed(IPrincipal user, String verb) +354
System.Web.Configuration.AuthorizationRuleCollection.IsUserAllowed(IPrincipal user, String verb) +245
System.Web.Security.UrlAuthorizationModule.OnEnter(Object source, EventArgs eventArgs) +11153304
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171
</code></pre>
<p>The web.config file contains the following information related to authentication/authorization:</p>
<pre><code><authentication mode="Windows" />
<authorization>
<!--Deny anonymous users-->
<deny users="?"/>
<allow roles="domain\GroupWithAccess"/>
<deny users="*"/>
</authorization>
</code></pre>
<p>Most of the results I found when researching this error state that the problem is related to a broken computer account in the domain and list the solution as re-joining the domain. I've done this but the error still appears. "Normal" domain operations work fine (accessing UNC shares, logging in, etc.).</p>
<p>This application runs in the Classic .Net AppPool for compatibility reasons. I tried changing the identity of the AppPool to "NetworkService" but the error still persists.</p>
<p>Any help is greatly appreciated.</p>
http://stackoverflow.com/questions/1745875/session-management-with-windows-authentication2Session Management with Windows AuthenticationAviD2009-11-17T00:40:53Z2009-11-17T01:53:36Z
<p>In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity?<br>
In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my session, is this stuff accessible by session id alone? For instance, if a malicious someone managed to steal my session id, but NOT my credentials, can he then access my session stuff? Or is this session accessible only to the same identity, requiring <strong>both</strong> the session id AND the windows identity to access it? </p>
http://stackoverflow.com/questions/1745077/hosted-silverlight-lob-application-authentication-models0Hosted Silverlight LOB Application - Authentication Modelskmacmahon2009-11-16T21:49:08Z2009-11-16T22:46:23Z
<p>Our application is built in VB6 and delivered in a SaaS model via Citrix.</p>
<p>Our subscribers must first authenticate to the Citrix Login Portal (AD) which gives them access to their applications. Each application has its own local user repository so except for where we've implemented some single sign on strategies, the user must enter a second layer of credentials.</p>
<p>Now, consider that we intend to replace the Citrix Portal with a Sharepoint Service Portal that will allow us to publish .net content while maintaining a Citrix Web for the legacy applications.</p>
<p>We are developing a Silverlight Application (using RIA Services) that will connect to a SQL Database (where user login and security permissions are contained). We first stubbed out the application using Forms Authetication, however, that lead to a debate regarding our intended deployment model.</p>
<p>To utilize this application, you must have first authenitcated into the Sharepoint site using your windows credentials, so this leads to the argument that the application must be configured for Windows authentication. If you try to deep link into the application without authenticating to the portal, you must be redirected to the portal login page.</p>
<p>What is the best approach for implementing the second layer of authentication into the application? Is there a means to keep using forms based but prevent access to the application if the user didn't first authenticate to the portal?</p>
http://stackoverflow.com/questions/1744325/how-to-control-access-to-third-party-html-pages0How to control access to third party HTML pagesWylie2009-11-16T19:30:18Z2009-11-16T19:48:00Z
<p>Hello,</p>
<p>We have a Learning Management System (LMS) that runs on its own server (IIS/Server 2003). Students must login with Forms authentication to gain access to the content. We want to offer access to third party flash and audio that is embedded in HTML pages hosted on the third party server (IIS/Server 2003). Currently we use a frame in a pop-up window that is populated via a simple URL to the third party HTML pages.</p>
<p>How can the third party control access to their content, so that only students who launch the pop-up windows from our site can access their content? Since the content is mostly video and flash, we would prefer not to stream all of their content through our server to the Student.</p>
<p>We have a programming staff, so we could maybe...<br>
- either post or get for our HTTP request to the third party server<br>
- we could use SSL<br>
- we could programmatically assign a global NT user account to all of our users and then do some kind of Active Directory login from the LMS server to the third party server<br>
- could the third party content be hosted at Amazon S3? Would this allow for secure access/download?</p>
<p>These are just ideas. We really have no idea. Any suggestions would be greatly appreciated.</p>
<p>TIA,
Wylie</p>
http://stackoverflow.com/questions/1694020/integrate-windows-domain-authentication-with-an-external-web-site0Integrate Windows domain authentication with an external web site.camelCase2009-11-07T18:50:44Z2009-11-16T03:05:06Z
<p>I am a small time internet hosted app (SAAS) developer, when I launch I expect most of my customers will authenticate (login) to my application using the standard email + password technique.</p>
<p>However I would like to offer a better single sign-on option for larger customers who will have ready-made communities of potential users of my system. Such communities will often be running Windows desktops that are already authenticated against an in-house corporate Windows domain controller.</p>
<p>I am looking for some option to enhance my web site user authentication process and trust or delegate to the customer's domain authentication. I would be very much the junior partner in any such integration so I doubt a large corporate is going to allow me to run a satellite domain controller hooked to their system. The economics of the SAAS app won't allow for hardware VPN circuits.</p>
<p>The Azure cloud will probably be used to host my SAAS app if that helps clarify the options.</p>
http://stackoverflow.com/questions/1734049/remotely-authenticating-client-windows-user-on-demand0Remotely authenticating client Windows user on demandAdam Paynter2009-11-14T11:57:12Z2009-11-15T16:45:41Z
<p>Suppose I am writing a server for a particular network protocol. If I know that the client is running on a Windows machine, is it possible for my server to authenticate the Windows user that owns the client process that initiated the connection independently of the network protocol in question?</p>
<p><strong>Rationale</strong></p>
<p>I actually wish to write an FTP proxy server. Clients would connect to the proxy with their desired server user name and a bogus password. The proxy would then authenticate the Windows user that is running the FTP client (via some mechanism apart from the FTP protocol). After authenticating the Windows user, the proxy would then determine if that Windows user may connect to the real FTP server as the user name they provided via their FTP client.</p>
<p><strong>Conditions</strong></p>
<ul>
<li>Both the clients and the proxy will be within the same firewall and no client will be hidden behind NAT (allowing the proxy to connect back to the client if necessary).</li>
</ul>
http://stackoverflow.com/questions/1702557/asp-net-windows-authentication-impersonation0ASP.NET Windows Authentication ImpersonationAdam Berent2009-11-09T17:37:11Z2009-11-09T17:57:03Z
<p>I am trying to figure out how to implement an ASP.NET page with Windows Authentication without getting that annoying IIS login box. </p>
<p>I currently have 3 domains in my network so all the people logging in would have to prefix their user names with the domain. This is not user friendly. I would like to have a custom login page that would have a domain combo box. </p>
<p>Most examples I found implement this using Form security, however I need Windows Authentication since I want to connect to the SQL server using Integrated Authentication rather than a hard coded user name and password.</p>
<p>Does anyone know of a good article or sample code that shows how to implement this?</p>
http://stackoverflow.com/questions/1618289/how-to-get-web-site-users-windows-login-name-from-stored-procedure-invoked-throu0How to get web site user's Windows login name from stored procedure invoked through websiteSung Meister2009-10-24T15:35:21Z2009-11-08T10:10:31Z
<p>I have a web page that runs under an account named, <code>WebUser</code> (IIS runs under this account)</p>
<p>Now the problem here is that, when the webpage is accessed by users (intranet), <br />
users are authenticated through <em>Windows Authentication</em>.</p>
<p>The webpage calls a stored procedure, <code>SaveClientInfo</code>.
When I was trying to get the user's name (say, <strong>User1</strong>) who was calling <code>SaveClientInfo</code>, <br />
I was getting <strong>WebUser</strong> instead of <strong>User1</strong> through <a href="http://msdn.microsoft.com/en-us/library/ms179930.aspx" rel="nofollow"><code>SYSTEM_USER</code></a></p>
<p><strong>Is there a way to get <em>User1</em> from <code>SaveClientInfo</code> without having to pass in the user name to the stored procedure?</strong></p>
<p>Here is the relevant piece of sproc definition</p>
<pre><code>create procedure SaveClientInfo
@ClientID int
... --; other parameters
as
begin
declare @UserName sysname
--; returns the name of user name that IIS runs under
--; But I would like to log the name of the person
--; who is accesing the site through Windows Authentication
select @UserName = SYSTEM_USER
--; Save client data and the person who saved the info
...
end
GO
</code></pre>
http://stackoverflow.com/questions/1685197/narrowing-integrated-windows-authentication-to-a-subset-of-users-for-an-intranet0Narrowing Integrated Windows Authentication to a subset of users for an intranet ASP.Net applicationtribus2009-11-06T03:17:41Z2009-11-06T05:15:19Z
<p><strong>Scenario:</strong> An intranet ASP.Net application using Integrated Windows Authentication and a SqlRoleProvider for authorization. The application is used by a small subset of users within the domain.</p>
<p>If there are only a few users within the domain that should be able to access the application, can IWA be narrowed to allow authentication for that subset of users only, say via a domain group? Is this possible or even logical? This would certainly be the case if you predefined user accounts and used forms authentication. I understand that you can manage authorization within the application but wonder if the above is possible to add some security in depth. Appreciate your thoughts.</p>
http://stackoverflow.com/questions/1680058/wcf-call-with-windows-authentication1WCF call with windows authenticationShiraz Bhaiji2009-11-05T11:47:49Z2009-11-05T12:03:45Z
<p>We have a system where the users access a web server, the web server then calls a WCF service.</p>
<p>We would like the call to the WCF service to be made in the security context of the windows identity of the application pool on the web server.</p>
<p>What is the best way to do this? Can it be done purely through configuration in the web.config file.</p>
<p>Thanks</p>
<p>Shiraz</p>
http://stackoverflow.com/questions/1678216/connect-to-sql-server-with-management-studio-using-a-windows-credential-while-not1Connect to SQL Server with Management Studio using a Windows Credential while not on the domainitchi2009-11-05T03:45:17Z2009-11-05T03:58:03Z
<p>I have a client that has a SQL Server 2008 installation. They have given me a windows domain username/password on their domain, however, my workstation is not on their domain. I'm trying to connect with Management Studio on Vista Professional.</p>
<p>I've tried using the "network accounts" under "user accounts", and this works for other resources (such as exchange, TFS, and file servers) but I have had no luck with this approach for SQL Server.</p>
<p>Also, I'm unsure if this is a concern but this is a dev instance on their database server. So the connection string is "Computer_Name\Instance".</p>
<p>A further question: how could I get Integrated Security for asp.net through cassini/Visual Studio 2008.</p>
<p>So far my only solution is to cave and use a SQL Server Login. I'd like to know if I have any other options.</p>
http://stackoverflow.com/questions/1662463/lock-down-a-site-using-forms-auth-in-iis7-with-windows-auth0Lock down a site using Forms Auth in IIS7 with Windows AuthJosh2009-11-02T17:02:07Z2009-11-02T21:34:10Z
<p>I've posted this on <a href="http://serverfault.com/questions/80570/lock-down-a-site-using-forms-auth-in-iis7-with-windows-auth">Server Fault</a>, but as there is sort of a programming aspect to it, I'll post it here too.</p>
<p>I have an ASP.NET MVC 1.0 application that uses Forms Authentication. We are using Windows Server 2008. I need to lock down the site so that only certain users (in AD Groups) can access the site. Unfortunately, though, when I set the site to not allow anon users and use windows authentication, due to the integration of the site and IIS, it shows the user as signed in as their domain account, instead of allowing them to sign in through Forms Auth.</p>
<p>So, I need a mixed mode authentication. I need the site to be only accessible through windows auth, without anon users, but once you are in, it needs to use forms auth only. How would I go about doing this the right way?</p>
<p>EDIT:</p>
<p>Here's a clarification. The site must work like this.</p>
<ol>
<li>You go to the URL and a windows auth login pops up. You sign in with a domain accout that has access. If you don't have access, it shows you the 401 error.</li>
<li>If you have access, you hit the site. However, the site doesn't use your windows auth username. It uses forms Auth. So, you have to sigh in to the site using the forms auth.</li>
</ol>
<p>The problem is, when I set it up to do step 1, it uses your windows username in step 2. I don't want it to do that.</p>
http://stackoverflow.com/questions/1663535/httpcontext-current-user-is-null-even-though-windows-authentication-is-on0HttpContext.Current.User is null even though Windows Authentication is onPatrick Szalapski2009-11-02T20:37:23Z2009-11-02T20:58:53Z
<p>In IIS7 under Windows Server 2008, I have a virtual directory with anonymous access off and Windows authentication on. In my web.config, I have:</p>
<pre><code><authentication mode="Windows"/>
<authorization>
<allow roles="MYGROUP"/>
<deny users="*"/>
</authorization>
</code></pre>
<p>and</p>
<pre><code><system.webServer>
<!-- IIS7 security settings -->
<security>
<authorization>
<add accessType="Deny" users="*"/>
<add accessType="Allow" roles="MYGROUP"/>
</authorization>
</security>
</system.webServer>
</code></pre>
<p>Yet when I access default.aspx from IE and set a breakpoint in Global.asax.vb Application_AuthenticateRequest(), I get a null HttpContext.Current.User where I am expecting my own identity. It is almost as if Anonymous Access is on?</p>
<p>What can I do to troubleshoot this? Everything seems to work in IIS6.</p>