Please!! Someone can help me to use http filter?
i'm using it in this way
MHFLoad function works! but RunL doesn't work. can you help me...pleaseCode:void CDemoFilter::ConstructL(RHTTPSession& aSession) { iFilterName = aSession.StringPool().OpenFString(KDemoFilterName); aSession.FilterCollection().AddFilterL(*this, THTTPEvent::EAll, EProtocolHandler, iFilterName); } void CDemoFilter::MHFRunL(RHTTPTransaction aTransaction, const THTTPEvent& aEvent) { // called when a RHTTPTransaction event happens. if (aEvent == THTTPEvent::ESubmit) { ..... } } void CDemoFilter::MHFSessionRunL(const THTTPSessionEvent& aEvent) { // called when an RHTTPSession even happens. ... }



