In microsoft bot framework SDK V3 welcome message gets triggered twiceMS BotBuilder : How can the bot receive parameters and initiate conversation at webchat startMicrosoft Bot Framework - Proactive message, suspend current dialogHow to use Prompts.text without triggering new intent in Microsoft Bot FrameworkMicrosoft Bot: Offline DirectLine GSS Unable to post activity and receive data backHow can I get my bot to post a message to a Microsoft Teams channel?Microsoft Bot displays unnecessary duplicated messages in WebChat?How to Prevent Both beginDialogAction and triggerAction from Executing in Microsoft Bot Builder SDKUnable to use TriggerAction to match with LUIS intent in Microsoft Bot framework (node.js)The second ConversationUpdate event will follow at the back of user first input?How to check the messages posted by the Bot in dialog for Microsoft botbuilder?

What is realistic quality of computer blueprints quickly backed up before apocalypse and their impact on future design?

Password management for kids - what's a good way to start?

Why would one number theorems, propositions and lemmas separately?

Could flaps be raised upward to serve as spoilers / lift dumpers?

Is this popular optical illusion made of a grey-scale image with coloured lines?

IBM mainframe classic executable file formats

Applied Meditation

Is it really a problem to declare that a visitor to the UK is my "girlfriend", in terms of her successfully getting a Standard Visitor visa?

Overprovisioning SSD on ubuntu. How? Ubuntu 19.04 Samsung SSD 860

What's the proper way of indicating that a car has reached its destination during a dialogue?

Checking whether the win-loss standings of a league are possible

How does Asimov's second law deal with contradictory orders from different people?

How to structure presentation to avoid getting questions that will be answered later in the presentation?

Why should I use a big powerstone instead of smaller ones?

Adding a (stair/baby) gate without facing walls

Skipping same old introductions

Using Python in a Bash Script

How to trick a fairly simplistic kill-counter?

Map vs. Table for index-specific operations on 2D arrays

"Will flex for food". What does this phrase mean?

Is it moral to remove/hide certain parts of a photo, as a photographer?

The grades of the students in a class

How to power down external drive safely

How can a class have multiple methods without breaking the single responsibility principle



In microsoft bot framework SDK V3 welcome message gets triggered twice


MS BotBuilder : How can the bot receive parameters and initiate conversation at webchat startMicrosoft Bot Framework - Proactive message, suspend current dialogHow to use Prompts.text without triggering new intent in Microsoft Bot FrameworkMicrosoft Bot: Offline DirectLine GSS Unable to post activity and receive data backHow can I get my bot to post a message to a Microsoft Teams channel?Microsoft Bot displays unnecessary duplicated messages in WebChat?How to Prevent Both beginDialogAction and triggerAction from Executing in Microsoft Bot Builder SDKUnable to use TriggerAction to match with LUIS intent in Microsoft Bot framework (node.js)The second ConversationUpdate event will follow at the back of user first input?How to check the messages posted by the Bot in dialog for Microsoft botbuilder?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.



Thanks in Advance



bot.on('conversationUpdate', function (message) 
if (message.membersAdded && message.membersAdded.length > 0)
message.membersAdded.forEach(function (identity)
if (identity.id === message.address.bot.id)
bot.beginDialog(message.address, '/');

);

);


Root Dialog code:



bot.dialog('/', [
function (session)
builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
,
function (session, results)
if (results.response.entity == "yes")
session.send("some text");

else if (results.response.entity == "no")
session.send("some text");


session.beginDialog('/nextDialog');

]);









share|improve this question
































    0















    I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.



    Thanks in Advance



    bot.on('conversationUpdate', function (message) 
    if (message.membersAdded && message.membersAdded.length > 0)
    message.membersAdded.forEach(function (identity)
    if (identity.id === message.address.bot.id)
    bot.beginDialog(message.address, '/');

    );

    );


    Root Dialog code:



    bot.dialog('/', [
    function (session)
    builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
    ,
    function (session, results)
    if (results.response.entity == "yes")
    session.send("some text");

    else if (results.response.entity == "no")
    session.send("some text");


    session.beginDialog('/nextDialog');

    ]);









    share|improve this question




























      0












      0








      0








      I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.



      Thanks in Advance



      bot.on('conversationUpdate', function (message) 
      if (message.membersAdded && message.membersAdded.length > 0)
      message.membersAdded.forEach(function (identity)
      if (identity.id === message.address.bot.id)
      bot.beginDialog(message.address, '/');

      );

      );


      Root Dialog code:



      bot.dialog('/', [
      function (session)
      builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
      ,
      function (session, results)
      if (results.response.entity == "yes")
      session.send("some text");

      else if (results.response.entity == "no")
      session.send("some text");


      session.beginDialog('/nextDialog');

      ]);









      share|improve this question
















      I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.



      Thanks in Advance



      bot.on('conversationUpdate', function (message) 
      if (message.membersAdded && message.membersAdded.length > 0)
      message.membersAdded.forEach(function (identity)
      if (identity.id === message.address.bot.id)
      bot.beginDialog(message.address, '/');

      );

      );


      Root Dialog code:



      bot.dialog('/', [
      function (session)
      builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
      ,
      function (session, results)
      if (results.response.entity == "yes")
      session.send("some text");

      else if (results.response.entity == "no")
      session.send("some text");


      session.beginDialog('/nextDialog');

      ]);






      node.js azure botframework






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 27 at 14:36







      sarat

















      asked Mar 26 at 23:50









      saratsarat

      606 bronze badges




      606 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          1














          This seems to be a known issue
          https://github.com/Microsoft/BotBuilder/issues/4387






          share|improve this answer

























          • Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.

            – sarat
            Mar 27 at 15:49











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367807%2fin-microsoft-bot-framework-sdk-v3-welcome-message-gets-triggered-twice%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          This seems to be a known issue
          https://github.com/Microsoft/BotBuilder/issues/4387






          share|improve this answer

























          • Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.

            – sarat
            Mar 27 at 15:49
















          1














          This seems to be a known issue
          https://github.com/Microsoft/BotBuilder/issues/4387






          share|improve this answer

























          • Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.

            – sarat
            Mar 27 at 15:49














          1












          1








          1







          This seems to be a known issue
          https://github.com/Microsoft/BotBuilder/issues/4387






          share|improve this answer













          This seems to be a known issue
          https://github.com/Microsoft/BotBuilder/issues/4387







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 27 at 14:54









          Hainan.ZHainan.Z

          5614 silver badges9 bronze badges




          5614 silver badges9 bronze badges















          • Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.

            – sarat
            Mar 27 at 15:49


















          • Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.

            – sarat
            Mar 27 at 15:49

















          Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.

          – sarat
          Mar 27 at 15:49






          Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.

          – sarat
          Mar 27 at 15:49







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367807%2fin-microsoft-bot-framework-sdk-v3-welcome-message-gets-triggered-twice%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해