vote up 0 vote down star

I use an ActiveX control which is just a HTTP handler. It sends out an HTTP request, gets the response and fires an event to the user. When the user is not requesting the ActiveX control is pretty much dormant. It just waits for a user request to send another HTTP request.

As long as the window in which the OCX resides does not change (losing focus, getting focus, etc) the memory stays calm. For each of the above said operations I lose approx 400 bytes.

Where should I look for a possible leak?

flag

80% accept rate
Information which you provided is not enough. Please add most detailed description (maybe with parts of code). – bb Mar 10 at 10:44
@MSN :-) thanks. One caveat I forgot to mention is in a MFC, C++ app it doesn't leak anymore. But in a .Net C# app it leaks even after the OANCCACHE=1 env variable settings. May be a .Net AxInterop thingy. Using windbg is painfully hard in .Net world to fight leaks :-( – rptony Mar 14 at 13:11

2 Answers

vote up 1 vote down check

Assuming that the HTTP string is passed down via BSTRs, you might be running into BSTR caching. To verify, you'll want to set the environment variable OANOCACHE to 1 or call OaSetNoCache() directly. The environment variable should be easier to test with.

link|flag
vote up 0 vote down

Look to off-the-shelf profiling tools that may detect this leak (even debug mode in VC has an option of tracing leaked allocations).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.