OnRequest Event doesn't fire

Add-in Express™ Support Service
That's what is more important than anything else

OnRequest Event doesn't fire
 
Gokhan Yurt


Guest


I'm trying to write an addon for a parental control system and I need to get all the request made from IE. OnRequest event seems the most proper event to use but it doesn't fire at all.


        private void IEModule_OnRequest(object sender, ADXIERequestEventArgs e)
        {
            MessageBox.Show("Request Url: " + e.Url);
        }


There's not lots of lines where I could make a mistake, its just one line. I would appreciate any help.

Thanks,
Posted 04 Feb, 2013 07:04:07 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Hi Gokhan,

You just need to set the 'HandleHTTPNegotiations' property of the iemodule to true.
Posted 04 Feb, 2013 09:07:32 Top