Hello
I couldn't find any info on how to enable NTLM for web services. Does anybody know the key that need to be added to the customSetting.config file?
Thanks.
Ahmed Rashed Amini
Independent Consultant/Developer
blog:
https://dynamicsuser.net/nav/b/ara3n0
Comments
http://www.mibuso.com/dlinfo.asp?FileID=1123
Freddy mentioned that it can be enabled in SP1, through customsetting.config file.
http://blogs.msdn.com/freddyk/archive/2 ... 9-sp1.aspx
but there is no detail on it.
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
<!--
Turns on or off NTLM authentication protocol for Web Services
false: Use SPNEGO (recommended)
true: Use NTLM only
-->
<add key="WebServicesUseNTLMAuthentication" value="true"></add>
This is NOT in CTP2 - you will have to wait for SP1 RTM in order to get this.
Group Program Manager, Client
Microsoft Dynamics NAV
http://blogs.msdn.com/freddyk
The information in this post is provided "AS IS" with no warranties, and confers no rights. This post does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion.
I searched through MS partner source but no use.
Would you please explain in detail about NTLM...?
What is it and What is the use of it in Custom Settings.config file?
Ahmedabad, Gujarat, India
E Mail : ravi.thakkar@hotmail.com
SPNEGO is an authentication protocol, which should use Kerberos authentication and fall back to NTLM if kerberos fails (simplified description)
NTLM is short for NT Lan Manager and is described here
http://en.wikipedia.org/wiki/NTLM
Do why specify NTLM when SPNEGO should include NTLM?
Reason is that Java, PHP and other non-microsoft programming environments doesn't have full support for SPNEGO yet - so in order to support these environments, we included NTLM.
Now NTLM is NOT part of CTP2 - so you cannot use it until we ship NAV 2009 SP1 RTM.
Group Program Manager, Client
Microsoft Dynamics NAV
http://blogs.msdn.com/freddyk
The information in this post is provided "AS IS" with no warranties, and confers no rights. This post does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion.
Hi Freddy, how is the situation now, connecting with PHP ? Does it work to use SPNEGO, or do we still need to use alternatives (NTLM or Basic)