Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~487 People Reached
Favorite Tags
Member Avatar for inmar

Hi I'm using ACE_Thread_Manager to spawn a thread. But it is not spawning the thread. After including `ACE_Process_Manager::instance()->open();` in the main then thread is spawned. The sample code is: class DataType{ public: DataType():data(0){} void increment(){ data++;} void set(int new_data){ data=new_data;} void decrement(){ data--;} int get(){return data;} private: int data; }; …

0
75
Member Avatar for inmar

Hi, In Exchange 2007, an attribute msExchServerRedundantMachines will list all the server names which are part of that cluster. Is there any attribute for Exchange 2003 to list the server names of a cluster ? or Is there any way to achieve this task ? Any help plz........ Thanks Inmar

0
103
Member Avatar for inmar

Hi, I'm trying to use the system() command to invoke "eseutil.exe" and store the output in a text file using VC++. The way i used this command is mentioned below. code snippet: ========= [CODE]string command= "\"C:\\Program Files\\Microsoft\\Exchange Server\\Bin\\eseutil.exe\" /mh \"F:\\fsg\\edb\\mailbox database.edb\" | find \"Log Required\" >output.txt"; system(command.c_str());[/CODE] Compilation is success. …

Member Avatar for donaldw
0
309