Home
The OLE web browser should not be used anymore (not secure)
Rule description
- OLE Web Browser not secured
Non-compliant Code Example
OLEObject IE
string ls_ie
string ls_url
IE = CREATE OLEObject
IE.ConnectToNewObject("InternetExplorer.Application") //Non compliant code
ls_ie = IE.Fullname()
ls_url = "http://wwww.visual-expert.com"
Run(ls_ie + " " + ls_url)
Compliant Code Example
Integer li_rtn
Li_rtn = Wb_1.Navigate("http://www.visual-expert.com") // Wb_1 is the WebBrowser control //Compliant code