CHttpFilterProxyInterface

Login to reply to this topic.
Wed, 2005-10-12 08:42
Forum Nokia Champion
Joined: 2004-06-30
Forum posts: 36
In my HTTP session I am using CHttpFilterProxyInterface::InstallFilterL() so my connection can use an wap APN.
It's working fine on a 6680, but it crashes on 6630 and emulator.

Code:
   TRAPD(err, iSession.OpenL());
   if(err != KErrNone)
   {
      // Most common error; no access point configured, and session creation
      // leaves with KErrNotFound.
      User::Leave(KErrNotFound);
   }
   //Filters for HTTP proxy. !! crash the emulator and 6630
   CHttpFilterProxyInterface::InstallFilterL(iSession);
#endif

Any idea ?
  • Login to reply to this topic.