Hi Thomas, You cannot initialize non-integral static data members inside the class. Try this: // .h file class RemoteManager:public Runnable{ ... public: ... --> static const char MANAGEMENT_INTERFACE[]; ... }; // .cpp file const char RemoteManager::MANAGEMENT_INTERFACE[] = "127.0.0.1"; --Eljay