Index: sample/pingpong/main.cpp
===================================================================
--- sample/pingpong/main.cpp	(revision 4888)
+++ sample/pingpong/main.cpp	(revision 4895)
@@ -7,5 +7,31 @@
 using ariba::application::pingpong::PingPong;
 
+
+//*************************************************
+
+#include "ariba/utility/bootstrap/BootstrapManager.h"
+using ariba::utility::BootstrapManager;
+
+void debug(){
+	StartupWrapper::startSystem();
+
+	BootstrapManager& manager = BootstrapManager::instance();
+	manager.registerModule( BootstrapManager::BootstrapTypePeriodicBroadcast );
+
+	manager.publish("testname", "testinfo1", "testinfo2", "testinfo3");
+	getchar();
+	manager.revoke("testname");
+
+	manager.unregisterModule( BootstrapManager::BootstrapTypePeriodicBroadcast );
+	StartupWrapper::stopSystem();
+}
+
+//*************************************************
+
 int main( int argc, char** argv ) {
+
+	debug();
+	return 0;
+
 
 	// get config file
