Comment 30 for bug 1064804

Revision history for this message
Mun Wai Chan (munwai) wrote :

Just to prove that it has nothing to do with the Network Credentials, I have used the Logon method instead and it crashes as well.

using Microsoft.Dynamics.BusinessConnectorNet;
using NUnit.Framework;

namespace ClassLibrary1
{
    [TestFixture]
    public class Class1
    {
        [Test]
        public void Test()
        {
                Axapta ax = new Axapta();
                ax.Logon(null, null, "devaos2:2714", null);
                ax.Logoff();
        }
    }
}