active questions tagged ntlm - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T08:30:35Z http://stackoverflow.com/feeds/tag/ntlm http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1898727/second-domain-controller-in-ntlmhttpfilter 0 second domain controller in ntlmhttpfilter cometta 2009-12-14T03:17:43Z 2009-12-14T03:17:43Z <p>may i nkow how to add secondary controller and auto route to second controller when the first AD fail</p> <p>String msg = request.getHeader("Authorization");</p> <pre><code> if (msg != null &amp;&amp; msg.startsWith("NTLM")) { byte[] src = Base64.decode(msg.substring(5)); if (src[8] == 1) { UniAddress dc = UniAddress.getByName( domainController, true); //domainController is first AD controller, how to add second? byte[] challenge = SmbSession.getChallenge(dc); Type1Message type1 = new Type1Message(src); Type2Message type2 = new Type2Message( type1, challenge, null); msg = Base64.encode(type2.toByteArray()); response.setHeader("WWW-Authenticate", "NTLM " + msg); response.setStatus(HttpServletResponse.SC_UNAUTHORIZED); response.setContentLength(0); response.flushBuffer(); // Interrupt filter chain, send response. Browser will // immediately post a new request. return; } } </code></pre> http://stackoverflow.com/questions/1889902/active-directory-and-ntlm-authentication 0 Active Directory and NTLM Authentication Alkersan 2009-12-11T18:14:24Z 2009-12-11T18:14:24Z <p>I<code>m writing an IIS Application, which manages AD users. For this purpose I</code>ve configured site to use Negitiate AuthenticationProvider, and everything works. I wonder, is NTLM suitable for operations with Active Directory (such as creating user accounts)? Or AD accepts only Kerberos authentication?</p> http://stackoverflow.com/questions/1866460/authenticate-imaplib-imap4ssl-against-an-excange-imap-server-with-authntlm 0 Authenticate imaplib.IMAP4_SSL against an Excange imap server with AUTH=NTLM codeape 2009-12-08T11:47:54Z 2009-12-08T20:03:58Z <p>Yesterday, the IT department made changes to the Exchange server. I was previously able to use <code>imaplib</code> to fetch messages from the server. But now it seems they have turned off the authentication mechanism I was using. From the output below, it looks as if the server now supports NTLM authentication only. </p> <pre><code>&gt;&gt;&gt; from imaplib import IMAP4_SSL &gt;&gt;&gt; s = IMAP4_SSL("my.imap.server") &gt;&gt;&gt; s.capabilities ('IMAP4', 'IMAP4REV1', 'IDLE', 'LOGIN-REFERRALS', 'MAILBOX-REFERRALS', 'NAMESPACE', 'LITERAL+', 'UIDPLUS', 'CHILDREN', 'AUTH=NTLM') &gt;&gt;&gt; s.login("username", "password") ... imaplib.error: Clear text passwords have been disabled for this protocol. </code></pre> <p>Questions:</p> <ol> <li>How do I authenticate to the imap server using NTLM with imaplib? I assume I have need to use IMAP4_SSL.authenticate("NTLM", authobject) to do this? How do I set up the authobject callback. </li> <li>Since SSL/TLS is the only way to connect to the server, re-enabling clear text password authentication should not be a security risk. Correct?</li> </ol> <p>The process that connects to the imap server is running on Linux, BTW. So I am not able to use pywin32.</p> <p><strong>Edit:</strong></p> <p>I was able to figure out 1. myself. But how about 2.: Clear text passwords in IMAP over SSL is not a security problem, is it?</p> http://stackoverflow.com/questions/1170290/ntlm-authentication-for-a-web-server-side-application 1 NTLM authentication for a web server side application mdk 2009-07-23T07:51:16Z 2009-12-07T04:00:03Z <p>My Windows based application written in C++ ( basically an HTTP/1.1 proxy server) listens for requests from various users. Presently it is able to send a 407 Basic Challenge, and process the response from the Headers. I know I must modify the challenge headers, so that the client browsers make an NTLM based response for the purpose of authentication. But my question is - how do I generate the correct tokens, nonce, etc. for the 407 Authentication Challenge, and then how do I validate if the received responses are correct? Finally I would like to record the client's username and other LDAP / ADS properties if possible.</p> <p>Please be kind, and redirect me to the correct posts if there are already any threads that discuss something similar. Most research on the WWW leads me only to the client-side programming, very little or almost none - for the coding that must be done in the HTTP server.</p> <p>All of you great hacks around here, a BIG thanks in advance.</p> http://stackoverflow.com/questions/1176566/get-current-windows-user-name-within-silverlight 2 Get current Windows user name within Silverlight huseyint 2009-07-24T09:18:10Z 2009-12-03T02:53:08Z <p>Is it possible to get the currently logged in user's username with Silverlight? You can assume that user has Windows OS and the Silverlight application is hosted in Internet Explorer. Getting the identity from server side with ASP.NET is not an option, this SL application will be hosted on a static HTML file.</p> http://stackoverflow.com/questions/1481398/python-urllib2-https-and-proxy-ntlm-authentication 0 Python urllib2 HTTPS and proxy NTLM authentication Laurent Luce 2009-09-26T15:03:41Z 2009-11-24T21:56:57Z <p>Hello,</p> <p>urllib2 doesn't seem to support HTTPS with proxy authentication in general, even less with NTLM authentication. Anyone knows if there is a patch somewhere for HTTPS on proxy with NTLM authentication.</p> <p>Regards,</p> <p>Laurent</p> http://stackoverflow.com/questions/1783659/does-git-clone-work-through-ntlm-proxies 1 Does git clone work through NTLM proxies? AndreaG 2009-11-23T15:01:44Z 2009-11-24T13:55:43Z <p>I've tried both using <code>export http_proxy=http://[username]:[pwd]@[proxy]</code> and <code>git config --global http.proxy http://[username]:[pwd]@[proxy]</code>. </p> <p>I couldn't make it work. It looks like git uses Basic authentication:</p> <pre><code>Initialized empty Git repository in /home/.../.git/ * Couldn't find host github.com in the .netrc file, using defaults * About to connect() to github.com port 8080 (#0) * Trying 10.... * Connected to github.com (10....) port 8080 (#0) * Proxy auth using Basic with user '...' &gt; GET http://github.com/sunlightlabs/fiftystates.git/info/refs HTTP/1.1 Proxy-Authorization: Basic MD... User-Agent: git/1.6.1.2 Host: github.com Pragma: no-cache Accept: */* Proxy-Connection: Keep-Alive &lt; HTTP/1.1 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to t he Web Proxy filter is denied. ) &lt; Via: 1.1 ... &lt; Proxy-Authenticate: Negotiate &lt; Proxy-Authenticate: Kerberos &lt; Proxy-Authenticate: NTLM &lt; Connection: Keep-Alive &lt; Proxy-Connection: Keep-Alive &lt; Pragma: no-cache &lt; Cache-Control: no-cache &lt; Content-Type: text/html &lt; Content-Length: 4118 * The requested URL returned error: 407 * Closing connection #0 fatal: http://github.com/sunlightlabs/fiftystates.git/info/refs download error - The requested URL returned error: 407 </code></pre> <p>Google search returned mixed and probably not updated results. Somewhere it says that <code>curl</code> is (was?) used under the hood, but its options are (were?) hardwired into code. For example, </p> <pre><code>curl --proxy-ntlm --proxy ...:8080 google.com </code></pre> <p>works, and I'd like to use the same option with git.</p> <p>I need some more definite answers here: has anybody succeed using git through Windows proxies? Which version? </p> <p>Thanks.</p> http://stackoverflow.com/questions/1168526/authenticate-with-ntlm-or-kerberos-using-java-urlconnection 0 authenticate with ntlm (or kerberos) using java UrlConnection opensas 2009-07-22T21:57:18Z 2009-11-16T18:23:56Z <p>I need to consume a rest web service with java, passing the credentials of a domain user account.</p> <p>right now I'm doing it with classic asp</p> <pre><code> set xmlHttp = server.createObject( "msxml2.serverxmlhttp" ) xmlHttp.open method, url, false, domain & "\" & user, password xmlHttp.send body out = xmlHttp.responseText set xmlHttp = nothing </code></pre> <p>and with asp.net</p> <pre><code> HttpWebRequest request = (HttpWebRequest) WebRequest.Create( url ); request.Credentials = new NetworkCredential(user, password, domain); request.Method = WebRequestMethods.Http.Get HttpWebResponse response = (HttpWebResponse) request.GetResponse(); StreamReader outStream = new StreamReader( response.GetResponseStream(), Encoding.UTF8) ; output = outStream.ReadToEnd(); </code></pre> <p>how can I achieve this with java? Take into account that I'm not using the credentials of the currently logged user, I'm specifing the domain account (I have the password)</p> <p>please tell me it's as easy as with classic asp and asp.net....</p> http://stackoverflow.com/questions/1543785/how-to-implement-a-web-service-client-which-connects-to-an-external-web-service-w 0 how to implement a web service client which connects to an external web service with authentication based on NTLM Authentication unknown (google) 2009-10-09T13:34:35Z 2009-11-16T11:29:42Z <p>Hi i'm quite new in implementing web service client in java. i found a tutorial very useful...<a href="http://wso2.org/library/tutorials/creating-web-service-client-3-steps-using-eclipse" rel="nofollow">http://wso2.org/library/tutorials/creating-web-service-client-3-steps-using-eclipse</a>.</p> <p>in my case i got 401 error: Unauthorized. It is normal as to access the wsdl i need to type the username/password. how one can do in that case? Some input on the security part:</p> <p>WWW-Authenticate Negotiate NTLM + web services +HTTP 401 so i don't know which java library can help me in that case and how to integrate it in my code.</p> <p>thanks for your help Lana</p> http://stackoverflow.com/questions/869255/iis-wcf-service-accesed-via-java-with-ntlm-authentication 0 IIS WCF Service Accesed via JAVA with NTLM Authentication Art 2009-05-15T15:11:31Z 2009-11-16T11:25:33Z <p>We have a WCF Service hosted in IIS 6 with Integrated Windows Authentication turned on under Directory Security. Consuming this service from a .NET Windows client the cached NTLM credentials flow to the Server PC and things work great. We would like to have the same occur when a Java client accesses the service (via the WSDL generated objects) from a Windows PC. Everything we have scoured on the net seems to state that we will not need to hard code the username/password into the Java code if we leverage the Sun java.net.authenticator and run the process on the Windows platform. Is this true? We have a solution using Axis 2.0 and its proprietary NTLM authenticator, however we had to hard code the username/password. Ideally, we'd like the NTLM cached credentials to flow automatically to the server. It seems like this should be possible since the Java process is running on a Windows PC.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/916820/how-can-i-get-jcifs-to-play-nicely-with-apache-axis 0 How can I get jcifs to play nicely with apache axis Ben Hammond 2009-05-27T16:47:16Z 2009-11-16T09:54:56Z <p>I need to connect Apache Axis 1.4 to a Webservice that uses NTLM authentication to restrict access to its operations. I'm expecting to use Samba Jcifs to handle the NTLM handshake.</p> <p>I found </p> <p><a href="http://hc.apache.org/httpcomponents-client/ntlm.html" rel="nofollow">http://hc.apache.org/httpcomponents-client/ntlm.html</a></p> <p>which gives me fantastic directions for how to wire up HttpClient 4.0 with jcifs.</p> <p>Trouble is, Axis wants to use Http Client 3.0 and the two apis look very different.</p> <p>There are 2 possibilities that I can see</p> <ol> <li>Write an object for Axis that lets it plug into HttpClient 4.</li> <li>Figure out how to wire HttpClient 3.0 up with Samba Jcifs.</li> </ol> <p>Number 1. looks non-trivial, but possible Number 2. I cannot find any encouraging messages on the web describing how to do this.</p> <p>My question is: has anyone successfully connected samba jcifs with HttpClient 3.0 ? Has anyone already created an Axis HttpSender object that works with HttpClient 4 ?</p> <p>Is there some better alternative that I have not considered?</p> http://stackoverflow.com/questions/1130904/ntlm-window-authentication 2 NTLM Window Authentication Hoe Chin 2009-07-15T11:41:16Z 2009-11-16T09:48:46Z <p>I using the Samba to implement the Window AUthentication. On my web.xml i put this </p> <pre><code>&lt;filter&gt; &lt;filter-name&gt;NtlmHttpFilter&lt;/filter-name&gt; &lt;filter-class&gt;jcifs.http.NtlmHttpFilter&lt;/filter-class&gt; &lt;init-param&gt; &lt;param-name&gt;jcifs.http.domainController&lt;/param-name&gt; &lt;param-value&gt;192.168.1.101&lt;/param-value&gt; &lt;/init-param&gt; &lt;!-- always needed for preauthentication / SMB signatures --&gt; &lt;init-param&gt; &lt;param-name&gt;jcifs.smb.client.domain&lt;/param-name&gt; &lt;param-value&gt;NYC-USERS&lt;/param-value&gt; &lt;/init-param&gt; &lt;init-param&gt; &lt;param-name&gt;jcifs.smb.client.username&lt;/param-name&gt; &lt;param-value&gt;somenycuser&lt;/param-value&gt; &lt;/init-param&gt; &lt;init-param&gt; &lt;param-name&gt;jcifs.smb.client.password&lt;/param-name&gt; &lt;param-value&gt;AReallyLoooongRandomPassword&lt;/param-value&gt; &lt;/init-param&gt; &lt;/filter&gt; &lt;filter-mapping&gt; &lt;filter-name&gt;NtlmHttpFilter&lt;/filter-name&gt; &lt;url-pattern&gt;/admin/*&lt;/url-pattern&gt; &lt;/filter-mapping&gt; </code></pre> <p>and once i run the page in admin folder the window login box pop out. What username and password should i key in as currently i was running under Administrator account. I not really understand with it can anyone explain to me ?</p> <pre><code>&lt;init-param&gt; &lt;param-name&gt;jcifs.smb.client.username&lt;/param-name&gt; &lt;param-value&gt;somenycuser&lt;/param-value&gt; &lt;/init-param&gt; &lt;init-param&gt; &lt;param-name&gt;jcifs.smb.client.password&lt;/param-name&gt; &lt;param-value&gt;AReallyLoooongRandomPassword&lt;/param-value&gt; &lt;/init-param&gt; </code></pre> <p>Can i set the username and password?</p> http://stackoverflow.com/questions/1497204/acegi-ntlm-how-to 0 acegi ntlm how to? cometta 2009-09-30T10:15:04Z 2009-11-16T09:42:57Z <p>I have an application that using ldap acegi-security-1.0.2.jar . I able to authenticate the user with active directory. I wanted to add NTLM auto login feature for my application. May i know what extra acegi library do i need to do this? is there any example on acegi+nltm on this?</p> http://stackoverflow.com/questions/1562882/ntlm-authentication-using-cxf-wsdl2java-stubs 0 NTLM authentication using CXF wsdl2java stubs wlindner 2009-10-13T21:04:08Z 2009-11-06T11:21:38Z <p>I have a web service protected by HTTPS with NTLM authentication and I generated a set of java stubs using CXF's wsdl2java tool by temporarily disabling authentication. I am now attempting to use the Java stubs within an applet that connects to the web service with the authentication turned back on. My intention was to edit the Java stubs to include authentication cookies from the browser's session into CXF client connection to the web service. The only problem is that the stub merely calls "super()" on the Service class and it handles all of the connection on its own. Does anyone know how to use CXF's java stubs generated from wsdl2java to connect to a web service protected by https and NTLM authentication?</p> <p>here is the constructor stub:</p> <pre><code>public Visual_Service(URL wsdlLocation) { super(wsdlLocation, SERVICE); } </code></pre> http://stackoverflow.com/questions/576850/alternatives-for-jcifs-ntlm-library 1 Alternatives for JCIFS NTLM library Veera 2009-02-23T08:00:34Z 2009-11-04T16:31:51Z <p>Are there any alternatives for JCIFS NTLM library?</p> http://stackoverflow.com/questions/489950/can-i-indicate-to-clients-that-spnego-is-supported-but-ntlm-is-not-for-http-reque 0 Can I indicate to clients that SPNEGO is supported but NTLM is not for HTTP requests? Scott Markwell 2009-01-28T23:53:21Z 2009-11-04T16:28:40Z <p>The two WWW-Authenticate additions Microsoft makes use of that I am currently aware of are</p> <ul> <li>NTLM</li> <li>Negotiate</li> </ul> <p>If Negotiate is sent down from the server, based on a set of conditions Kerberos will be used</p> <ul> <li>Intranet Zone</li> <li>Accessing the server using a Hostname rather then IP</li> <li>Integrated Windows Authentication in IE is enabled, the host is trusted in Firefox</li> <li>The Server is not local to the browser</li> <li>The client's Kerberos system is authenticated to a domain controller</li> </ul> <p>Then Kerberos will be attempted between the server and the client, if something above is not met, then NTLM will be attempted.</p> <p>My question is, is there some way for the server to indicate that NTLM should not be sent? I currently handle this by keeping track of the request in the session, and if a NTLM message is received, it disables Kerberos and WWW-Authenticate for the rest of that sessions life.</p> http://stackoverflow.com/questions/1542494/twebbrowser-and-ntlm-authencation 2 TWebBrowser and NTLM-authencation TPAU17 2009-10-09T08:09:54Z 2009-11-01T00:19:36Z <p>How can I connect with the TWebBrowser-component in Delphi from outside an ADS-Domain to a Sharepoint-Server. I've created an user-account in my domain and will connect with this information to the server.</p> <p>the following don't work:</p> <p>const <br/> USERNAME = 'JamesBond@domain.tld'; <br/> PASSWORD = 'Password2009';<br/> var<br/> Url, Headers: OleVariant;<br/> begin<br/> URL := '<a href="http://192.168.100.130" rel="nofollow">http://192.168.100.130</a>';<br/> Headers := 'Authorization: NTLM ' + Base64Encode(USERNAME + ':' + PASSWORD)+ sLineBreak;<br/> WebBrowser1.Navigate2(Url, EmptyParam, EmptyParam, EmptyParam, Headers);<br/></p> <p>with Basic-Auth the same (not working) result ..</p> <p>thanks for any hint!</p> <p>:-) tpau17</p> http://stackoverflow.com/questions/1570668/stress-testing-with-ntlm-authentication 0 Stress Testing with NTLM Authentication Sam 2009-10-15T06:56:43Z 2009-10-31T20:06:58Z <p>Hi, Looking for an open source web testing tool that can do Windows Authentication.</p> <p>I've used openSTA and Pylot in very small amounts but found neither to do windows. openSTA says you can do NTLM here: <a href="http://www.opensta.org/docs/sclref/build-auth-blob.htm" rel="nofollow">http://www.opensta.org/docs/sclref/build-auth-blob.htm</a> </p> <p>I could not get it working - probably due to some config on the network or maybe my own mistake.</p> http://stackoverflow.com/questions/1652160/ntlm-as-sso-and-performing-certain-actions-as-an-impersonated-administrator 0 NTLM as SSO, and Performing Certain Actions as an Impersonated Administrator routeNpingme 2009-10-30T20:35:58Z 2009-10-30T23:56:15Z <p>I can't seem to stumble upon the correct combination of IIS / ASP.NET settings to accomplish the following:</p> <ol> <li>All users on <strong>an internal domain</strong> should be able to access IIS site (w/ NTLM authentication), and the ASP.NET application should be able to get the username of the current user (aka <strong>the user is authenticated as themselves</strong>).</li> <li>The running ASP.NET application should be able to <strong>execute certain actions under an Administrator account</strong>. For example, an Active Directory change, or writing files to restricted locations.</li> </ol> <p>You could probably guess, but the point of the application is to be able to let "normal" users make specific "Administrative" changes via the web application. At the same time, the change should be logged with the "normal" user's account, so I don't want to lose the authenticated user's credentials.</p> <p>Looking for the specific settings in IIS6 to accomplish #1 (any users on the domain to get to the site and be authenticated as themselves), along with the code for #2.</p> http://stackoverflow.com/questions/615575/msdeploy-triggers-401-access-denied-error-when-trying-to-synch-a-site 1 MSDeploy triggers 401 Access denied error when trying to synch a site. kitsune 2009-03-05T16:37:56Z 2009-10-29T03:00:03Z <p>I try to push/sync a IIS Site from a Win2003 Server to another.</p> <p>This is my command:</p> <p>msdeploy -verb:sync -source:metakey=lm/w3svc/68512112 -dest:metakey=lm/w3svc/68512112,computername=backup-09,username=Administrator,password=PASSWORD -whatif > msdeploysync.log</p> <p>I also tried the following</p> <p>msdeploy -verb:sync -source:metakey=lm/w3svc/68512112 -dest:metakey=lm/w3svc/68512112,computername=backup-09,username=BACKUP-09\Administrator,password=PASSWORD -whatif > msdeploysync.log</p> <p>I also tried</p> <p>msdeploy -verb:sync -source:metakey=lm/w3svc/68512112 -dest:metakey=lm/w3svc/68512112,computername=backup-09,username=Administrator@BACKUP-09,password=PASSWORD -whatif > msdeploysync.log</p> <p>This is the error:</p> <p><strong>Fatal:</strong> Request to remote agent URL '<a href="http://backup-09/MSDEPLOYAGENTSERVICE" rel="nofollow">http://backup-09/MSDEPLOYAGENTSERVICE</a>' failed.</p> <p><strong>Fatal:</strong> The remote server returned an error: (401) Unauthorized. Fatal count: 1</p> <ul> <li>I did run msdeploy/cmd as an administrator.</li> <li>I did try to access <a href="http://backup-09/MSDEPLOYAGENTSERVICE" rel="nofollow">http://backup-09/MSDEPLOYAGENTSERVICE</a>, it asked for my permissions, I entered the credentials above, it worked (empty site displayed).</li> <li>This is Beta 2 of MSDeploy</li> </ul> <p>Can anyone help me?</p> <p>I now even set up a domain controller for all the servers... still the same issues, whether I'm logged in as a domain controller, supply the local accounts, all variations trigger a 401 </p> http://stackoverflow.com/questions/1520703/sending-http-headers-with-http-web-request-for-ntlm-authentication 0 Sending HTTP Headers with HTTP Web Request for NTLM Authentication blade 2009-10-05T15:12:23Z 2009-10-05T15:20:26Z <p>I want to login to a Sharepoint portal which brings up a login dialog but is using NTLM authentication. How can I modify the HTTP headers in C# to make a successful login request? I assume I would need to make a HTTPWebRequest to a page within the logged in section of the portal and post the HTTP headers collection alongside this?</p> http://stackoverflow.com/questions/422403/login-without-username-and-password-from-the-web-browser-on-windows 3 Login without username and password from the web browser on Windows Janko Mivšek 2009-01-07T22:18:18Z 2009-09-20T00:58:52Z <p>I heard that on Windows you can login from a web browser to the web server without going through the usual login entering username and password but using instead the credentials from Windows directly, using the NTLM protocol.</p> <p>How is this achieved? Does the web server need to support some additional authentication?</p> <p><strong>Update:</strong> I'm asking for a generic web server, not just IIS. How to do that on Apache for instance?</p> http://stackoverflow.com/questions/150429/retrieve-ntlm-active-directory-user-data-to-rails-w-o-iis 5 Retrieve NTLM Active Directory user data to Rails w/o IIS Nick 2008-09-29T20:11:20Z 2009-09-17T17:08:07Z <p>I believe that we can allow Firefox to sent NTLM data to SharePoint sites to do automatic authentication, and I think that this is doable with IIS.</p> <p>I'd like to do the same thing with an internal Rails site.</p> <p>Does anyone know of way that I could authenticate NTLM type user information through a Apache/mongrel setup (provided of course that it's already running on a Windows box inside of an Active Directory domain)?</p> http://stackoverflow.com/questions/1438925/how-can-i-use-ntlm-functionality-with-apache-tomacat 0 How can I use NTLM functionality with Apache tomacat? vipin k. 2009-09-17T13:34:02Z 2009-09-17T15:34:10Z <p>Hi all, I want to use windows NTLM with apache tomcat. Anyone who's already used it, please give me some information, I am new to it.</p> http://stackoverflow.com/questions/1428305/wcf-identity-ntlm-kerberos 1 WCF Identity NTLM Kerberos Jon Archway 2009-09-15T16:44:30Z 2009-09-15T18:28:15Z <p>I have read numerous posts and articles about the element in client endpoints on a WCF client but I am still a little confused. I have a client which gets SSPI errors when attempting to communicate with a net tcp WCF service. However, when I add the following into the configuration it works fine</p> <pre><code>&lt;identity&gt; &lt;servicePrincipalName /&gt; &lt;/identity&gt; </code></pre> <p>Now from what I have read this is telling the service to use NTLM rather than Kerberos. However, I am still not getting it. </p> <p>Does anyone have a few moments to explain this simply for me please. So, what is going on here, a little bit of background on the difference of NTLM and Kerberos, why it would work with one and not the other, why this element doesn't need a value, how to configure a service not to need it and why it is needed at all?</p> <p>Thanks</p> http://stackoverflow.com/questions/1044034/wcftestclient-the-http-request-is-unauthorized-with-client-authentication-scheme 0 WCFTestClient The HTTP request is unauthorized with client authentication scheme 'Anonymous' unknown (yahoo) 2009-06-25T13:46:14Z 2009-09-11T19:34:24Z <p>I've created one WCF service and deployed it on Server. When I browse this service it gives me positive response with ?wsdl URL. Now I'm trying to test the service through WCF Test client. It shows proper metadata. But when I try to invoke any of the method from the service it shows me an exception... here are the erro details with stack trace..</p> <p>The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'.</p> <p>Server stack trace: at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory) The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'.</p> <p>Server stack trace: at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)</p> <p>Client Bindings:</p> <pre><code>&lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding name="WSHttpBinding_IServiceMagicService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p>Server Bindings:</p> <pre><code>&lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding name="WSHttpBinding_SEOService" closeTimeout="00:10:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" bypassProxyOnLocal="true" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="999524288" maxReceivedMessageSize="655360000" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="900000" maxArrayLength="900000" maxBytesPerRead="900000" maxNameTableCharCount="900000" /&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;binding name="WSHttpServiceMagicBinding" closeTimeout="00:10:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" bypassProxyOnLocal="true" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="999524288" maxReceivedMessageSize="655360000" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="900000" maxArrayLength="900000" maxBytesPerRead="900000" maxNameTableCharCount="900000"/&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true"/&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p>Client's Client Section: </p> <p>Server's Services Section: </p> http://stackoverflow.com/questions/1135343/one-computer-cannot-authenticate-to-tfs-or-exchange 1 One computer cannot authenticate to TFS or Exchange John Bergman 2009-07-16T04:10:14Z 2009-09-08T19:10:51Z <p>I have several computers... only one of which cannot authenticate to either my exchange or TFS server. (2 of the computers are at my home trying to connect to our exchange/tfs server at work, one of which as the problem). Several other employees have not had any connectivity problems.</p> <p>The errors I am seeing are </p> <p>401 2 2148074254<br> 401 1 0<br> 401 1 2148074252<br></p> <p>After about 2 days of hunting around, I am about ready to repave the computer and start from scratch. As far as I can tell they are set the same.</p> <p>I cannot connect to Exchange OWA using Firefox but not IE. Same for TFS. I have reset IE (using the tool at this URL: <a href="http://support.microsoft.com/kb/923737" rel="nofollow">http://support.microsoft.com/kb/923737</a> -- if you have not seen it you should read the description, it is quite entertaining). I have compared the trusted site settings between the one that works and the one that doesnt. I have also compared the 'advanced' settings and can find no differences. The credentials work perfectly from the 2nd computer, which eliminates any firewall related filtering problems.</p> <p>I am at a total loss as to what else to try. Does anyone have any ideas? </p> http://stackoverflow.com/questions/1393361/wcf-basichttp-ntlm-esb-guidance 0 WCF-BasicHttp NTLM ESB guidance IB 2009-09-08T11:03:43Z 2009-09-08T14:23:24Z <p>Hello</p> <p>I am trying to access an asmx service located on IIS, the asmx is using integradted security I am trying to call it with wcf-basichttp adapter configured inside ESB guidance 1.0</p> <p>The error i am getting is :</p> <p>The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'NTLM'</p> <p>I tryed to set in the endpoint config: UserName=DOMAIN\Username&amp;Password=Password&amp;TransportClientCredentialType=NTLM</p> <p>Any idea would be appriciated</p> http://stackoverflow.com/questions/1013721/how-do-i-integrate-ntlm-authentication-with-perls-soaplite-module 0 How do I integrate NTLM authentication with Perl's SOAP::Lite module? unknown (yahoo) 2009-06-18T16:28:33Z 2009-08-27T21:00:02Z <p>This Perl code works with Anonymous access to an ASP.NET web service, but when integrated security is turned on, the service returns 401 errors. I think I need to use the NTLM module in conjunction with SOAP::Lite, but it's not clear how to do so. How can these components be integrated?</p> <pre><code>use SOAP::Lite; use strict; my $proxy = "http://localhost:28606/WebService.asmx"; my $method_name = "HelloWorld"; my $uri = "http://tempuri.org/"; my $methodAction = $uri . $method_name; my $soap = SOAP::Lite -&gt;uri( $uri ) -&gt;proxy( $proxy ) -&gt;on_action(sub{ $methodAction; }); my $method = SOAP::Data-&gt;name($method_name)-&gt;attr({xmlns=&gt;$uri}); my $result = $soap-&gt;call($method); print $result-&gt;result(); </code></pre> http://stackoverflow.com/questions/1326849/java-6-ntlm-proxy-authentication-and-https-has-anyone-got-it-to-work 1 Java 6 NTLM proxy authentication and HTTPS - has anyone got it to work? DavidK 2009-08-25T08:32:23Z 2009-08-26T14:33:43Z <p>I have a Java application (not an applet) that needs to access a web service. Proxies for the web service have been generated with JAX-WS, and seem to work fine. In one scenario it needs to talk through a web proxy server (actually Squid 3.0), which is set to require NTLM authentication.</p> <p>Running on Sun's JRE 1.6.0_14, everything works fine for accessing HTTP URLs, without requiring any changes: the built-in NTLM authenticator kicks in and it all works seemlessly. If, however, the web service URL is a HTTPS URL, the web service call fails deep inside Sun's code:</p> <pre><code>com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport error: java.lang.NullPointerException at com.sun.xml.internal.ws.transport.http.client.HttpClientTransport.getOutput(HttpClientTransport.java:121) at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:142) at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:83) at com.sun.xml.internal.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:105) at com.sun.xml.internal.ws.api.pipe.Fiber.__doRun(Fiber.java:587) at com.sun.xml.internal.ws.api.pipe.Fiber._doRun(Fiber.java:546) at com.sun.xml.internal.ws.api.pipe.Fiber.doRun(Fiber.java:531) at com.sun.xml.internal.ws.api.pipe.Fiber.runSync(Fiber.java:428) at com.sun.xml.internal.ws.client.Stub.process(Stub.java:211) at com.sun.xml.internal.ws.client.sei.SEIStub.doProcess(SEIStub.java:124) at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:98) at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78) at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107) ... our web service call ... Caused by: java.lang.NullPointerException at sun.net.www.protocol.http.NTLMAuthentication.setHeaders(NTLMAuthentication.java:175) at sun.net.www.protocol.http.HttpURLConnection.doTunneling(HttpURLConnection.java:1487) at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:164) at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:896) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:230) at com.sun.xml.internal.ws.transport.http.client.HttpClientTransport.getOutput(HttpClientTransport.java:109) ... 16 more </code></pre> <p>Looking in Sun's bug database turns up a few exceptions in such classes, but all of them seem to have been fixed. Has anyone come across anything like this? Has anyone got this to work?</p>