How can I use NTLM authentication in a Delphi SOAP Web Service client? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T03:18:34Zhttp://stackoverflow.com/feeds/question/1068452http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1068452/how-can-i-use-ntlm-authentication-in-a-delphi-soap-web-service-client1How can I use NTLM authentication in a Delphi SOAP Web Service client?mjustin2009-07-01T10:46:12Z2009-07-08T18:09:39Z
<p>For a Microsoft CRM project, we need <a href="http://en.wikipedia.org/wiki/NTLM" rel="nofollow">NTLM authentication</a> in the Delphi 2009 web service client.</p>
<p>It looks like <a href="http://www.delphipraxis.net/topic157784.html" rel="nofollow">Indy 10 Tiburon already has experimental NTLM support</a>.</p>
<p>How can I activate the NTLM authentication for the THTTPRio component and use the logon information (user name, password, domain) of the destination web service server?</p>
<p>Edit: it would also be helpful if there is a way to use other authentication methods than 'Basic', for example <a href="http://en.wikipedia.org/wiki/Digest%5Faccess%5Fauthentication" rel="nofollow">HTTP Digest access authentication</a>.</p>
http://stackoverflow.com/questions/1068452/how-can-i-use-ntlm-authentication-in-a-delphi-soap-web-service-client/1069694#10696940Answer by Cobus Kruger for How can I use NTLM authentication in a Delphi SOAP Web Service client?Cobus Kruger2009-07-01T15:10:43Z2009-07-01T15:10:43Z<p>I'm not entirely sure I understand your question - activate NTLM authentication? If you're looking for NTLM API imports for Delphi, you can find those in the JEDI Windows Security Library on the <a href="http://jedi-apilib.sourceforge.net/" rel="nofollow">JEDI API home page</a>. If the plan is to see how to use it, I'd say <a href="http://msdn.microsoft.com/en-us/library/aa378749%28VS.85%29.aspx" rel="nofollow">MSDN is your friend</a>.</p>
http://stackoverflow.com/questions/1068452/how-can-i-use-ntlm-authentication-in-a-delphi-soap-web-service-client/1081582#10815820Answer by mjustin for How can I use NTLM authentication in a Delphi SOAP Web Service client?mjustin2009-07-04T05:30:28Z2009-07-08T18:09:39Z<p>In the user name property of the WebNode subcomponent of the THTTPRio component, use the domain name followed by a backslash and the user name:</p>
<p><strong>'domain\username'</strong></p>
<p>After entering the WSDL URL at designtime, the HTTPRIO component will list available port and services.</p>
<p>In a HTTP proxy (<a href="http://donsproxy.sourceforge.net/" rel="nofollow">Don's Proxy</a>), NTLM is displayed as the request authentication type.</p>