Hi,
in b4j_ws.js if webapp is listening on port 80 internet explorer rise an error.
to correct it you must change
to
to ensure that the : are not added to the default n 80 port that is blank.
regards Paolo
in b4j_ws.js if webapp is listening on port 80 internet explorer rise an error.
to correct it you must change
B4X:
fullpath = ((l.protocol === "https:") ? "wss://" : "ws://") + l.hostname + ":" + l.port + absolutePath;
to
B4X:
if (l.port != 0) {
fullpath = ((l.protocol === "https:") ? "wss://" : "ws://") + l.hostname + ":" + l.port + absolutePath;
} else {
fullpath = ((l.protocol === "https:") ? "wss://" : "ws://") + l.hostname + absolutePath;
}
regards Paolo