applayerpluginsandutils/httpprotocolplugins/httpclient/chttpclienttransaction.cpp
branchRCL_3
changeset 19 c0c2f28ace9c
parent 18 5f1cd966e0d9
child 20 a0da872af3fa
--- a/applayerpluginsandutils/httpprotocolplugins/httpclient/chttpclienttransaction.cpp	Thu Aug 19 10:27:19 2010 +0300
+++ b/applayerpluginsandutils/httpprotocolplugins/httpclient/chttpclienttransaction.cpp	Tue Aug 31 15:44:10 2010 +0300
@@ -110,28 +110,3 @@
 		}
 	return needDisconnectNotification;	
 	}
-
-
-TBool CHttpClientTransaction::PropogateDefaultError() const
-    {
-    TBool noRetry=EFalse;
-    RHTTPTransaction myTransaction = Transaction (); 
-    RHTTPSession mySession = myTransaction.Session ();
-    RStringPool myStringPool ( mySession.StringPool () );
-    RStringF retrySet = myStringPool.StringF( HTTP::ENotifyOnDisconnect, iStringTable );
-
-    RHTTPPropertySet transactionProperties = myTransaction.PropertySet();
-    RHTTPPropertySet sessionProperties = mySession.ConnectionInfo();
-        
-    THTTPHdrVal hdrVal;
-        
-    // Check the transaction properties for the disconnect notification
-    // If it is set then it should be used.
-    if ( transactionProperties.Property ( retrySet, hdrVal ) || sessionProperties.Property ( retrySet, hdrVal ) )   
-        {
-        __ASSERT_DEBUG( hdrVal.Type() == THTTPHdrVal::KStrFVal, User::Invariant() );
-            
-        noRetry = ( hdrVal.StrF().Index(iStringTable) == HTTP::EHttpPropagateDefaultError );
-        }
-    return noRetry;  
-    }