Fixed lync out of index error and added ability to verify if organization is a
valid Tenant Proxies not generated
This commit is contained in:
parent
5b75dc1b0b
commit
16ec864a09
4 changed files with 132 additions and 16 deletions
|
@ -70,6 +70,23 @@ namespace WebsitePanel.Server
|
|||
}
|
||||
}
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public string GetOrganizationTenantId(string organizationId, string sipDomain, bool enableConferencing, bool enableConferencingVideo, int maxConferenceSize, bool enabledFederation, bool enabledEnterpriseVoice)
|
||||
{
|
||||
try
|
||||
{
|
||||
Log.WriteStart("{0}.GetOrganizationTenantId", ProviderSettings.ProviderName);
|
||||
string ret = Lync.GetOrganizationTenantId(organizationId);
|
||||
Log.WriteEnd("{0}.GetOrganizationTenantId", ProviderSettings.ProviderName);
|
||||
return ret;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Log.WriteError(String.Format("Error: {0}.GetOrganizationTenantId", ProviderSettings.ProviderName), ex);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public bool DeleteOrganization(string organizationId, string sipDomain)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue