I develop server-side Lync Agent as as user endpoint. With Lync Agent I can send request and get from it response. The problem is that it is always Offline. Any body can help me how I make it Online? Here's the code:
private void PlatformStartupCompleted(IAsyncResult result) {
CollaborationPlatform collabPlatform = result.AsyncState as CollaborationPlatform;
Exception ex = null;
try
{
collabPlatform.EndStartup(result);
_log.Info("Platform started, Logged in");
UserEndpointSettings userEndpointSettings = new UserEndpointSettings(_settings.UserUri, _settings.Server);
//userEndpointSettings.Credential = CredentialCache.DefaultNetworkCredentials;
userEndpointSettings.Credential = new NetworkCredential(_settings.UserName, _settings.UserPassword,
_settings.Domain);
_userEndpoint = new UserEndpoint(_collabPlatform, userEndpointSettings);
_userEndpoint.BeginEstablish(EndpointEstablishCompleted, _userEndpoint);
_userEndpoint.RegisterForIncomingCall<InstantMessagingCall>(On_InstantMessagingCall_Received);
}
catch (Exception exception)
{
_log.Fatal("Platform setup failed: " + exception.Message);
}
}