Remote applications - several session hosts
This commit is contained in:
parent
d063e2ce2d
commit
7e8390d298
8 changed files with 243 additions and 15 deletions
|
@ -477,5 +477,23 @@ namespace WebsitePanel.Server
|
|||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
[WebMethod, SoapHeader("settings")]
|
||||
public List<string> GetRdsCollectionSessionHosts(string collectionName)
|
||||
{
|
||||
try
|
||||
{
|
||||
Log.WriteStart("'{0}' GetRdsCollectionSessionHosts", ProviderSettings.ProviderName);
|
||||
var result = RDSProvider.GetRdsCollectionSessionHosts(collectionName);
|
||||
Log.WriteEnd("'{0}' GetRdsCollectionSessionHosts", ProviderSettings.ProviderName);
|
||||
|
||||
return result;
|
||||
}
|
||||
catch(Exception ex)
|
||||
{
|
||||
Log.WriteError(String.Format("'{0}' GetRdsCollectionSessionHosts", ProviderSettings.ProviderName), ex);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue