summaryrefslogtreecommitdiff
path: root/csharp/test/Glacier2/router/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Glacier2/router/Client.cs')
-rw-r--r--csharp/test/Glacier2/router/Client.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/test/Glacier2/router/Client.cs b/csharp/test/Glacier2/router/Client.cs
index 064fcdccfb8..a767709c22c 100644
--- a/csharp/test/Glacier2/router/Client.cs
+++ b/csharp/test/Glacier2/router/Client.cs
@@ -284,7 +284,7 @@ public class Client
Dictionary<string, string> context = new Dictionary<string, string>();
context["_fwd"] = "t";
CallbackPrx otherCategoryTwoway = CallbackPrxHelper.uncheckedCast(
- twoway.ice_identity(communicator().stringToIdentity("c2/callback")));
+ twoway.ice_identity(Ice.Util.stringToIdentity("c2/callback")));
otherCategoryTwoway.initiateCallback(twowayR, context);
callbackReceiverImpl.callbackOK();
Console.Out.WriteLine("ok");
@@ -298,7 +298,7 @@ public class Client
try
{
CallbackPrx otherCategoryTwoway = CallbackPrxHelper.uncheckedCast(
- twoway.ice_identity(communicator().stringToIdentity("c3/callback")));
+ twoway.ice_identity(Ice.Util.stringToIdentity("c3/callback")));
otherCategoryTwoway.initiateCallback(twowayR, context);
test(false);
}
@@ -314,7 +314,7 @@ public class Client
Dictionary<string, string> context = new Dictionary<string, string>();
context["_fwd"] = "t";
CallbackPrx otherCategoryTwoway = CallbackPrxHelper.uncheckedCast(
- twoway.ice_identity(communicator().stringToIdentity("_userid/callback")));
+ twoway.ice_identity(Ice.Util.stringToIdentity("_userid/callback")));
otherCategoryTwoway.initiateCallback(twowayR, context);
callbackReceiverImpl.callbackOK();
Console.Out.WriteLine("ok");