internet explorer 7 - Socket.io Node.js error in IE7 - Access Denied -


i using socket.io connect node server using following script:

$socket = new io.socket(null,{port:8086,remembertransport:false});   $socket.connect(); 

if works fine in ie8/9, chrome, safari & ff.

when try in ie7, connection established following error pops up:

an error has occured in script on page. error: access denied. 

the client disconnected node server.

i runnig node.js v0.4.1.

does 1 have ideas?

thank you.

it caused because did not have secure:true statment in io.connect. should read:

 var socket = new io.socket(null, {port: 443, secure: true, remembertransport: false});  socket.connect(); 

Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -