Hi,
I'm not an expert in ISA server, my issue is the following:
var wsUri = "ws://192.168.1.7:8887";
websocket = new WebSocket(wsUri);
these two lines work fine. But when I try to get 192.168.1.7 from the external computers I set up rule in ISA server: websocket.domain.com -> (redirect to 192.168.1.7, bridging = redirect request to HTTP port 8887)
And the following doesn't work:
var wsUri = "ws://websocket.domain.com";
websocket = new WebSocket(wsUri);
I see in ISA log "Status: 10061 No connection could be made because the target machine actively refused it." It seems that websocket doesn't transform message to HTTP so that it tunneled to the destination server.
Thanks in advance!