'listening on http://[::]:52885'
why does the emulator try this. when all I am trying is available locally.
hi @ARArun The emulator emulates the direct line service. The bot is running on one port and the emulated service is running on another (52885 in this case).
Are you specifying appid/password for the bot in your test? Whatever you are doing in your appsettings.json/.env you need to supply in the emulator dialog (blank or values)
@dmvtech Thanks for the reply.
I am trying to run it via python. So i guess I have a config.py which looks something like this
class DefaultConfig:
PORT = 3978
APP_ID = os.environ.get("MicrosoftAppId", "")
APP_PASSWORD = os.environ.get("MicrosoftAppPassword", "")
While running the emulator I am not inputting any values for AppId or Password.
What changes should I make.
Thanks again
That should be all you need. I'll look more on my end and let you know.
Hi @ARArun Can you confirm you are using this echobot sample? Or are you using one of these?:
@dmvtech The issue got resolved. I was running the program from first link. Thanks for you time. When I removed the proxy settings from my environment variables(HTTP_PROXY and HTTPS_PROXY). It started working fine.
Thanks again for you time