Fix xml representations
[anna.git] / source / diameter.comm / Entity.cpp
index d5b3dd3..fc07148 100644 (file)
@@ -40,6 +40,7 @@ void Entity::initialize() throw() {
   a_category = 0;
   a_lastUsedResource = NULL;
   a_balance = false;
+  a_sessionBasedModelsType = SessionBasedModelsType::SessionIdLowPart;
 }
 
 
@@ -353,9 +354,9 @@ std::string Entity::asString() const throw() {
   std::string originHost = a_engine->getOriginHostName();
 
   result += "Parent Engine Origin-Realm: ";
-  result += (originRealm != "") ? originRealm:"<not configured>";
+  result += (originRealm != "") ? originRealm:"[not configured]";
   result += " | Parent Engine Origin-Host: ";
-  result += (originHost != "") ? originHost:"<not configured>";
+  result += (originHost != "") ? originHost:"[not configured]";
 
   result += " | Category: ";
   result += anna::functions::asString(a_category);