Robin wrote:
I don't know. I'm able to load a localhost address from the
demo just fine...
The problem seems to be with IE7.
I can load pages from localhost into ActiveX_IEHtmlWindow on a machine
running IE6, but not on one running IE7.
(Its important to clear the IE cache to see this, as
ActiveX_IEHtmlWindow will happily load localhost pages from the cache.)
Eg the SimpleHTTPServer program below will serve pages from whatever
directory it's run in, and works fine in ie or Firefox, but not in an
ActiveX_IEHtmlWindow on a machine running ie7, either in the wxPython
demo, or in my own application.
ยทยทยท
#-----------------------------------------------------
import SimpleHTTPServer
import BaseHTTPServer
server_class=BaseHTTPServer.HTTPServer
handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler
server_address = ('localhost', 80)
httpd = server_class(server_address, handler_class)
httpd.serve_forever()
#-----------------------------------------------------
Any further ideas?
Paul Wray
**********************************************************************
This message is intended for the addressee named and may contain
privileged information or confidential information or both. If you
are not the intended recipient please delete it and notify the sender.
**********************************************************************