我正在构建一个使用Web套接字的Web应用程序,它可以在脱机状态下正常运行,但是在azure上在线托管时,它会返回
如果我使用的是端口443
failed: Error during WebSocket handshake: Unexpected response code: 302
或者如果我正在使用其他端口(8080,...)
failed: Error in connection establishment: net::ERR_CONNECTION_TIMED_OUT
我尝试了类似的解决方案 websockets connection does time out 但到目前为止没有成功, 在我的azure帐户中,我已启用
当我用Jaavscript书写时会出现问题
$(document).ready(function(){
var socket = new WebSocket('wss://mywebsiteonazure.azurewebsites.net:443/chat/');
socket.onopen = websocket_welcome;
...
...