Plumbling put in place to set Lync SipAddress and LineUri
This commit is contained in:
parent
ad52464658
commit
65ab6722fd
10 changed files with 597 additions and 432 deletions
|
@ -124,6 +124,24 @@ namespace WebsitePanel.Server
|
|||
}
|
||||
}
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public bool SetLyncUserGeneralSettings(string organizationId, string userUpn, LyncUser lyncUser)
|
||||
{
|
||||
try
|
||||
{
|
||||
Log.WriteStart("{0}.SetLyncUserGeneralSettings", ProviderSettings.ProviderName);
|
||||
bool ret = Lync.SetLyncUserGeneralSettings(organizationId, userUpn, lyncUser);
|
||||
Log.WriteEnd("{0}.SetLyncUserGeneralSettings", ProviderSettings.ProviderName);
|
||||
return ret;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Log.WriteError(String.Format("Error: {0}.SetLyncUserGeneralSettings", ProviderSettings.ProviderName), ex);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public bool SetLyncUserPlan(string organizationId, string userUpn, LyncUserPlan plan)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue