Is it possible to use Windows Authentication to logon to Axapta 4 (or 5) in a Website/webservice
- by rdkleine
Using this code I can not create a connection using IIS 7 with Windows Authentication.
try
{
Axapta axapta = new Axapta();
axapta.Logon("", "", "", "");
//Or this> axapta.Logon("COMPANY", "NL-nl", "OBJECTSERVER", "");
System.Diagnostics.Debug.WriteLine("yep");
…