Index: sample/pingpong/main.cpp
===================================================================
--- sample/pingpong/main.cpp	(revision 4837)
+++ sample/pingpong/main.cpp	(revision 4866)
@@ -7,5 +7,35 @@
 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
