Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
        }
    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.