--- a/connectionmonitoring/connmon/connectionmonitor/src/ConnMonServ.cpp Thu Aug 19 10:18:49 2010 +0300
+++ b/connectionmonitoring/connmon/connectionmonitor/src/ConnMonServ.cpp Tue Aug 31 15:35:44 2010 +0300
@@ -352,6 +352,14 @@
// Identify ourselves and open for service
StartL( KConnectionMonitorServerName );
+ //Start Indicator observer process
+ _LIT(KIndicatorObserverExeFile,"indicatorobserver.exe");
+ _LIT(KIndicatorObserverExeFileCmd,"");
+ RProcess proc;
+ User::LeaveIfError(proc.Create(KIndicatorObserverExeFile,KIndicatorObserverExeFileCmd));
+ proc.Resume();
+ proc.Close(); // Closes the handle, not the process.
+
LOGIT("ConstructL: Server started successfully")
LOGEXITFN("CConnMonServer::ConstructL()")
}