pombreda / pygowave-server

Automatically exported from code.google.com/p/pygowave-server
Apache License 2.0
0 stars 0 forks source link

Waves don't work on IE7/Opera10 #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
Try to enter a Wave in one of these Browsers (default security settings).
Does not occur on Opera 9, Firefox and Chrome (Safari is untested).

What reasons could cause the problem?
Browser security settings and firewalls may prevent the use of port 9000 
(which is used by the internal messaging system).

What steps are to be taken?
Use proxying through port 80. This should not harm the underlying web 
server, as the TCP communicaion framework does not keep the connections 
open for too long (rather reconnects at intervals).

Original issue reported on code.google.com by patrick....@googlemail.com on 14 Jun 2009 at 9:03

GoogleCodeExporter commented 9 years ago
The real reason behind this error seems to be that the contentDocument property 
of 
an IFrame cannot be accessed by JavaScripts. One has to use 
document.frames[...] 
instead.

Please review.

Original comment by patrick....@googlemail.com on 16 Jun 2009 at 3:55