summaryrefslogtreecommitdiff
path: root/cpp/demo/IcePatch2/MFC
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-02-02 16:27:47 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-02-02 16:27:47 +0000
commit6692636e98a792682184b0fdddfb0798167daf08 (patch)
treedd03b226d46cfa91d435ad2697d356c3f7ef47dc /cpp/demo/IcePatch2/MFC
parentadded Ice-rpmbuild generation (diff)
downloadice-6692636e98a792682184b0fdddfb0798167daf08.tar.bz2
ice-6692636e98a792682184b0fdddfb0798167daf08.tar.xz
ice-6692636e98a792682184b0fdddfb0798167daf08.zip
Use Ice.OA.* properties
Diffstat (limited to 'cpp/demo/IcePatch2/MFC')
-rwxr-xr-xcpp/demo/IcePatch2/MFC/PatchClient.cpp4
-rwxr-xr-xcpp/demo/IcePatch2/MFC/README4
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/demo/IcePatch2/MFC/PatchClient.cpp b/cpp/demo/IcePatch2/MFC/PatchClient.cpp
index 275fa480d9a..abf5dfb629d 100755
--- a/cpp/demo/IcePatch2/MFC/PatchClient.cpp
+++ b/cpp/demo/IcePatch2/MFC/PatchClient.cpp
@@ -63,9 +63,9 @@ CPatchClientApp::InitInstance()
}
Ice::PropertiesPtr properties = communicator->getProperties();
- if(properties->getProperty("IcePatch2.Endpoints").empty())
+ if(properties->getProperty("Ice.OA.IcePatch2.Endpoints").empty())
{
- properties->setProperty("IcePatch2.Endpoints", "tcp -h 127.0.0.1 -p 10000");
+ properties->setProperty("Ice.OA.IcePatch2.Endpoints", "tcp -h 127.0.0.1 -p 10000");
}
CPatchDlg dlg(communicator);
diff --git a/cpp/demo/IcePatch2/MFC/README b/cpp/demo/IcePatch2/MFC/README
index 6f0a3686113..2808e2b4c87 100755
--- a/cpp/demo/IcePatch2/MFC/README
+++ b/cpp/demo/IcePatch2/MFC/README
@@ -16,7 +16,7 @@ Next, start the IcePatch2 server. Note that the trailing "." argument
in the following command is required and directs the server to use the
current directory as its data directory:
-> icepatch2server --IcePatch2.Endpoints="tcp -h 127.0.0.1 -p 10000" .
+> icepatch2server --Ice.OA.IcePatch2.Endpoints="tcp -h 127.0.0.1 -p 10000" .
Before we start the patch client, we must first create an empty
directory where the downloaded files will be placed. For example, open
@@ -25,7 +25,7 @@ a new command window and execute this command:
> mkdir C:\icepatch_download
Now you can start the IcePatch2 client (You will also need to pass a
-"IcePatch2.Endpoints" argument if you use a endpoint other than the
+"Ice.OA.IcePatch2.Endpoints" argument if you use a endpoint other than the
one shown above when you start icepatch2server):
> patch