Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
4answers
6k views

IIS Express Windows Authentication

I'm trying to use IIS Express with VS2010 to host a silverlight application. I modified my applicationhost.config file to allow for modification of the proper configuration settings. I have the ...
15
votes
5answers
2k views

ASP.NET MVC3 and Windows Auth on IIS keeps redirecting to /Account/Login

I'm running MVC3 and a windows auth web application. When I deploy to IIS6 it runs great until I hit a page that requires authentication. It then is auto-redirecting to /Account/Login when I have no ...
14
votes
4answers
43k views

How to get the current user's Active Directory details in C#

I am working on an C# and ASP.Net application, that uses Windows Authentication. i.e. in Web.config: <system.web> <authentication mode="Windows" /> </system.web> I want to ...
12
votes
9answers
1k views

Hibernate authentication without passwords stored in plain text

My goal is to authenticate to the database using a JDBC/Hibernate in a secure manner, without storing passwords in plain text. Code examples appreciated. I'm already using waffle to authenticate the ...
11
votes
1answer
1k views

ASP.NET passing along Windows Authentication credentials

I've got an ASP.NET web application which uses Windows Authentication. This application needs to connect to another ASP.NET web service (which also uses Windows Authentication) and use the same ...
10
votes
7answers
5k views

Mixing Forms authentication with Windows authentication

I have an (ASP.NET 3.5) intranet application which has been designed to use forms authentication (along with the default aspnet membership system). I also store additional information about users in ...
10
votes
5answers
36k views

IIS7: Setup Integrated Windows Authentication like in IIS6

This is for IIS 7 on a Windows Server 2008 that is not part of an AD domain. I would like to password protect a website, where people have to enter a username/password (a windows account for example) ...
9
votes
4answers
177 views

Excel 2007 Pass-Through Windows Authentication

I've created a simple (asmx) web service which returns a DataSet. I've added the webservice to my Excel 2007 workbook using the Data -> From Web button and I'm able to view / refresh the data. The ...
9
votes
2answers
2k views

ASP.NET MVC - Authenticate users against Active Directory, but require username and password to be inputted

I'm developing a MVC3 application that will require a user to be authenticated against an AD. I know that there is the option in MVC3 to create an Intranet Application that automatically authenticates ...
9
votes
1answer
3k views

Connect and authenticate to SharePoint with WCF

I'm going nuts with this one and can't find any decent information ANYWHERE .. There is lots of info around about connecting to SharePoint 3.0 Web Services with WCF and Ntlm impersonation. However, ...
8
votes
1answer
1k views

Cross Domain SQL Server Logins Using Windows Authentication

I have a SQL Server 2005 named instance using Windows Authentication with domain groups serving as logins. The domain structures are as follows: Forest1 Forest2 / \ ...
8
votes
1answer
602 views

How to authenticate a user on the middle tier using Windows authentication

We have a server written in Delphi that uses RemObjects DataAbstract/SDK. We would like to use Windows authentication to authenticate users to allow them access to our server. Currently we do the ...
8
votes
2answers
804 views

Securing ELMAH while yet making it possible to access it via RSS Reader

We use ELMAH error exception logging in our application. I'd like to keep ELMAH secure from regular users while still making it available to administrators/developers of the application. When you ...
7
votes
1answer
834 views

Windows authentication mode in ASP.NET uses the Active Directory group name (pre-Windows 2000)?

Here is the background. I had an .NET MVC v1.0 project that I was trying to secure it by using Windows authentication mode. So I set the web.config to: <authentication mode="Windows" /> And ...
7
votes
6answers
4k views

Impersonate using Forms Authentication

I have an ASP.NET site that must use Forms Authentication and not Windows Authentication to access a ActiveDirectoryMembershipProvider. The site must use forms because they need a designed input form ...
7
votes
2answers
7k views

How can I pass windows authentication to webservice using jQuery?

I'm using jQuery to call a .Net web service like this: var service_url = "https://mysite.com/myservice.asmx" $.ajax({ type: "GET", url: service_url, ...
6
votes
1answer
1k views

