Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

SQL Server Management Studio 2008 Runas user on different domain over VPN

I am currently trying to run SQL Server Management Studio 2008 as a user who is on a different domain. I noticed in other threads that running the following command from a batch script will do this ...
5
votes
1answer
444 views

Excessive HTTP 401s using Windows Authentication, AJAX, ASMX and external ISA

Enviornment: ASP.NET WebForms .NET 3.5 jQuery for AJAX ASMX web services Windows Authentication SSL When we run our production web application, our AJAX calls often have 2-3 HTTP 401s before ...
4
votes
1answer
409 views

Windows Server 2008, IIS7 and Windows Authentication

We currently have a development server set up which we are trying to test some Windows authentication ASP.NET code on. We have turned on Windows Authentication in IIS7 on Windows Server 2008 R2 fine, ...
3
votes
2answers
2k views

How to check whether a user belongs to an AD group and nested groups?

I have an ASP.NET 3.5 application using Windows Authentication and implementing our own RoleProvider. Problem is we want to restrict access to a set of pages to a few thousand users and rathern than ...
2
votes
3answers
2k views

How get Current Username and password from windows operating System

Story :- I have a motherboard CD provide by Intel original motherboard.When i try to install drivers it will be ask enter username and password of your administrator account. after Evetry driver ...
2
votes
0answers
207 views

How to configure CruiseControl.Net for Windows Authentication?

I am using CruiseControl.Net for continuous integration which is now accessing the dashboard through login plugin, which in turn is authenticating and authorizing after verifying it with a set of ...
1
vote
2answers
173 views

ASP.NET: windows authentication against production server

This is a real quick question, is it possible to allow Windows Authentication for an ASP.Net intranet site (on a test server) to authenticate against the production server user accounts? If so, how ...
1
vote
1answer
945 views

hosting WCF service in IIS with windows authentication and without anonymous access

I would like to use WCF service hosted in IIS (5/6) with integrated windows authentication enabled and anonymous access disabled. I tried to do this by following this article ...
1
vote
4answers
646 views

Can I set up Windows Authentication in WebMatrix Beta 2?

I have an ASP.NET site where authentication mode="Windows". Just downloaded WebMatrix beta 2 yesterday, trying to debug my app. In WebMatrix, I'm getting 401 errors after pressing F5 in Visual ...
1
vote
1answer
222 views

How to convert from asp.net forms authentication to windows authentication

I've been asked to convert an asp.net application from forms authentication with roles using the aspnetdb database to use windows authentication instead. what is required to do this? can I still use ...
1
vote
1answer
340 views

IIS7 & WIndows Authentication - authenticating to the wrong domain

I have an IIS 7 web app that is using Windows authentication. Currently, everything is set up correctly based on all that I've been able to find on the web. What's happening is when a user tries to ...
0
votes
0answers
67 views

WCF Moniker with Windows Authentication

We call a WCF Service (IIS hosted, wshttpBinding, SSL) from Microsoft Office (VBA). We call the service from MS Office Word with a WSDL-WCF Moniker string in VBA, and it works stable if we configure ...
0
votes
1answer
80 views

Windows Authentication for MS Access 2007 and MS Access 2010

I want to apply Windows Authentication on my MS Access database 2007 and 2010. Firstly i want to know if this is possible? If yes then please provide me step by step instruction of setting it up. If ...
0
votes
0answers
24 views

LogonUser() returns true for non existing users on windows xp

void *LHandle; Retvar = LogonUser( "USER" ,".","PASS",LOGON32_LOGON_NETWORK ,LOGON32_PROVIDER_DEFAULT ,&LHandle ); It works ok if i provide a valid username, but if i use a non existing ...
0
votes
1answer
85 views

What do you Need for Windows Authentication Pass through on an MVC website and WCF

Ok. I have an MVC2 application that accesses a WCF program, and uses that information to populate its model and so forth. I am unsure of everything I need to get this through? I have Impersonation ...
0
votes
2answers
100 views

MVC3 Forward to Forms Auth site after authenticating Windows User

I have a MVC3 website that right now uses Forms Authentication and it functioning great. The site requires client internet users to have a log in that we provide. In addition, I have a few internal ...
0
votes
1answer
146 views

invalid mscorlib exception in custom security attribute c'tor

I'm trying to implement my custom security attribute. It's very simple for now [Serializable] [ComVisible(true)] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, ...
0
votes
0answers
215 views

Global.asax - WindowsAuthentication_Authenticate - SessionState null and Multiple Calls

This is an internal application that uses windows authentication. In WindowsAuthentication_Authenticate method, i am getting the logged in user from the db. If the user is not found or marked as gone ...
0
votes
0answers
161 views

sql server windows authentication

I was previously using a web application which connects the dataabase as user instance using windows authentication. Now I want to change the user instance into normal SQL Server instance, I have also ...
0
votes
1answer
137 views

SQL Server SMO on IIS with Windows Auth

I'm getting a strange error when I enable windows authentication on IIS and try to run some database update scripts: Invalid token for impersonation - it cannot be duplicated. I have not ...
0
votes
1answer
4k views

“Argument: NotFound” error using Windows Authentication for Silverlight

A SL app created with SL Business Application template. Then Config it use Windows Authentication in web.Config as: <authentication mode="Windows"> </authentication> Code in ...
0
votes
2answers
608 views

NTLM Authentication fails ONLY with IE against 2k8 App server behind 2k8 IIS7 Reverse Proxy

I'm developing an ASP.NET application for an intranet site that is using Windows/NTLM/WIA/whatever authentication. The application is hosted on a Windows 2k8 server but is accessed through a Reverse ...
0
votes
1answer
272 views

Windows Authentication for winforms with Windows 2000

I use the following code to validate users through windows authentication for my winform application. This works fine with windows XP but when the user is using windows 2000, it says that the userid ...
0
votes
1answer
494 views

System.Windows.Forms.WebBrowser login dialog doesn't appear

When I navigate to an intranet site requiring windows authentication, the WinForms WebBrowser control isn't displaying a login dialog. But it will display (after refreshing the page) if I first open ...
0
votes
1answer
46 views

Using IPrinciple.Identity.Name as a key in a dataBase to identify user's rows

I'm writing a small intranet app that uses Windows Authentication and Asp.Net MVC. I need to store various bits of data in a db against each user. As far as I can tell the IPrinciple object does not ...
0
votes
1answer
654 views

Anybody have any success getting around IIS7 issues with WiX 3.5?

WiX 3.5 still is having issues with creating websites in IIS7. I can get around most of them, but I'm getting hosed by the inability to configure the website authentication mode. Traditionally, you ...