void Enable(int argc, char *argv[], BBWinNet & bbobj) { cout << "Sending enable ...\n"; bbobj.SetHostName(argv[3]); cout << "hostname defined to: " << argv[3] << "\n"; try { bbobj.Enable(argv[4]); } catch (BBWinNetException ex) { cout << "Error : " << ex.getMessage() << "\n"; } }
void BBWinAgentManager::Enable(LPCTSTR testName) { bbdisplay_t::iterator itr; BBWinNet hobNet; assert(testName != NULL); PrepareBBWinNetObj(hobNet); for ( itr = m_bbdisplay.begin(); itr != m_bbdisplay.end(); ++itr) { hobNet.SetBBDisplay((*itr)); try { hobNet.Enable(testName); } catch (BBWinNetException ex) { if (m_logReportFailure) { string mes; mes = "Sending report to " + (*itr) + " failed."; LPCTSTR arg[] = {m_agentName.c_str(), mes.c_str(), NULL}; m_log->reportWarnEvent(BBWIN_AGENT, EVENT_MESSAGE_AGENT, 2, arg); } continue ; } } }