Index: trunk/FACT++/dim/src/examples/test_client.c
===================================================================
--- trunk/FACT++/dim/src/examples/test_client.c	(revision 11881)
+++ trunk/FACT++/dim/src/examples/test_client.c	(revision 12585)
@@ -65,7 +65,8 @@
 {
 	char *format;
-
+/*
 	format = dic_get_format(0);
 	printf("Received format = %s %08x, %d\n",format, format, *size);
+*/
 	if(*tag == 1100)
 	{
@@ -94,5 +95,5 @@
 	}
 	else
-		printf("%s Received %s %08X for Service%03d\n",client_str,buf, buf,*tag);
+		printf("%s Received %s for Service%03d\n",client_str,buf,*tag);
 
 /*
@@ -124,8 +125,6 @@
 	{
 		sprintf(str,"%s/Service_%03d",argv[2],i);
-//		dic_info_service( str, TIMED, 10, 0, 0, rout, i,
-//			  "No Link", 8 );
 		dic_info_service( str, TIMED, 10, 0, 0, rout, i,
-			  NULL, 0 );
+			  "No Link", 8 );
 	}
 	
Index: trunk/FACT++/dim/src/examples/test_server.c
===================================================================
--- trunk/FACT++/dim/src/examples/test_server.c	(revision 11881)
+++ trunk/FACT++/dim/src/examples/test_server.c	(revision 12585)
@@ -28,4 +28,5 @@
 
 	if(tag){}
+	dim_print_date_time();
 	printf("Command received, size = %d, TT size = %d:\n", *size,
 	       (int)sizeof(TT));
@@ -70,4 +71,5 @@
 	char extra_dns[128];
 	int new_dns = 0;
+	int index = 0;
 /*
 	int buf_sz, buf_sz1;
@@ -156,4 +158,5 @@
 	while(1)
 	{
+		index++;
 /*
 		for(i = 0; i < 20; i++)
Index: trunk/FACT++/dim/src/examples/test_server.cxx
===================================================================
--- trunk/FACT++/dim/src/examples/test_server.cxx	(revision 11881)
+++ trunk/FACT++/dim/src/examples/test_server.cxx	(revision 12585)
@@ -1,62 +1,2 @@
-//============================================================================
-// Name        : emptyDimFormat.cpp
-// Author      : Etienne Lyard etienne.lyard@unige.ch
-// Version     : 00
-// Copyright   :
-// Description : Demonstrates the occurence of an empty Dim format from the client's perspective
-//============================================================================
-/*
-#include <dic.hxx>
-#include <dis.hxx>
-#include <iostream>
-using namespace std;
-
-class EmptyServiceSubscriber : public DimInfo
-{
-    DimStampedInfo* info;
-	int noLink;
-public:
-    EmptyServiceSubscriber()
-    {
-//        info = new DimStampedInfo("TIME/EMPTY", const_cast<char*>(""), this);
-		noLink = -1;
-        info = new DimStampedInfo("TIME/EMPTY", noLink, this);
-    }
-    void infoHandler()
-    {
-        DimInfo* I = getInfo();
-		int data;
-        if (I == info)
-		{
-			data = I->getInt();
-//		cout << "EMPTY SERVICE UPDATED. " << "Format: " << I->getFormat() << endl;
-			cout << "EMPTY SERVICE UPDATED. " << data << " Format: " << I->getFormat() << endl;
-		}
-    }
-};
-
-int main(int, const char**)
-{
-    DimServer::start("TIME");
-
-    int emptyFormatVariable = 0;
-    DimService* emptyFormatService = new DimService("TIME/EMPTY", "I:1", &emptyFormatVariable, sizeof(long));
-    EmptyServiceSubscriber mySubscriber;
-    //The three lines below create (most of the time) an empty format on the client side.
-    //We must be able to deal with such cases in our framework because services can be stopped and re-spawned at any time
-    delete emptyFormatService;
-    usleep(1000000);
-    emptyFormatService = new DimService("TIME/EMPTY", "I:1", &emptyFormatVariable, sizeof(long));
-
-    while (1)
-    {
-        emptyFormatService->updateService();
-        usleep(1000000);
-    }
-
-	return 0;
-}
-*/
-
 #include <iostream>
 #include <dis.hxx>
