equal
deleted
inserted
replaced
52 // |
52 // |
53 // --------------------------------------------------------- |
53 // --------------------------------------------------------- |
54 // |
54 // |
55 void CXcapHttpOperation::BaseConstructL() |
55 void CXcapHttpOperation::BaseConstructL() |
56 { |
56 { |
57 #ifdef _DEBUG |
|
58 iOperationFactory.WriteToLog( _L8( "-> CXcapHttpOperation::BaseConstructL" ) ); |
|
59 #endif |
|
60 iXmlParser = &iTargetDoc.Protocol().Parser(); |
57 iXmlParser = &iTargetDoc.Protocol().Parser(); |
61 iUriParser = CXcapUriParser::NewL( iTargetDoc, iOperationFactory ); |
58 iUriParser = CXcapUriParser::NewL( iTargetDoc, iOperationFactory ); |
62 #ifdef _DEBUG |
59 #ifdef _DEBUG |
63 TPtrC8 contType( iTargetDoc.ApplicationUsage().ContentType() ); |
60 TPtrC8 contType( iTargetDoc.ApplicationUsage().ContentType() ); |
64 iOperationFactory.WriteToLog( _L8( " Content-Type: %S" ), &contType ); |
61 iOperationFactory.WriteToLog( _L8( " Content-Type: %S" ), &contType ); |
65 #endif |
62 #endif |
66 CActiveScheduler::Add( this ); |
63 CActiveScheduler::Add( this ); |
67 #ifdef _DEBUG |
|
68 iOperationFactory.WriteToLog( _L8( "<- CXcapHttpOperation::BaseConstructL" ) ); |
|
69 #endif |
|
70 } |
64 } |
71 |
65 |
72 // --------------------------------------------------------- |
66 // --------------------------------------------------------- |
73 // Destructor |
67 // Destructor |
74 // |
68 // |