| Methods / Administrative Service |
IWFAdminService svc = GetAdminService();
try
{
string smtpServer = svc.GetSmtpServer();
Console.WriteLine("SMTP Server Name = '" + smtpServer + "'");
}
catch (Exception ex)
{
Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
}
//This example produces the following results:
//SMTP Server Name = 'smtp.vitinfotech.com'