I use the following code in my ActiveX control:
Type userControlType = typeof(System.Windows.Forms.UserControl);
Type oleObjectType =
userControlType.Assembly.GetType("System.Windows.Forms.UnsafeNativeMethods+IOleObject");
System.Reflection.MethodInfo method = oleObjectType.GetMethod("GetClientSite");
object myppSite = method.Invoke(this, null);
//IWebBrowser2 ppSite = (IWebBrowser2)myppSite;
ISvcProvider ISP = myppSite as ISvcProvider;
if (ISP != null)
{
Guid IID_IUnknown = new
Guid("{00000000-0000-0000-C000-000000000046}");
Guid IID_IWebBrowserApp = new
Guid("{0002DF05-0000-0000-C000-000000000046}");
object pOut;
try
{
ISP.QueryService(ref IID_IWebBrowserApp, ref IID_IUnknown, out pOut);
Explorer = (WebBrowserClass)Marshal.CreateWrapperOfType(pOut as
IWebBrowser2, typeof(WebBrowserClass));
DWebBrowserEvents2_Event ev = (WebBrowserClass)Marshal.CreateWrapperOfType(pOut as
DWebBrowserEvents2_Event, typeof(WebBrowserClass));
ev.OnQuit += new DWebBrowserEvents2_OnQuitEventHandler(webBrowser_OnQuit);
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message, "Talkative Browser");
}
}
Works fine, when accessing the page with my AX control via HTTP, but via HTTPS/SSL it dosn't work at all. The DWebBrowserEvents2_OnQuitEventHandler doesn't fire my method, and IWebBrowser2 is not working as well, even thou there are no exceptions thrown.
EDIT: After some playing around with IE and my AX I've noticed that:
- IE uses IObjectSafety.GetInterfaceSafetyOptions implementation on my AX to check for INTERFACESAFE_FOR_UNTRUSTED_CALLER for {a6ef9860-c720-11d0-9337-00a0c90dcaa9} IDispatchEx.
- Then IE uses IObjectSafety.SetInterfaceSafetyOptions to set this on.
- This does not happen while using non-SSL connection.
- Should I implement IDispatchEx on my control? Will this affect the IDispatch that is already implemented in System.Windows.Forms.UserControl (base class for my AX control)?
- Should I rephrase the title of my question after I made such discovery?
