I use a msoft web browser control to access files on the web.
it works fine with non-secured sites, for example, the command:
l_file_name = 'http://50.26.26.26/User_Docs/help_file.pdf'
w_web_browser.ole_1.object.Navigate( l_file_name )
works just fine and loads help_file.pdf to the control.
however, trying to access a file from a secured site
l_file_name = 'https://50.26.26.26/User_Docs/help_file.pdf'
w_web_browser.ole_1.object.Navigate( l_file_name )
displays an error
The website declined to show this webpage
am I missing some kind of setup here?
please advise
thanks all/
sasha