summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
diff options
context:
space:
mode:
authordengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-11-19 01:56:29 +0000
committerdengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-11-19 01:56:29 +0000
commitd7b518731b3f199cd86c6c62ced1a69a1f60c33c (patch)
tree8717b75ab4ffe910361c7a7139ddb918933dcbf2 /TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
parent91e075f106e17f6443ee86a44fd395bf9ec6e12a (diff)
downloadATCD-d7b518731b3f199cd86c6c62ced1a69a1f60c33c.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp')
-rw-r--r--TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp b/TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
index c1c5a482a52..d36da4e8ca7 100644
--- a/TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
+++ b/TAO/CIAO/DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
@@ -714,8 +714,8 @@ get_outgoing_connections_i (const char * instname,
// and "consumer side port name".
if (retv[len].kind == Deployment::rtecEventPublisher ||
retv[len].kind == Deployment::rtecEventEmitter ||
- retv[len].kind == Deployment::ecEventPublisher ||
- retv[len].kind == Deployment::ecEventEmitter ||
+ retv[len].kind == Deployment::EventPublisher ||
+ retv[len].kind == Deployment::EventEmitter ||
retv[len].kind == Deployment::nsEventPublisher ||
retv[len].kind == Deployment::nsEventEmitter)
{
@@ -751,15 +751,19 @@ dump_connections (const ::Deployment::Connections & connections)
ACE_DEBUG ((LM_DEBUG, "instanceName: %s\n", connections[i].instanceName.in ()));
ACE_DEBUG ((LM_DEBUG, "portName: %s\n", connections[i].portName.in ()));
ACE_DEBUG ((LM_DEBUG, "portkind: "));
+
switch (connections[i].kind) {
- case Deployment::Facet: ACE_DEBUG ((LM_DEBUG, "Facet\n")); break;
- case Deployment::SimplexReceptacle: ACE_DEBUG ((LM_DEBUG, "SimplexReceptacle\n")); break;
- case Deployment::MultiplexReceptacle: ACE_DEBUG ((LM_DEBUG, "MultiplexReceptacle\n")); break;
- case Deployment::EventEmitter: ACE_DEBUG ((LM_DEBUG, "EventEmitter\n")); break;
- case Deployment::EventPublisher: ACE_DEBUG ((LM_DEBUG, "EventPublisher\n")); break;
- case Deployment::EventConsumer: ACE_DEBUG ((LM_DEBUG, "EventConsumer\n")); break;
+ case Deployment::Facet: ACE_DEBUG ((LM_DEBUG, "Facet\n")); break;
+ case Deployment::SimplexReceptacle: ACE_DEBUG ((LM_DEBUG, "SimplexReceptacle\n")); break;
+ case Deployment::MultiplexReceptacle: ACE_DEBUG ((LM_DEBUG, "MultiplexReceptacle\n")); break;
+ case Deployment::EventEmitter: ACE_DEBUG ((LM_DEBUG, "EventEmitter\n")); break;
+ case Deployment::EventPublisher: ACE_DEBUG ((LM_DEBUG, "EventPublisher\n")); break;
+ case Deployment::EventConsumer: ACE_DEBUG ((LM_DEBUG, "EventConsumer\n")); break;
}
+ ACE_DEBUG ((LM_DEBUG, "consumerCompName: %s\n", connections[i].consumerCompName.in ()));
+ ACE_DEBUG ((LM_DEBUG, "consumerPortName: %s\n", connections[i].consumerPortName.in ()));
+
// object reference.
ACE_DEBUG ((LM_DEBUG, "endpoint: \n"));
}