diff options
author | Michi Henning <michi@zeroc.com> | 2004-04-06 04:18:57 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-04-06 04:18:57 +0000 |
commit | d9e2e249b341af03f3110152f3bf1d988b1965cb (patch) | |
tree | 75a1b68a55bd8883bb3136a2d266c0bbb7d14fcd /cs/demo/Ice/nested/Server.cs | |
parent | fixed retry on RequestFailedException (diff) | |
download | ice-d9e2e249b341af03f3110152f3bf1d988b1965cb.tar.bz2 ice-d9e2e249b341af03f3110152f3bf1d988b1965cb.tar.xz ice-d9e2e249b341af03f3110152f3bf1d988b1965cb.zip |
Added and debugged more demos.
Diffstat (limited to 'cs/demo/Ice/nested/Server.cs')
-rwxr-xr-x | cs/demo/Ice/nested/Server.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cs/demo/Ice/nested/Server.cs b/cs/demo/Ice/nested/Server.cs new file mode 100755 index 00000000000..f6d093252d7 --- /dev/null +++ b/cs/demo/Ice/nested/Server.cs @@ -0,0 +1,23 @@ +// **********************************************************************
+//
+// Copyright (c) 2003
+// ZeroC, Inc.
+// Billerica, MA, USA
+//
+// All Rights Reserved.
+//
+// Ice is free software; you can redistribute it and/or modify it under
+// the terms of the GNU General Public License version 2 as published by
+// the Free Software Foundation.
+//
+// **********************************************************************
+
+public class Server
+{
+ public static void Main(string[] args)
+ {
+ NestedServer app = new NestedServer();
+ int status = app.main(args, "config.server");
+ System.Environment.Exit(status);
+ }
+}
|