diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-12-07 22:47:29 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-12-07 22:47:29 +0000 |
commit | 8db809366b6cb938f52550c427cc73d9d46b79bc (patch) | |
tree | b6f095b076b4b9cbaccb4abf5a981fc133e1f945 /cpp/src/IcePack/ApplicationBuilder.cpp | |
parent | more AMD exception fixes (diff) | |
download | ice-8db809366b6cb938f52550c427cc73d9d46b79bc.tar.bz2 ice-8db809366b6cb938f52550c427cc73d9d46b79bc.tar.xz ice-8db809366b6cb938f52550c427cc73d9d46b79bc.zip |
Changed the IcePack locator implementation to use AMD and AMI (only when
the invocation might take time, for instance while the registry waits
for the node to activate a server).
Added IcePack registry configuration to the hello world demo.
Diffstat (limited to 'cpp/src/IcePack/ApplicationBuilder.cpp')
-rw-r--r-- | cpp/src/IcePack/ApplicationBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePack/ApplicationBuilder.cpp b/cpp/src/IcePack/ApplicationBuilder.cpp index 63f090d9af0..bb9533ab8df 100644 --- a/cpp/src/IcePack/ApplicationBuilder.cpp +++ b/cpp/src/IcePack/ApplicationBuilder.cpp @@ -146,7 +146,7 @@ IcePack::ApplicationHandler::startElement(const XMLCh* name, AttributeList& attr { if(!_currentNode.empty()) { - throw DeploySAXParseException("Node element enclosed in an node element is not allowed", _locator); + throw DeploySAXParseException("node element enclosed in an node element is not allowed", _locator); } _currentNode = getAttributeValue(attrs, "name"); @@ -165,7 +165,7 @@ IcePack::ApplicationHandler::startElement(const XMLCh* name, AttributeList& attr { if(_currentNode.empty()) { - throw DeploySAXParseException("Server element is not allowed outside the scope of a node element", + throw DeploySAXParseException("server element is not allowed outside the scope of a node element", _locator); } |