I am connecting a Sharepoint application to Rasa X and am getting a “ERR_CONNECTION_RESET” error when i attempt to talk to the bot in Sharepoint… I followed am using scalable minds and followed along with this --> GitHub - scalableminds/chatroom: React-based Chatroom Component for Rasa Stack
Below is the content of my script in Sharepoint.
<script type="text/javascript">
var chatroom = new window.Chatroom({
host: "http://<RASA-VM-IP>:5005",
title: "Chat with Mike",
container: document.querySelector(".chat-container"),
welcomeMessage: "Hi, I am Mike. How may I help you?",
speechRecognition: "en-US",
voiceLang: "en-US"
});
chatroom.openChat();
</script>
I have the “rest:” line in my credentials.yml file, and start up the rasa server with --cors “" (in the docker-compose.yml file). Maybe i’m getting this error because i’m running docker? Or maybe it’s because Sharepoint and Rasa X are running on 2 different machines? If that’s the case, I would have thought the --cors "” would fix that.
Any ideas?