2

Is it possible to deploy bot in local IIS and then link it to a custom chat application which we create? if possible, how?

Megan
  • 1,000
  • 1
  • 14
  • 44
SMD
  • 87
  • 9
  • Possible duplicate of [Bot Framework without Azure possible?](https://stackoverflow.com/questions/40888489/bot-framework-without-azure-possible) – Ezequiel Jadib Jun 15 '17 at 09:34

1 Answers1

4

You can deploy it in IIS, I did so successfully. I published it to a folder (using the file system method in VS 2015) and then created a new Application in IIS whose /root folder was the location of the published bot.

Make sure that you enable POST requests for the site after you publish it.

Request Filtering

HTTP Verb Settings

Also make sure you have a SSL certificate.

Megan
  • 1,000
  • 1
  • 14
  • 44