HTTP Bind & SparkWeb

Hi,

Is it possible to have HTTP Bind setup run on ports 80/443 instead of 7070/7443? I understand the HTTP Bind setup has to be adjust accordingly, but what about the SparkWeb client itself? Is there a setting to have SparkWeb use HTTP Bind with port 80, or does this require changes from the source?

Thanks.

Look at index.html. It uses the port on the SparkWeb URL

function jive_sparkweb_getConfig()
{

var username = getPageParameter(‘username’, ‘’);
var password = getPageParameter(‘password’, ‘’);
var autologin = getPageParameter(‘autologin’, ‘false’);
var webapp = getPageParameter(‘webapp’, ‘red5’);
var conn = getPageParameter(‘conn’, ‘socket’); // socket, http or rtmp (using xmppurl below)
var tls = getPageParameter(‘tls’, ‘true’); // socket, use TLS or not

return {

httpLabel: “Ignite”,
httpURL: “http://www.igniterealtime.org”,
username: username,
password: password,
server: window.location.hostname,

port: conn == “socket” ? 5222 : window.location.port,

red5url: conn == “socket” ? “rtmp:/sip” : “rtmpt::8000/sip”,
xmppurl: “rtmpt::8000/xmpp”,
webapp: webapp,
connectionType: conn,
connectionTLS: tls,
policyFileURL: “xmlsocket://” + window.location.hostname + “:5229”,
webcamAvatar: “false”,
visualPresence: 120,
historyChats: 2,
autologin: autologin
};
}

hi;

How to upgrade to new red5 version?

Can you tell me the process?

Thanks!

Thank you for your help.

Is the following what I’m supposed to do?

var conn = getPageParameter(‘conn’, ‘http’);

port: conn == “http” ? 80 : window.location.port,