Sign in as different user when using Integrated Windows Authentication

I have restricted access to a site by using Integrated Windows Authentication and turning off anonymous access. This way I can then show them their real name (from looking up on Active Directory and ...
6
votes
2answers
6k views

Run Code as a different user (C#)

Is there a way to tell my code to run as a different user? I am calling NetUserSetInfo via a PInvoke and I need to call it as a different user. Is there a way to do that?
6
votes
5answers
9k views

ASP.NET Windows Authentication logout

How do you logout when using Windows authentication in ASP.NET like this web.config? <authentication mode="Windows" /> I've already tried the following unsuccessfully. It redirects, but does ...
5
votes
1answer
453 views

Can I consume a WCF REST service using Windows Authentication without .NET libraries?

I have a WCF client hosted in IIS7 and a WCF service hosted in IIS7. The client is strictly http/javascript and I'd like to keep it that way. When I browse to the client webpage, I'm prompted for ...
5
votes
1answer
305 views

Wrong authentication after changing user's logon name

We have a user who recently changed name. Let's say the old username was old.name and the new username is new.name. After editing the details in AD and logout/login with the new user name, our ...
5
votes
2answers
1k views

Ntlm/Kerberos authentication in Django

I'm looking for a guide about adding windows authentication support into a django app, particulary OSQA I'm aware about http://code.google.com/p/python-ntlm/ And also saw this post: ...
5
votes
3answers
545 views

HowTo use Windows Authentication with MSSQL 2008+Delphi 7+ADO but users would still enter their password?

Does anybody know if it's possible to set up MSSQL 2008 to use Windows Authentication but users would still have to enter their windows password to log on (this would have to be accomplished by using ...
5
votes
1answer
897 views

What is the effect of <authentication mode=“windows”> in versions of IIS?

I am wondering what the effect of setting <authentication mode="windows"> in the web.config is in different version of IIS. I believe that in IIS 5, it has little to no effect, as all of that ...
5
votes
1answer
1k views

IE/IIS integrated authentication problem

In IIS I've got: http://myserver/myapplication http://myserver/reports The reports app is reporting services in fact which uses windows authentication. myapplication is an asp.net ...
5
votes
3answers
8k views

Silverlight RIA Services - how to do Windows Authentication?

I am building my first Silverlight 3 + RI Services application and need some help. It will be deployed in an controlled corporate intranet, 100% windows clients. I have started from the Silverlight ...
5
votes
4answers
2k views

Windows Authentication and Network Service account as a db_owner

There is a number of commercial products out there, that give you a windows based installers for configuring your app and the back end SQL Server DB. Typically it will ask if you want to connect to ...
5
votes
3answers
5k views

Using Windows Role authentication in the App.config with WCF

I am using a WCF service and a net.tcp endpoint with serviceAuthentication's principal PermissionMode set to UseWindowsGroups. Currently in the implementation of the service i am using the ...
4
votes
4answers
534 views

Authenticate Windows Authentication using Javascript

I have to transfer my client from one website to another website. This happens in client side. In this 2nd website, its using windows basic authentication system. So It popups the login window. I need ...
4
votes
2answers
488 views

Using Windows Authentication inside my own login form

I have WPF application that has a login form. I would like to make all existing windows users that belong to some specific group able to log into my application. So what I need is a way after the ...
4
votes
5answers
4k views

Receiving login prompt using integrated windows authentication

I have a .NET 3.5 application running under IIS 7 on Windows 2003 server and cannot get integrated windows authentication working properly as I continue to get prompted for a login. I have set Windows ...
4
votes
1answer
701 views

App pool identity versus impersonation identity?

I found only one thread relating to this but it did not answer the question. I'm curious to a link or explanation of the difference between setting an impersonation user via in the web.config ...
4
votes
3answers
964 views

How do I allow anonymous access to my IIS site, but use Windows Authentication to connect to SQL Server?

What I want to do is: Allow anonymous users to access my ASP .NET site. Use Windows Authentication for the site to access Sql Server. It will log in to Sql Server with a domain account set aside ...
4
votes
1answer
453 views

IIS 7 - Authentication in IIS vs Authentication in web.config

I'm relatively new to using IIS 7. I'm getting confused by the various options that IIS 7 provides. What does setting authentication mode="Windows" do in the web.config of my ASP.net site do? What ...
4
votes
2answers
261 views

How to impersonate another Windows user, when using Windows authentication?

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 ...
4
votes
1answer
488 views

Session Management with Windows Authentication

In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity? In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my ...
4
votes
2answers
3k views

HttpContext.Current.User is null even though Windows Authentication is on

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: <authentication mode="Windows"/> ...
4
votes
3answers
7k views

Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception

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 ...
4
votes
2answers
4k views

MS Access 2003 + linked tables to SQL Server 2005 + Windows Authentication = slow

Our MS Access application with linked tables to SQL Server 2005 is slow when using Windows Authentication from Windows XP clients. We've been running it successfully using SQL Server authentication, ...
4
votes
1answer
2k views

Windows Authentication and Forms Authentication together for ASP.NET

I am developing an internally-facing application that needs to automatically authenticate users via Windows Authentication and fall back to Forms authentication. The fall back would occur in ...
4
votes
4answers
8k views

SharePoint (WSS) Authentication Across Multiple Domains

First, a little background: We have an intranet site based on WSS 3.0 that is hosted on a server in *DOMAIN_A.LOCAL* and set up to use Integrated Windows Authentication to authenticate users against ...
4
votes
3answers
9k views

Add user to SQL Server 2008 - permission denied

I have recently had some problems that I think might be helped by debugging my ASP.NET MVC application in IIS instead of with the default ASP.NET Development Server. However, when I try this the ...
4
votes
2answers
3k views

How to authenticate users on one site and pass credentials to other site? ( Windows Authentication, ASP.Net)

We have multiple web-applications running Windows authentication.Users log on to the websites using Domain\Username which is different from the DomainOther\UsernameOther that they use on their local ...
4
votes
3answers
668 views

Web application to use window domain accounts for authentication

If you have a web application that will run inside a network, it makes sense for it to support windows authentication (active directory?). Would it make sense to use AD security model as well, or ...
3
votes
3answers
509 views

Windows authentication in MVC 3

I'm trying to set up Windows authentication in my web app, but I cannot make it work. The app run in my computer (Windows 7 x64), I am in a domain network, and the app is running on the real IIS, not ...
3
votes
1answer
210 views

Windows Authentication not working for classic ASP pages (but does work for ASP.Net pages w/in same site)

We have an IIS7 intranet site running under integrated pipeline that is mostly ASP.Net with a few legacy classic ASP pages. The site allows anonymous access to most areas, but uses Windows ...
3
votes
2answers
284 views

Windows authentication in asp.net mvc 3 hosted on Windows Azure?

I am migrating one ASP.NET MVC 3 intranet Website to the Windows Azure and DB to SQL Azure. On Premises my site uses Windows Authentication to authenticate and authorize the user(By Placing AUTHORIZE ...
3
votes
2answers
79 views

User name in asp.net

I tryed this ways: Request.ServerVariables["LOGON_USER"] or HttpContext.Current.User.Identity.Name or User.Identity.Name -- If i run it by F5 from VS2010, it runs OK. -- If i run it on IIS ...
3
votes
1answer
819 views

ASP.NET MVC and Windows Authentication with custom roles

I am trying to implement windows authentication in my ASP.NET MVC2 application. I've followed all the steps suggested by the official documentation: <authentication mode="Windows" /> ...
3
votes
2answers
375 views

problemwith tab index in windows application user control

I create an user control that has some textbox and buttons.the problem is when I use tab to traverse in My form when my usercontrol get focus the focus go inside of user control and buttons insid if ...

1 2 3 4 5 11