Hi,
I reload the Smarter Mail using the Smarter Mail Web Service (svcDomainAdmin -> ReloadDomain) in the mail server every time when I modify user's email setting. It was working well until couple days ago. I am getting this error message (Server was unable to process request. --> Object reference not set to an instance of an object.) Any suggestion/ideas?
The following is my C# code:
try
{
SmarterMail.svcDomainAdmin Server = new SmarterMail.svcDomainAdmin();
Server.ReloadDomain("SM_UserName", "SM_Password","Domain Name");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}