L. Full
L. Full

Reputation: 439

Cannot connect C# Basic bot to Bot Framework Emulator

This is my current screen when I have tried to load my bot into the bot Framework Emulator: enter image description here

And this is what I have entered within the setting for my bot: enter image description here

I have not modified the code I have only entered the MicrosoftAppId, MicrosoftAppPassword, and the AzureWebStorage.

Any help would be much appreciated.

Upvotes: 1

Views: 268

Answers (2)

Corina
Corina

Reputation: 843

  • As @geektrainer mentioned, make sure that the port number is correct (3984 is not one of the default ports).
  • Adding http:// to the address is required.
  • If you are entering the MicrosoftAppId and MicrosoftAppPassword within your code, they also need to be entered into the emulator (under Application ID and Application Password).

Upvotes: 0

geektrainer
geektrainer

Reputation: 41

Assuming you started the bot correctly, the two things that jump out at me is making sure the port number is correct and (my main guess) adding http:// to the beginning of the address registered in the emulator.

Upvotes: 1

Related Questions