Hi,
I was modifying one of my old application. I used http engine from wiki page for http post, which I couldn't found now. It has CClientEngine class. Anyway, my problem is whenever my application starts a http post process it doesn't return any data back. After some work with logs, I found out the problem occurs because of that function.
At that code, function logs error code -30207. I don't know where to look with that error code. Please help me with this problem.Code:void CClientEngine::RunL() { TInt statusCode = iStatus.Int(); if (!iConnectionSetupDone && statusCode == KErrNone) { // Connection done ok iConnectionSetupDone = ETrue; // Register for mobility API iMobility = CActiveCommsMobilityApiExt::NewL(iConnection, *this); // Start selected HTTP action switch (iEngineState) { case EIdle: { CancelTransaction(); break; } case EGet: { DoHTTPGetL(); break; } case EPost: { DoHTTPPostL(); break; } }; } else { TBuf8<50> errorBuff; _LIT8(error, "Con Setup Err: %d"); errorBuff.Format(error,statusCode); MYdebug->Write8(_L8("I"), _L8("RunL"), errorBuff); } }

Reply With Quote

