ntlm

How to set up local copies of development sites with NTLM authentication

I'm a developer on a site that uses NTLM (Windows integrated) authentication. It's a Coldfusion-based intranet. Authentication is to the Active Directory domain. The site is deployed on IIS 6, and I'm trying to work with a development copy of it on my Vista development box, running IIS 7. I have enabled Windows Authentication and d...

Why is kerberos defaulting to NTLM in WCF?

Got a simple WCF demo app that has two console projects--host and client. Both are running on my machine (win 7 box). I'm using the netTcpBinding, which uses windows authentication. The issue is that authentication is downgrading to NTLM from kerberos, and I can't figure out why. If I use <clientCredentials> <windows all...

AutoProxy issue in Win 7 using NTLM authentication

We work in a network that uses a proxy server that accepts NTLM based and basic authentication. When I try to connect to an external IP from an app that I am creating, while running it on a Windows 7 machine, I get the following WinHttp error code 12152 (It sometimes happens from WinHttpRecieveResponse and sometimes from WinHttpSendRequ...

Caching of images and script in the _layouts directory

Hi all, I am trying the figure out why the images (or js, or css) in the _layouts directory are not cached by either IE or FF. The authentication on the site collection is NTLM. The _layouts folder has anonymous access enabled in IIS. If I debug with fiddler a page that has been loaded before, I can see the following requests: GET /...

Calling a WCF from ASP.NET with same the single-signon user LogonUserIdentity

I have a ASP.NET MVC page, which call WCF logic. The system is single-signon using NTML. Both the ASP page and the WCF will use the UserIdentity to get user login information. Other then NTML, I will also have a Form based authorization (with AD) in same system. The ASP page, is it simple and I can have it from HttpContext.Current.Req...

Connecting to NTLM/LDAP on local machine on workgroup

I am very new to NTLM/LDAP and trying to authenticate using NTML running on a local machine. The code provided by Microsoft ( http://support.microsoft.com/kb/326340/en-us ) seems to work, I just do not know how to connect to it. I know that the authentication service is running because Contos 8 has been set up to authenticate using NTLM...

Spring NTLM NtlmProcessingFilter do cache

does anyone tried doing cache for spring-ntlm NtlmProcessingFilter.java file so that every request no need to query from microsoft active directory to authenticate user ? how to implement such cache using ehcache ...

ntlm tomecat module on linux? http://tomcatspnego.codeplex.com/

Any one has experience with this? http://tomcatspnego.codeplex.com/ ...

Has anyone combined soap.py or suds with python-ntlm?

I'd like to replace an app's current (badly busted and crufty) cURL-based (cURL command-line based!) SOAP client with suds or soap.py. Trouble is, we have to contact an MS CRM service, and therefore must use NTLM. For a variety of reasons the NTLM proxy is a bit of a pain to use, so I'm looking into python-ntlm to provide that support. ...

Integrated Windows Authentication if the user cancels the request can I redirect them to another page?

On IIS6, using NTLM Authentication (meaning Integrated Windows Authentication) if the user cancels the authentication request, how can I redirect them to another page? I can't just grab 401 (tried) or 401.1 (not an int) in the web.config. I can't redirect if the issue is a 401 status because I'm intentionally pushing for a 401 to get th...

axis2 configuring ntlm on local computer

hello people, hello axis guru How configure axis2 ntlm authenticate on local computer?, My computer is not in domain, I am using local account for configuration axis2 List authSchema = new ArrayList(); authSchema.add(HttpTransportProperties.Authenticator.NTLM); HttpTransportProperties.Authenticator ntlmAuthentication = new HttpTranspo...

Sharepoint web services -- The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'.

I know there's a lot of questions on SO similar to this, but I couldn't find one for this particular issue. A couple of points, first: I have no control over our Sharepoint server. I cannot tweak any IIS settings. I believe our IIS server version is IIS 7.0. Our Sharepoint Server is anticipating requests via NTLM. Our Sharepoint Serve...

Calling IPrincipal.IsInRole on Windows 7

We use NTLM auth in our application to determine whether a user can perform certain operations. We use the IPrincipal of their current Windows login (in WinForms applications), calling IsInRole to check for specific group memberships. To check that a user is a local administrator on the machine, we use: AppDomain.CurrentDomain.SetPrinc...

NTLMSetUserInfo on Windows CE 6

I want to create my own user configuration utility targetted for WinCE6 in C++. All the NTLM functions (such as this one) require ntlmssp.lib which I cannot find. I have searched my Platform Builder directories but can only find the dll file not the lib. Can anyone shed some light on how I actually access these functions, or find the ...

single sign on using coldfusion with IIS version 5 using NTLM

Hi can anybody direct me on this and how does this get setup. I basically have an application that I want users to be automatically logged into when logging in windows using there id and password so basically they get authenticated to using my coldfusion application ? Any pointers would be greatly appreciated. Thanks :) ...

Ruby NTLM Library

Anyone have a good NTLM library recommend for Ruby? There is http://rubyforge.org/projects/rubyntlm/ but it has not been touched in quite a while. Update: I forgot to point out that I am looking for a client library. The service I want to use sits behind NTLM. ...

With IIS, how do I turn off authentication on WebResource.axd and other httpHandler "files"?

I have an IIS 6 server hosting a website that is authenticated with NTLM. I would like to turn on anonymous access to most resources, such as css, icons, and javascript. I noticed, using Fiddler, that an NTLM handshake is occuring for all resources pulled from WebResource.axd and other HTTP handlers I am using. How do I turn authentic...

Need Users to Re-authenticate with NTLM

I'm NTLM (authenication="windows" in the web.config) with an asp.net mvc 2.0 site. Right now once a user logs in it keeps them logged in for weeks at a time. The use of the application is being opened up to users who share computers that use logged in service accounts. I need the site to reprompt each user for their AD credentials...

SMTP through Exchange using Integrated Windows Authentication (NTLM) using Python

I want to use the credentials of the logged-in Windows user to authenticate an SMTP connection to an Exchange server using NTLM. I'm aware of the python-ntlm module and the two patches that enable NTLM authentication for SMTP, however I want to use the current user's security token and not have to supply a username and password. Very s...

How to config Apache to use NTLM auth for local users and Basic Auth for external?

We have an internal web site. And we have 2 goups of employees. 1. Central office they will be using NTLM auth 2. External users who don't have active directory accounts, they will use Basic Auth Can you help me find out how to config apache. ...