Lync SDK 2013 ConversionAdded not fired in formal group

Hermanns 1 Reputation point
2021-02-07T09:34:33.74+00:00

Hi,

we have a problem that has been discussed here and in other communitys several times, but there is still no solution.

The problem is that we developed a lync client with lync SDK 2013, which unfortunately does not fireing (ConversationAdded method) for a formal response group. A skype call between to contacts works perfectly.

Im getting no exceptions or errors in VS...

private void Conversation_Added(object sender, ConversationManagerEventArgs e)
    {

        conargs = e;

        if (e.Conversation.Modalities.TryGetValue(ModalityTypes.AudioVideo, out var avModality))
        {
            avModality.ModalityStateChanged -= AVModalityStateChanged;
            avModality.ModalityStateChanged += AVModalityStateChanged;
        }

private void AVModalityStateChanged(object sender, ModalityStateChangedEventArgs e)
    {
        try
        {
            Show.MessageBox("Incoming call");
            if (e.NewState == ModalityState.Notified)
            {
                Application.Current.Dispatcher.BeginInvoke(new Action(() =>
                {
                    pickup_img.IsEnabled = true;
                    Incoming_call = 1;
                }

                ));

Can anybody help?

Thanks a lot!

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
11,129 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Sharon Zhao-MSFT 25,106 Reputation points Microsoft Vendor
    2021-02-08T07:22:54.583+00:00

    @Azeem Mir ,

    I found a similar case. You could refer to what John M.Austin said.
    65228-image.png

    As we are mainly responsible for general issue of Skype for Business, you question related to development is not in our scope. Thanks for your understanding.


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.