Hello,
Thank you for your reply.
I got a Javascript block message.
// Proxy Konfig fuer STAR Ramsen
// marcel bolli, mb, 200503031
// modified: 200901061 dg
// Dok: http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
//var debug = 1;
function FindProxyForURL(url, host) {
// if (debug && isInNet(myIpAddress(), "10.11.20.89", "255.255.255.255")) {
// alert("Checking...\n\nURL: " + url + "\n\nHost: " + host);
// }
if (shExpMatch(url, "http*")) {
if (
dnsDomainIs(host, ".ram.ch.star-group.net") || // intra
dnsDomainIs(host, "portal.telecampus.ch") || // Telecampus
dnsDomainIs(host, "star-event.webex.com") || // webex
dnsDomainIs(host, "www.mIDentity-update.de") || // Comerzbank update
isPlainHostName(host) || // Eigene Server
isInNet(host, "193.103.233.0", "255.255.255.0") ||
isInNet(host, "10.11.0.0", "255.255.0.0") || // Private Netze
isInNet(host, "172.16.0.0", "255.255.0.0") ||
isInNet(host, "192.168.0.0", "255.255.0.0") ||
dnsDomainIs(host, "localhost") ||
dnsDomainIs(host, "127.0.0.1") ||
!isResolvable(host) // host not found in DNS
) {
return "DIRECT";
} else {
return "PROXY proxy.ram.ch.star-group.net:3128; DIRECT";
}
} else {
return "DIRECT";
}
}
Maybe the problem comes on PRoxy server. The problem shows just Flash 10a, 10c version.
Is there any solution about this problem.
Thanks a lot.