summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/NodeInfo.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-09-11 20:33:06 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-09-11 20:33:06 +0000
commitaf019e080ac9319035abe899838bc6ff7bf7e435 (patch)
tree754643a46a0f0ef381b0a7596fc08a17dcda5cdf /cpp/src/IcePack/NodeInfo.cpp
parentFix bug in changeTimeout (the newEndpoints were not passed to the (diff)
downloadice-af019e080ac9319035abe899838bc6ff7bf7e435.tar.bz2
ice-af019e080ac9319035abe899838bc6ff7bf7e435.tar.xz
ice-af019e080ac9319035abe899838bc6ff7bf7e435.zip
Object adapter creation method changes, IceBox changes.
Diffstat (limited to 'cpp/src/IcePack/NodeInfo.cpp')
-rw-r--r--cpp/src/IcePack/NodeInfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePack/NodeInfo.cpp b/cpp/src/IcePack/NodeInfo.cpp
index 1cf50a1a248..2f6cd5098b3 100644
--- a/cpp/src/IcePack/NodeInfo.cpp
+++ b/cpp/src/IcePack/NodeInfo.cpp
@@ -57,7 +57,7 @@ IcePack::NodeInfo::getAdapterRegistry() const
try
{
return AdapterRegistryPrx::checkedCast(
- _communicator->stringToProxy("IcePack/AdapterRegistry@IcePackRegistryAdapter"));
+ _communicator->stringToProxy("IcePack/AdapterRegistry@IcePack.Registry.Internal"));
}
catch(const Ice::LocalException& ex)
{
@@ -71,7 +71,7 @@ IcePack::NodeInfo::getServerRegistry() const
try
{
return ServerRegistryPrx::checkedCast(
- _communicator->stringToProxy("IcePack/ServerRegistry@IcePackRegistryAdapter"));
+ _communicator->stringToProxy("IcePack/ServerRegistry@IcePack.Registry.Internal"));
}
catch(const Ice::LocalException& ex)
{
@@ -87,7 +87,7 @@ IcePack::NodeInfo::getYellowQuery() const
//
try
{
- return Yellow::QueryPrx::checkedCast(_communicator->stringToProxy("Yellow/Query@YellowQueryAdapter"));
+ return Yellow::QueryPrx::checkedCast(_communicator->stringToProxy("Yellow/Query@Yellow.Query"));
}
catch(const Ice::LocalException& ex)
{
@@ -103,7 +103,7 @@ IcePack::NodeInfo::getYellowAdmin() const
//
try
{
- return Yellow::AdminPrx::checkedCast(_communicator->stringToProxy("Yellow/Admin@YellowAdminAdapter"));
+ return Yellow::AdminPrx::checkedCast(_communicator->stringToProxy("Yellow/Admin@Yellow.Admin"));
}
catch(const Ice::LocalException& ex)
{