├── .clang-format ├── .clang-tidy ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── rhel9 │ ├── Dockerfile │ └── devcontainer.json ├── .editorconfig ├── .github ├── actions │ └── install-nightly-ice │ │ └── action.yml ├── assets │ └── ice-banner.svg ├── copilot-instructions.md └── workflows │ ├── ci.yml │ ├── cpp.yml │ ├── devcontainer.yml │ ├── dotnet.yml │ ├── java.yml │ ├── javascript.yml │ ├── markdown.yml │ ├── python.yml │ └── swift.yml ├── .globalconfig ├── .markdownlint.json ├── .vscode ├── cspell.json ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── certs ├── README.md ├── ca.jks ├── ca.p12 ├── ca_cert.der ├── ca_cert.pem ├── ca_key.pem ├── client.jks ├── client.p12 ├── client_cert.pem ├── client_key.pem ├── server.jks ├── server.p12 ├── server_cert.pem └── server_key.pem ├── cpp ├── DataStorm │ ├── customEncoding │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── Reader.cpp │ │ ├── TimePoint.h │ │ └── Writer.cpp │ ├── greeter │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── Reader.cpp │ │ └── Writer.cpp │ ├── keyFilter │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── Reader.cpp │ │ └── Writer.cpp │ ├── node │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── Reader.cpp │ │ ├── Writer.cpp │ │ └── node.conf │ ├── sampleFilter │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── Reader.cpp │ │ ├── TemperatureRange.ice │ │ └── Writer.cpp │ └── stock │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── Reader.cpp │ │ ├── Stock.ice │ │ └── Writer.cpp ├── Glacier2 │ ├── callback │ │ ├── AlarmClock.ice │ │ ├── CMakeLists.txt │ │ ├── Client.cpp │ │ ├── MockAlarmClock.cpp │ │ ├── MockAlarmClock.h │ │ ├── README.md │ │ ├── Server.cpp │ │ ├── SimpleWakeUpService.cpp │ │ ├── SimpleWakeUpService.h │ │ └── glacier2.conf │ ├── greeter │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── Server.cpp │ │ └── glacier2.conf │ └── session │ │ ├── CMakeLists.txt │ │ ├── Client.cpp │ │ ├── DefaultPokeSession.cpp │ │ ├── DefaultPokeSession.h │ │ ├── InMemoryPokeStore.cpp │ │ ├── InMemoryPokeStore.h │ │ ├── PokeBox.ice │ │ ├── PokeStore.h │ │ ├── README.md │ │ ├── Server.cpp │ │ ├── SessionManager.cpp │ │ ├── SessionManager.h │ │ ├── SharedPokeBox.cpp │ │ ├── SharedPokeBox.h │ │ ├── UserIdResolver.h │ │ └── glacier2.conf ├── Ice │ ├── bidir │ │ ├── AlarmClock.ice │ │ ├── BidirWakeUpService.cpp │ │ ├── BidirWakeUpService.h │ │ ├── CMakeLists.txt │ │ ├── Client.cpp │ │ ├── MockAlarmClock.cpp │ │ ├── MockAlarmClock.h │ │ ├── README.md │ │ └── Server.cpp │ ├── callback │ │ ├── AlarmClock.ice │ │ ├── CMakeLists.txt │ │ ├── Client.cpp │ │ ├── MockAlarmClock.cpp │ │ ├── MockAlarmClock.h │ │ ├── README.md │ │ ├── Server.cpp │ │ ├── SimpleWakeUpService.cpp │ │ └── SimpleWakeUpService.h │ ├── cancellation │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── Server.cpp │ ├── config │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── Server.cpp │ │ ├── client.conf │ │ └── server.conf │ ├── context │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── Server.cpp │ ├── customError │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── Server.cpp │ ├── forwarder │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Forwarder.cpp │ │ ├── Forwarder.h │ │ ├── ForwardingServer.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── Server.cpp │ ├── greeter │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── ChatbotAMD.cpp │ │ ├── ChatbotAMD.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── GreeterAMD.ice │ │ ├── README.md │ │ ├── Server.cpp │ │ └── ServerAMD.cpp │ ├── inheritance │ │ ├── CMakeLists.txt │ │ ├── Client.cpp │ │ ├── Filesystem.ice │ │ ├── Memory.cpp │ │ ├── Memory.h │ │ ├── README.md │ │ └── Server.cpp │ ├── middleware │ │ ├── AuthorizationMiddleware.cpp │ │ ├── AuthorizationMiddleware.h │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── Server.cpp │ ├── optional │ │ ├── CMakeLists.txt │ │ ├── Client1.cpp │ │ ├── Client2.cpp │ │ ├── ConsolePrinter1.cpp │ │ ├── ConsolePrinter1.h │ │ ├── ConsolePrinter2.cpp │ │ ├── ConsolePrinter2.h │ │ ├── README.md │ │ ├── Server1.cpp │ │ ├── Server2.cpp │ │ ├── WeatherStation1.ice │ │ └── WeatherStation2.ice │ └── secure │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── ClientOpenSSL.cpp │ │ ├── ClientRun.cpp │ │ ├── ClientRun.h │ │ ├── ClientSchannel.cpp │ │ ├── ClientSecureTransport.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── ServerOpenSSL.cpp │ │ ├── ServerRun.cpp │ │ ├── ServerRun.h │ │ ├── ServerSchannel.cpp │ │ ├── ServerSecureTransport.cpp │ │ ├── UtilSchannel.cpp │ │ ├── UtilSchannel.h │ │ ├── UtilSecureTransport.cpp │ │ ├── UtilSecureTransport.h │ │ └── keychain-access.png ├── IceBox │ └── greeter │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── GreeterService.cpp │ │ ├── GreeterService.h │ │ └── README.md ├── IceDiscovery │ ├── greeter │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── Server.cpp │ └── replication │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── Server.cpp ├── IceGrid │ ├── greeter │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── Server.cpp │ │ ├── admin.conf │ │ ├── greeter-hall-with-replication.xml │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ └── registry.conf │ ├── icebox │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── GreeterService.cpp │ │ ├── GreeterService.h │ │ ├── README.md │ │ ├── admin.conf │ │ ├── greeter-hall.xml │ │ ├── grid.conf │ │ ├── node.conf │ │ └── registry.conf │ ├── locatorDiscovery │ │ ├── CMakeLists.txt │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ └── README.md │ └── query │ │ ├── CMakeLists.txt │ │ ├── Chatbot.cpp │ │ ├── Chatbot.h │ │ ├── Client.cpp │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── Server.cpp │ │ ├── admin.conf │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ └── registry.conf ├── IceStorm │ └── weather │ │ ├── AtmosphericConditions.cpp │ │ ├── CMakeLists.txt │ │ ├── ConsolePrinter.cpp │ │ ├── ConsolePrinter.h │ │ ├── README.md │ │ ├── Sensor.cpp │ │ ├── Station.cpp │ │ ├── WeatherStation.ice │ │ └── icestorm.conf ├── README.md ├── cmake │ └── common.cmake └── common │ ├── Env.h │ └── Time.h ├── csharp ├── Directory.Build.props ├── Glacier2 │ ├── Callback │ │ ├── Callback.sln │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ ├── MockAlarmClock.cs │ │ │ └── Program.cs │ │ ├── README.md │ │ ├── Server │ │ │ ├── Program.cs │ │ │ ├── Server.csproj │ │ │ └── SimpleWakeUpService.cs │ │ ├── glacier2.conf │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── Greeter │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Greeter.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ ├── glacier2.conf │ │ └── slice │ │ │ └── Greeter.ice │ └── Session │ │ ├── Client │ │ ├── Client.csproj │ │ └── Program.cs │ │ ├── README.md │ │ ├── Server │ │ ├── DefaultPokeSession.cs │ │ ├── IPokeStore.cs │ │ ├── IUserIdResolver.cs │ │ ├── InMemoryPokeStore.cs │ │ ├── Program.cs │ │ ├── Server.csproj │ │ ├── SessionManager.cs │ │ └── SharedPokeBox.cs │ │ ├── Session.sln │ │ ├── glacier2.conf │ │ └── slice │ │ └── PokeBox.ice ├── Ice │ ├── Bidir │ │ ├── Bidir.sln │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ ├── MockAlarmClock.cs │ │ │ └── Program.cs │ │ ├── README.md │ │ ├── Server │ │ │ ├── BidirWakeUpService.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── Callback │ │ ├── Callback.sln │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ ├── MockAlarmClock.cs │ │ │ └── Program.cs │ │ ├── README.md │ │ ├── Server │ │ │ ├── Program.cs │ │ │ ├── Server.csproj │ │ │ └── SimpleWakeUpService.cs │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── Cancellation │ │ ├── Cancellation.sln │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── Greeter.ice │ ├── Config │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ ├── Program.cs │ │ │ └── client.conf │ │ ├── Config.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ ├── Server.csproj │ │ │ └── server.conf │ │ └── slice │ │ │ └── Greeter.ice │ ├── Context │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Context.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── Greeter.ice │ ├── CustomError │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── CustomError.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── Greeter.ice │ ├── Forwarder │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Forwarder.sln │ │ ├── ForwardingServer │ │ │ ├── Forwarder.cs │ │ │ ├── ForwardingServer.csproj │ │ │ └── Program.cs │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── Greeter.ice │ ├── Greeter │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Greeter.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ ├── ServerAMD │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── ServerAMD.csproj │ │ └── slice │ │ │ └── Greeter.ice │ ├── Inheritance │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Inheritance.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── MDirectory.cs │ │ │ ├── MFile.cs │ │ │ ├── MNode.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── Filesystem.ice │ ├── Middleware │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Middleware.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── AuthorizationMiddleware.cs │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── Greeter.ice │ ├── Optional │ │ ├── Client1 │ │ │ ├── Client1.csproj │ │ │ └── Program.cs │ │ ├── Client2 │ │ │ ├── Client2.csproj │ │ │ └── Program.cs │ │ ├── Optional.sln │ │ ├── README.md │ │ ├── Server1 │ │ │ ├── AtmosphericConditions.cs │ │ │ ├── ConsolePrinter.cs │ │ │ ├── Program.cs │ │ │ └── Server1.csproj │ │ ├── Server2 │ │ │ ├── AtmosphericConditions.cs │ │ │ ├── ConsolePrinter.cs │ │ │ ├── Program.cs │ │ │ └── Server2.csproj │ │ └── slice │ │ │ ├── WeatherStation1.ice │ │ │ └── WeatherStation2.ice │ └── Secure │ │ ├── Client │ │ ├── Client.csproj │ │ └── Program.cs │ │ ├── README.md │ │ ├── Secure.sln │ │ ├── Server │ │ ├── Chatbot.cs │ │ ├── Program.cs │ │ └── Server.csproj │ │ └── slice │ │ └── Greeter.ice ├── IceBox │ └── Greeter │ │ ├── Client │ │ ├── Client.csproj │ │ └── Program.cs │ │ ├── Greeter.sln │ │ ├── README.md │ │ ├── Service │ │ ├── Chatbot.cs │ │ ├── GreeterService.cs │ │ └── Service.csproj │ │ └── slice │ │ └── Greeter.ice ├── IceDiscovery │ ├── Greeter │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Greeter.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ └── slice │ │ │ └── Greeter.ice │ └── Replication │ │ ├── Client │ │ ├── Client.csproj │ │ └── Program.cs │ │ ├── README.md │ │ ├── Replication.sln │ │ ├── Server │ │ ├── Chatbot.cs │ │ ├── Program.cs │ │ └── Server.csproj │ │ └── slice │ │ └── Greeter.ice ├── IceGrid │ ├── Greeter │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── Greeter.sln │ │ ├── README.md │ │ ├── Server │ │ │ ├── Chatbot.cs │ │ │ ├── Program.cs │ │ │ └── Server.csproj │ │ ├── admin.conf │ │ ├── greeter-hall-with-replication.xml │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ └── slice │ │ │ └── Greeter.ice │ ├── IceBox │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── IceBox.sln │ │ ├── README.md │ │ ├── Service │ │ │ ├── Chatbot.cs │ │ │ ├── GreeterService.cs │ │ │ └── Service.csproj │ │ ├── admin.conf │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ └── slice │ │ │ └── Greeter.ice │ ├── LocatorDiscovery │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ └── Program.cs │ │ ├── LocatorDiscovery.sln │ │ └── README.md │ └── Query │ │ ├── Client │ │ ├── Client.csproj │ │ └── Program.cs │ │ ├── Query.sln │ │ ├── README.md │ │ ├── Server │ │ ├── Chatbot.cs │ │ ├── Program.cs │ │ └── Server.csproj │ │ ├── admin.conf │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ └── slice │ │ └── Greeter.ice ├── IceStorm │ └── Weather │ │ ├── README.md │ │ ├── Sensor │ │ ├── Program.cs │ │ └── Sensor.csproj │ │ ├── Station │ │ ├── AtmosphericConditions.cs │ │ ├── ConsolePrinter.cs │ │ ├── Program.cs │ │ └── Station.csproj │ │ ├── Weather.sln │ │ ├── icestorm.conf │ │ └── slice │ │ └── WeatherStation.ice ├── README.md └── nuget.config ├── java ├── Glacier2 │ ├── callback │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── glacier2 │ │ │ │ └── callback │ │ │ │ └── client │ │ │ │ ├── Client.java │ │ │ │ └── MockAlarmClock.java │ │ ├── glacier2.conf │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── glacier2 │ │ │ │ └── callback │ │ │ │ └── server │ │ │ │ ├── Server.java │ │ │ │ └── SimpleWakeUpService.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── greeter │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── glacier2 │ │ │ │ └── greeter │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── glacier2.conf │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── glacier2 │ │ │ │ └── greeter │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ └── session │ │ ├── README.md │ │ ├── client │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── glacier2 │ │ │ └── session │ │ │ └── client │ │ │ └── Client.java │ │ ├── glacier2.conf │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── glacier2 │ │ │ └── session │ │ │ └── server │ │ │ ├── DefaultPokeSession.java │ │ │ ├── InMemoryPokeStore.java │ │ │ ├── PokeStore.java │ │ │ ├── Server.java │ │ │ ├── SessionManager.java │ │ │ ├── SharedPokeBox.java │ │ │ └── UserIdResolver.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ └── PokeBox.ice ├── Ice │ ├── android-greeter │ │ ├── README.md │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── ice │ │ │ │ │ └── androidgreeter │ │ │ │ │ ├── App.kt │ │ │ │ │ └── MainActivity.kt │ │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ │ ├── backup_rules.xml │ │ │ │ │ └── data_extraction_rules.xml │ │ │ │ └── slice │ │ │ │ └── Greeter.ice │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ │ ├── libs.versions.toml │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts │ ├── bidir │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── bidir │ │ │ │ └── client │ │ │ │ ├── Client.java │ │ │ │ └── MockAlarmClock.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── bidir │ │ │ │ └── server │ │ │ │ ├── BidirWakeUpService.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── callback │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── callback │ │ │ │ └── client │ │ │ │ ├── Client.java │ │ │ │ └── MockAlarmClock.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── callback │ │ │ │ └── server │ │ │ │ ├── Server.java │ │ │ │ └── SimpleWakeUpService.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── cancellation │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── cancellation │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── cancellation │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── config │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ ├── client.conf │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── config │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ ├── server.conf │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── config │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── context │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── context │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── context │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── customError │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── customerror │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── customerror │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── forwarder │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── forwarder │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── forwardingserver │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── forwarder │ │ │ │ └── forwardingserver │ │ │ │ ├── Forwarder.java │ │ │ │ └── Server.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── forwarder │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── greeter │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── greeter │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── greeter │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── serveramd │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── greeter │ │ │ │ └── serveramd │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ ├── Greeter.ice │ │ │ └── GreeterAMD.ice │ ├── inheritance │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── inheritance │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── inheritance │ │ │ │ └── server │ │ │ │ ├── MDirectory.java │ │ │ │ ├── MFile.java │ │ │ │ ├── MNode.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Filesystem.ice │ ├── middleware │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── middleware │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── middleware │ │ │ │ └── server │ │ │ │ ├── AuthorizationMiddleware.java │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── optional │ │ ├── README.md │ │ ├── client1 │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── optional │ │ │ │ └── client1 │ │ │ │ └── Client.java │ │ ├── client2 │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── optional │ │ │ │ └── client2 │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server1 │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── optional │ │ │ │ └── server1 │ │ │ │ ├── ConsolePrinter.java │ │ │ │ └── Server.java │ │ ├── server2 │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice │ │ │ │ └── optional │ │ │ │ └── server2 │ │ │ │ ├── ConsolePrinter.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ ├── WeatherStation1.ice │ │ │ └── WeatherStation2.ice │ └── secure │ │ ├── README.md │ │ ├── client │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── ice │ │ │ └── secure │ │ │ └── client │ │ │ └── Client.java │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── ice │ │ │ └── secure │ │ │ └── server │ │ │ ├── Chatbot.java │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ └── Greeter.ice ├── IceBox │ └── greeter │ │ ├── README.md │ │ ├── client │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── icebox │ │ │ └── greeter │ │ │ └── client │ │ │ └── Client.java │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── iceboxserver │ │ └── build.gradle.kts │ │ ├── service │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── icebox │ │ │ └── greeter │ │ │ └── service │ │ │ ├── Chatbot.java │ │ │ └── GreeterService.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ └── Greeter.ice ├── IceDiscovery │ ├── greeter │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icediscovery │ │ │ │ └── greeter │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icediscovery │ │ │ │ └── greeter │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ └── replication │ │ ├── README.md │ │ ├── client │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── icediscovery │ │ │ └── greeter │ │ │ └── client │ │ │ └── Client.java │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── icediscovery │ │ │ └── greeter │ │ │ └── server │ │ │ ├── Chatbot.java │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ └── Greeter.ice ├── IceGrid │ ├── greeter │ │ ├── README.md │ │ ├── admin.conf │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icegrid │ │ │ │ └── greeter │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── greeter-hall-with-replication.xml │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icegrid │ │ │ │ └── greeter │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── icebox │ │ ├── README.md │ │ ├── admin.conf │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icegrid │ │ │ │ └── icebox │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── greeter-hall.xml │ │ ├── iceboxserver │ │ │ └── build.gradle.kts │ │ ├── node.conf │ │ ├── registry.conf │ │ ├── service │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icegrid │ │ │ │ └── icebox │ │ │ │ └── service │ │ │ │ ├── Chatbot.java │ │ │ │ └── GreeterService.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ ├── locatorDiscovery │ │ ├── README.md │ │ ├── client │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icegrid │ │ │ │ └── greeter │ │ │ │ └── client │ │ │ │ └── Client.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── server │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── icegrid │ │ │ │ └── greeter │ │ │ │ └── server │ │ │ │ ├── Chatbot.java │ │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ │ └── Greeter.ice │ └── query │ │ ├── README.md │ │ ├── admin.conf │ │ ├── client │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── icegrid │ │ │ └── query │ │ │ └── client │ │ │ └── Client.java │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ ├── server │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── icegrid │ │ │ └── query │ │ │ └── server │ │ │ ├── Chatbot.java │ │ │ └── Server.java │ │ ├── settings.gradle.kts │ │ └── slice │ │ └── Greeter.ice ├── IceStorm │ └── weather │ │ ├── README.md │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── icestorm.conf │ │ ├── sensor │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── icestorm │ │ │ └── weather │ │ │ └── sensor │ │ │ └── Sensor.java │ │ ├── settings.gradle.kts │ │ ├── slice │ │ └── WeatherStation.ice │ │ └── station │ │ ├── build.gradle.kts │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── icestorm │ │ └── weather │ │ └── station │ │ ├── ConsolePrinter.java │ │ └── Station.java ├── README.md ├── build-logic │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── zeroc-linting.gradle.kts ├── config │ ├── checkstyle │ │ ├── checkstyle.xml │ │ └── suppressions.xml │ └── rewrite.yml └── util │ ├── build.gradle.kts │ └── src │ └── main │ └── java │ └── com │ └── example │ └── util │ └── Time.java ├── js ├── .editorconfig ├── .prettierignore ├── .prettierrc ├── Glacier2 │ └── callback │ │ ├── .npmrc │ │ ├── AlarmClock.ice │ │ ├── MockAlarmClock.ts │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── timeUtil.ts │ │ └── tsconfig.json ├── Ice │ ├── bidir │ │ ├── .npmrc │ │ ├── AlarmClock.ice │ │ ├── MockAlarmClock.ts │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── timeUtil.ts │ │ └── tsconfig.json │ ├── cancellation │ │ ├── .npmrc │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── context │ │ ├── .npmrc │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── customError │ │ ├── .npmrc │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── greeter │ │ ├── .npmrc │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── inheritance │ │ ├── .npmrc │ │ ├── Filesystem.ice │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── optional │ │ ├── README.md │ │ ├── client1 │ │ │ ├── .npmrc │ │ │ ├── WeatherStation1.ice │ │ │ ├── client.ts │ │ │ ├── eslint.config.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── client2 │ │ │ ├── .npmrc │ │ │ ├── WeatherStation2.ice │ │ │ ├── client.ts │ │ │ ├── eslint.config.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ └── react-greeter │ │ ├── .npmrc │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── Greeter.ice │ │ ├── GreeterApp.tsx │ │ ├── GreetingStatusMessage.tsx │ │ ├── app.css │ │ └── main.tsx │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── IceGrid │ └── greeter │ │ ├── .npmrc │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── client.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ └── tsconfig.json ├── IceStorm │ └── weather │ │ ├── .npmrc │ │ ├── README.md │ │ ├── WeatherStation.ice │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── sensor.ts │ │ └── tsconfig.json └── README.md ├── matlab ├── Glacier2 │ └── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m ├── Ice │ ├── cancellation │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m │ ├── config │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── client.conf │ │ └── client.m │ ├── context │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m │ ├── customError │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m │ ├── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m │ ├── inheritance │ │ ├── Filesystem.ice │ │ ├── README.md │ │ └── client.m │ └── optional │ │ ├── README.md │ │ ├── client1 │ │ ├── WeatherStation.ice │ │ └── client.m │ │ └── client2 │ │ ├── WeatherStation.ice │ │ └── client.m ├── IceDiscovery │ └── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m ├── IceGrid │ ├── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m │ └── locatorDiscovery │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.m ├── IceStorm │ └── weather │ │ ├── README.md │ │ ├── WeatherStation.ice │ │ └── sensor.m └── README.md ├── php ├── Glacier2 │ └── greeter │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md ├── Ice │ ├── config │ │ ├── Client.php │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.conf │ ├── context │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md │ ├── customError │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md │ ├── greeter │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md │ ├── inheritance │ │ ├── Client.php │ │ ├── Filesystem.ice │ │ └── README.md │ ├── invocationTimeout │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md │ ├── optional │ │ ├── README.md │ │ ├── client1 │ │ │ ├── Client.php │ │ │ └── WeatherStation.ice │ │ └── client2 │ │ │ ├── Client.php │ │ │ └── WeatherStation.ice │ └── registeredCommunicator │ │ ├── Dockerfile │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── entrypoint.sh │ │ ├── nginx.conf │ │ └── web │ │ ├── Client.php │ │ └── index.html ├── IceDiscovery │ └── greeter │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md ├── IceGrid │ ├── greeter │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md │ └── locatorDiscovery │ │ ├── Client.php │ │ ├── Greeter.ice │ │ └── README.md ├── IceStorm │ └── weather │ │ ├── README.md │ │ ├── Sensor.php │ │ └── WeatherStation.ice └── README.md ├── python ├── Glacier2 │ ├── callback │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ ├── mock_alarm_clock.py │ │ │ └── pyproject.toml │ │ ├── glacier2.conf │ │ ├── server │ │ │ ├── main.py │ │ │ ├── pyproject.toml │ │ │ └── simple_wake_up_service.py │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── greeter │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── glacier2.conf │ │ ├── server │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── Greeter.ice │ └── session │ │ ├── README.md │ │ ├── client │ │ ├── main.py │ │ └── pyproject.toml │ │ ├── glacier2.conf │ │ ├── server │ │ ├── glacier2.conf │ │ ├── main.py │ │ ├── poke_session │ │ │ ├── __init__.py │ │ │ ├── box.py │ │ │ ├── manager.py │ │ │ ├── session.py │ │ │ ├── store.py │ │ │ └── user_id_resolver.py │ │ └── pyproject.toml │ │ └── slice │ │ └── PokeBox.ice ├── Ice │ ├── bidir │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ ├── mock_alarm_clock.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── bidir_wake_up_service.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── callback │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ ├── mock_alarm_clock.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── main.py │ │ │ ├── pyproject.toml │ │ │ └── simple_wake_up_service.py │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── config │ │ ├── README.md │ │ ├── client │ │ │ ├── client.conf │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ ├── pyproject.toml │ │ │ └── server.conf │ │ └── slice │ │ │ └── Greeter.ice │ ├── context │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── Greeter.ice │ ├── customError │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── Greeter.ice │ ├── greeter │ │ ├── README.md │ │ ├── client │ │ │ ├── .python-version │ │ │ ├── README.md │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── .python-version │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server_amd │ │ │ ├── .python-version │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── Greeter.ice │ ├── inheritance │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── m_directory.py │ │ │ ├── m_file.py │ │ │ ├── m_node.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── Filesystem.ice │ ├── invocation_timeout │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── Greeter.ice │ └── optional │ │ ├── README.md │ │ ├── client1 │ │ ├── main.py │ │ └── pyproject.toml │ │ ├── client2 │ │ ├── main.py │ │ └── pyproject.toml │ │ ├── server1 │ │ ├── console_printer.py │ │ ├── main.py │ │ └── pyproject.toml │ │ ├── server2 │ │ ├── console_printer.py │ │ ├── main.py │ │ └── pyproject.toml │ │ └── slice │ │ ├── WeatherStation1.ice │ │ └── WeatherStation2.ice ├── IceDiscovery │ ├── greeter │ │ ├── README.md │ │ ├── client │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ ├── server │ │ │ ├── chatbot.py │ │ │ ├── main.py │ │ │ └── pyproject.toml │ │ └── slice │ │ │ └── Greeter.ice │ └── replication │ │ ├── README.md │ │ ├── client │ │ ├── main.py │ │ └── pyproject.toml │ │ ├── server │ │ ├── chatbot.py │ │ ├── main.py │ │ └── pyproject.toml │ │ └── slice │ │ └── Greeter.ice ├── IceGrid │ └── greeter │ │ ├── README.md │ │ ├── admin.conf │ │ ├── client │ │ ├── main.py │ │ └── pyproject.toml │ │ ├── greeter-hall-with-replication.xml │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ ├── server │ │ ├── chatbot.py │ │ ├── main.py │ │ └── pyproject.toml │ │ └── slice │ │ └── Greeter.ice ├── IceStorm │ └── weather │ │ ├── README.md │ │ ├── icestorm.conf │ │ ├── sensor │ │ ├── main.py │ │ └── pyproject.toml │ │ ├── slice │ │ └── WeatherStation.ice │ │ └── station │ │ ├── console_printer.py │ │ ├── main.py │ │ └── pyproject.toml ├── README.md ├── common │ ├── pyproject.toml │ └── src │ │ └── common │ │ ├── __init__.py │ │ └── time.py └── tox.ini ├── ruby ├── Glacier2 │ └── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb ├── Ice │ ├── config │ │ ├── Greeter.ice │ │ ├── README.md │ │ ├── client.conf │ │ └── client.rb │ ├── context │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb │ ├── customError │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb │ ├── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb │ ├── inheritance │ │ ├── Filesystem.ice │ │ ├── README.md │ │ └── client.rb │ ├── invocationTimeout │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb │ └── optional │ │ ├── README.md │ │ ├── client1 │ │ ├── WeatherStation.ice │ │ └── client.rb │ │ └── client2 │ │ ├── WeatherStation.ice │ │ └── client.rb ├── IceDiscovery │ └── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb ├── IceGrid │ ├── greeter │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb │ └── locatorDiscovery │ │ ├── Greeter.ice │ │ ├── README.md │ │ └── client.rb ├── IceStorm │ └── weather │ │ ├── README.md │ │ ├── WeatherStation.ice │ │ └── sensor.rb └── README.md ├── ruff.toml ├── stylecop.json ├── swift ├── .swift-format.json ├── .swift-version ├── Glacier2 │ ├── Callback │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── MockAlarmClock.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── SimpleWakeUpService.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ ├── glacier2.conf │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── Greeter │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ ├── glacier2.conf │ │ └── slice │ │ │ └── Greeter.ice │ └── Session │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── Client │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ └── Server │ │ │ ├── DefaultPokeSession.swift │ │ │ ├── InMemoryPokeStore.swift │ │ │ ├── PokeStore.swift │ │ │ ├── SessionManager.swift │ │ │ ├── SharedPokeBox.swift │ │ │ ├── UserIdResolver.swift │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ ├── glacier2.conf │ │ └── slice │ │ └── PokeBox.ice ├── Ice │ ├── Bidir │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── MockAlarmClock.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── BidirWakeUpService.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── Callback │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── MockAlarmClock.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── SimpleWakeUpService.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── AlarmClock.ice │ ├── Config │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ ├── client.conf │ │ ├── server.conf │ │ └── slice │ │ │ └── Greeter.ice │ ├── Context │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ ├── CustomError │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ ├── Forwarder │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ ├── ForwardingServer │ │ │ │ ├── Forwarder.swift │ │ │ │ └── main.swift │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ ├── Greeter │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ ├── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── ServerAMD │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ ├── GreeterApp │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Greeter.ice │ │ ├── GreeterApp.entitlements │ │ ├── GreeterApp.swift │ │ ├── GreeterApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── GreeterClient.swift │ │ ├── GreeterView.swift │ │ └── README.md │ ├── Inheritance │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── MDirectory.swift │ │ │ │ ├── MFile.swift │ │ │ │ ├── MNode.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Filesystem.ice │ ├── InvocationTimeout │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ ├── Middleware │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── AuthorizationMiddleware.swift │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ └── Optional │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── Client1 │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ ├── Client2 │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ ├── Server1 │ │ │ ├── AtmosphericConditions.swift │ │ │ ├── ConsolePrinter.swift │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ └── Server2 │ │ │ ├── AtmosphericConditions.swift │ │ │ ├── ConsolePrinter.swift │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ └── slice │ │ ├── WeatherStation1.ice │ │ └── WeatherStation2.ice ├── IceDiscovery │ ├── Greeter │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ └── Replication │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── Client │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ └── Server │ │ │ ├── Chatbot.swift │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ └── slice │ │ └── Greeter.ice ├── IceGrid │ ├── Greeter │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ │ └── Server │ │ │ │ ├── Chatbot.swift │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ ├── admin.conf │ │ ├── greeter-hall-with-replication.xml │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ └── slice │ │ │ └── Greeter.ice │ ├── LocatorDiscovery │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── Client │ │ │ │ ├── main.swift │ │ │ │ └── slice-plugin.json │ │ └── slice │ │ │ └── Greeter.ice │ └── Query │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── Client │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ └── Server │ │ │ ├── Chatbot.swift │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ ├── admin.conf │ │ ├── greeter-hall.xml │ │ ├── node.conf │ │ ├── registry.conf │ │ └── slice │ │ └── Greeter.ice ├── IceStorm │ └── Weather │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── Sensor │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ └── Station │ │ │ ├── AtmosphericConditions.swift │ │ │ ├── ConsolePrinter.swift │ │ │ ├── main.swift │ │ │ └── slice-plugin.json │ │ ├── icestorm.conf │ │ └── slice │ │ └── WeatherStation.ice ├── README.md └── common │ ├── Package.swift │ └── Sources │ └── DateExtension │ └── DateExtension.swift └── tox.ini /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/rhel9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.devcontainer/rhel9/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/rhel9/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.devcontainer/rhel9/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/assets/ice-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/assets/ice-banner.svg -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/cpp.yml -------------------------------------------------------------------------------- /.github/workflows/devcontainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/devcontainer.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/java.yml -------------------------------------------------------------------------------- /.github/workflows/javascript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/javascript.yml -------------------------------------------------------------------------------- /.github/workflows/markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/markdown.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.globalconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.globalconfig -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/README.md -------------------------------------------------------------------------------- /certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/README.md -------------------------------------------------------------------------------- /certs/ca.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/ca.jks -------------------------------------------------------------------------------- /certs/ca.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/ca.p12 -------------------------------------------------------------------------------- /certs/ca_cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/ca_cert.der -------------------------------------------------------------------------------- /certs/ca_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/ca_cert.pem -------------------------------------------------------------------------------- /certs/ca_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/ca_key.pem -------------------------------------------------------------------------------- /certs/client.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/client.jks -------------------------------------------------------------------------------- /certs/client.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/client.p12 -------------------------------------------------------------------------------- /certs/client_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/client_cert.pem -------------------------------------------------------------------------------- /certs/client_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/client_key.pem -------------------------------------------------------------------------------- /certs/server.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/server.jks -------------------------------------------------------------------------------- /certs/server.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/server.p12 -------------------------------------------------------------------------------- /certs/server_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/server_cert.pem -------------------------------------------------------------------------------- /certs/server_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/certs/server_key.pem -------------------------------------------------------------------------------- /cpp/DataStorm/customEncoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/customEncoding/README.md -------------------------------------------------------------------------------- /cpp/DataStorm/customEncoding/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/customEncoding/Reader.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/customEncoding/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/customEncoding/Writer.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/greeter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/greeter/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/DataStorm/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/greeter/README.md -------------------------------------------------------------------------------- /cpp/DataStorm/greeter/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/greeter/Reader.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/greeter/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/greeter/Writer.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/keyFilter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/keyFilter/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/DataStorm/keyFilter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/keyFilter/README.md -------------------------------------------------------------------------------- /cpp/DataStorm/keyFilter/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/keyFilter/Reader.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/keyFilter/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/keyFilter/Writer.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/node/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/node/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/DataStorm/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/node/README.md -------------------------------------------------------------------------------- /cpp/DataStorm/node/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/node/Reader.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/node/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/node/Writer.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/node/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/node/node.conf -------------------------------------------------------------------------------- /cpp/DataStorm/sampleFilter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/sampleFilter/README.md -------------------------------------------------------------------------------- /cpp/DataStorm/sampleFilter/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/sampleFilter/Reader.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/sampleFilter/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/sampleFilter/Writer.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/stock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/stock/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/DataStorm/stock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/stock/README.md -------------------------------------------------------------------------------- /cpp/DataStorm/stock/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/stock/Reader.cpp -------------------------------------------------------------------------------- /cpp/DataStorm/stock/Stock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/stock/Stock.ice -------------------------------------------------------------------------------- /cpp/DataStorm/stock/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/DataStorm/stock/Writer.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/callback/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/callback/AlarmClock.ice -------------------------------------------------------------------------------- /cpp/Glacier2/callback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/callback/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Glacier2/callback/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/callback/Client.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/callback/MockAlarmClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/callback/MockAlarmClock.h -------------------------------------------------------------------------------- /cpp/Glacier2/callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/callback/README.md -------------------------------------------------------------------------------- /cpp/Glacier2/callback/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/callback/Server.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/callback/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/callback/glacier2.conf -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/Chatbot.h -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/Client.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/Greeter.ice -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/README.md -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/Server.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/greeter/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/greeter/glacier2.conf -------------------------------------------------------------------------------- /cpp/Glacier2/session/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Glacier2/session/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/Client.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/session/PokeBox.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/PokeBox.ice -------------------------------------------------------------------------------- /cpp/Glacier2/session/PokeStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/PokeStore.h -------------------------------------------------------------------------------- /cpp/Glacier2/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/README.md -------------------------------------------------------------------------------- /cpp/Glacier2/session/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/Server.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/session/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/SessionManager.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/session/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/SessionManager.h -------------------------------------------------------------------------------- /cpp/Glacier2/session/SharedPokeBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/SharedPokeBox.cpp -------------------------------------------------------------------------------- /cpp/Glacier2/session/SharedPokeBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/SharedPokeBox.h -------------------------------------------------------------------------------- /cpp/Glacier2/session/UserIdResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/UserIdResolver.h -------------------------------------------------------------------------------- /cpp/Glacier2/session/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Glacier2/session/glacier2.conf -------------------------------------------------------------------------------- /cpp/Ice/bidir/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/AlarmClock.ice -------------------------------------------------------------------------------- /cpp/Ice/bidir/BidirWakeUpService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/BidirWakeUpService.cpp -------------------------------------------------------------------------------- /cpp/Ice/bidir/BidirWakeUpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/BidirWakeUpService.h -------------------------------------------------------------------------------- /cpp/Ice/bidir/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/bidir/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/bidir/MockAlarmClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/MockAlarmClock.cpp -------------------------------------------------------------------------------- /cpp/Ice/bidir/MockAlarmClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/MockAlarmClock.h -------------------------------------------------------------------------------- /cpp/Ice/bidir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/README.md -------------------------------------------------------------------------------- /cpp/Ice/bidir/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/bidir/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/callback/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/AlarmClock.ice -------------------------------------------------------------------------------- /cpp/Ice/callback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/callback/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/callback/MockAlarmClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/MockAlarmClock.cpp -------------------------------------------------------------------------------- /cpp/Ice/callback/MockAlarmClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/MockAlarmClock.h -------------------------------------------------------------------------------- /cpp/Ice/callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/README.md -------------------------------------------------------------------------------- /cpp/Ice/callback/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/callback/SimpleWakeUpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/callback/SimpleWakeUpService.h -------------------------------------------------------------------------------- /cpp/Ice/cancellation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/cancellation/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/cancellation/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/cancellation/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/cancellation/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/cancellation/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/cancellation/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/cancellation/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/cancellation/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/cancellation/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/cancellation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/cancellation/README.md -------------------------------------------------------------------------------- /cpp/Ice/cancellation/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/cancellation/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/config/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/config/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/config/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/config/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/README.md -------------------------------------------------------------------------------- /cpp/Ice/config/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/config/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/client.conf -------------------------------------------------------------------------------- /cpp/Ice/config/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/config/server.conf -------------------------------------------------------------------------------- /cpp/Ice/context/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/context/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/context/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/context/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/context/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/context/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/context/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/context/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/context/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/context/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/context/README.md -------------------------------------------------------------------------------- /cpp/Ice/context/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/context/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/customError/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/customError/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/customError/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/customError/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/customError/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/customError/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/customError/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/customError/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/customError/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/customError/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/customError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/customError/README.md -------------------------------------------------------------------------------- /cpp/Ice/customError/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/customError/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/forwarder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/forwarder/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/forwarder/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/forwarder/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/forwarder/Forwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/Forwarder.cpp -------------------------------------------------------------------------------- /cpp/Ice/forwarder/Forwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/Forwarder.h -------------------------------------------------------------------------------- /cpp/Ice/forwarder/ForwardingServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/ForwardingServer.cpp -------------------------------------------------------------------------------- /cpp/Ice/forwarder/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/forwarder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/README.md -------------------------------------------------------------------------------- /cpp/Ice/forwarder/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/forwarder/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/greeter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/greeter/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/greeter/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/greeter/ChatbotAMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/ChatbotAMD.cpp -------------------------------------------------------------------------------- /cpp/Ice/greeter/ChatbotAMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/ChatbotAMD.h -------------------------------------------------------------------------------- /cpp/Ice/greeter/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/greeter/GreeterAMD.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/GreeterAMD.ice -------------------------------------------------------------------------------- /cpp/Ice/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/README.md -------------------------------------------------------------------------------- /cpp/Ice/greeter/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/greeter/ServerAMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/greeter/ServerAMD.cpp -------------------------------------------------------------------------------- /cpp/Ice/inheritance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/inheritance/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/inheritance/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/inheritance/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/inheritance/Filesystem.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/inheritance/Filesystem.ice -------------------------------------------------------------------------------- /cpp/Ice/inheritance/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/inheritance/Memory.cpp -------------------------------------------------------------------------------- /cpp/Ice/inheritance/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/inheritance/Memory.h -------------------------------------------------------------------------------- /cpp/Ice/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/inheritance/README.md -------------------------------------------------------------------------------- /cpp/Ice/inheritance/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/inheritance/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/middleware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/middleware/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/middleware/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/middleware/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/middleware/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/middleware/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/middleware/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/middleware/Client.cpp -------------------------------------------------------------------------------- /cpp/Ice/middleware/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/middleware/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/middleware/README.md -------------------------------------------------------------------------------- /cpp/Ice/middleware/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/middleware/Server.cpp -------------------------------------------------------------------------------- /cpp/Ice/optional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/optional/Client1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/Client1.cpp -------------------------------------------------------------------------------- /cpp/Ice/optional/Client2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/Client2.cpp -------------------------------------------------------------------------------- /cpp/Ice/optional/ConsolePrinter1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/ConsolePrinter1.cpp -------------------------------------------------------------------------------- /cpp/Ice/optional/ConsolePrinter1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/ConsolePrinter1.h -------------------------------------------------------------------------------- /cpp/Ice/optional/ConsolePrinter2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/ConsolePrinter2.cpp -------------------------------------------------------------------------------- /cpp/Ice/optional/ConsolePrinter2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/ConsolePrinter2.h -------------------------------------------------------------------------------- /cpp/Ice/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/README.md -------------------------------------------------------------------------------- /cpp/Ice/optional/Server1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/Server1.cpp -------------------------------------------------------------------------------- /cpp/Ice/optional/Server2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/Server2.cpp -------------------------------------------------------------------------------- /cpp/Ice/optional/WeatherStation1.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/WeatherStation1.ice -------------------------------------------------------------------------------- /cpp/Ice/optional/WeatherStation2.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/optional/WeatherStation2.ice -------------------------------------------------------------------------------- /cpp/Ice/secure/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Ice/secure/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/Chatbot.h -------------------------------------------------------------------------------- /cpp/Ice/secure/ClientOpenSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ClientOpenSSL.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/ClientRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ClientRun.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/ClientRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ClientRun.h -------------------------------------------------------------------------------- /cpp/Ice/secure/ClientSchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ClientSchannel.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/Greeter.ice -------------------------------------------------------------------------------- /cpp/Ice/secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/README.md -------------------------------------------------------------------------------- /cpp/Ice/secure/ServerOpenSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ServerOpenSSL.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/ServerRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ServerRun.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/ServerRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ServerRun.h -------------------------------------------------------------------------------- /cpp/Ice/secure/ServerSchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/ServerSchannel.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/UtilSchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/UtilSchannel.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/UtilSchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/UtilSchannel.h -------------------------------------------------------------------------------- /cpp/Ice/secure/UtilSecureTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/UtilSecureTransport.cpp -------------------------------------------------------------------------------- /cpp/Ice/secure/UtilSecureTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/UtilSecureTransport.h -------------------------------------------------------------------------------- /cpp/Ice/secure/keychain-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/Ice/secure/keychain-access.png -------------------------------------------------------------------------------- /cpp/IceBox/greeter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/IceBox/greeter/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/IceBox/greeter/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/Chatbot.h -------------------------------------------------------------------------------- /cpp/IceBox/greeter/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/Client.cpp -------------------------------------------------------------------------------- /cpp/IceBox/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/Greeter.ice -------------------------------------------------------------------------------- /cpp/IceBox/greeter/GreeterService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/GreeterService.cpp -------------------------------------------------------------------------------- /cpp/IceBox/greeter/GreeterService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/GreeterService.h -------------------------------------------------------------------------------- /cpp/IceBox/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceBox/greeter/README.md -------------------------------------------------------------------------------- /cpp/IceDiscovery/greeter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/greeter/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/IceDiscovery/greeter/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/greeter/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/IceDiscovery/greeter/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/greeter/Chatbot.h -------------------------------------------------------------------------------- /cpp/IceDiscovery/greeter/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/greeter/Client.cpp -------------------------------------------------------------------------------- /cpp/IceDiscovery/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/greeter/Greeter.ice -------------------------------------------------------------------------------- /cpp/IceDiscovery/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/greeter/README.md -------------------------------------------------------------------------------- /cpp/IceDiscovery/greeter/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/greeter/Server.cpp -------------------------------------------------------------------------------- /cpp/IceDiscovery/replication/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/replication/Chatbot.h -------------------------------------------------------------------------------- /cpp/IceDiscovery/replication/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/replication/Client.cpp -------------------------------------------------------------------------------- /cpp/IceDiscovery/replication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/replication/README.md -------------------------------------------------------------------------------- /cpp/IceDiscovery/replication/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceDiscovery/replication/Server.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/Chatbot.h -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/Client.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/Greeter.ice -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/README.md -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/Server.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/admin.conf -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/greeter-hall.xml -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/node.conf -------------------------------------------------------------------------------- /cpp/IceGrid/greeter/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/greeter/registry.conf -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/Chatbot.h -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/Client.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/Greeter.ice -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/GreeterService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/GreeterService.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/GreeterService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/GreeterService.h -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/README.md -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/admin.conf -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/greeter-hall.xml -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/grid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/grid.conf -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/node.conf -------------------------------------------------------------------------------- /cpp/IceGrid/icebox/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/icebox/registry.conf -------------------------------------------------------------------------------- /cpp/IceGrid/locatorDiscovery/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/locatorDiscovery/Client.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/locatorDiscovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/locatorDiscovery/README.md -------------------------------------------------------------------------------- /cpp/IceGrid/query/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/IceGrid/query/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/Chatbot.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/query/Chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/Chatbot.h -------------------------------------------------------------------------------- /cpp/IceGrid/query/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/Client.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/query/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/Greeter.ice -------------------------------------------------------------------------------- /cpp/IceGrid/query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/README.md -------------------------------------------------------------------------------- /cpp/IceGrid/query/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/Server.cpp -------------------------------------------------------------------------------- /cpp/IceGrid/query/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/admin.conf -------------------------------------------------------------------------------- /cpp/IceGrid/query/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/greeter-hall.xml -------------------------------------------------------------------------------- /cpp/IceGrid/query/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/node.conf -------------------------------------------------------------------------------- /cpp/IceGrid/query/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceGrid/query/registry.conf -------------------------------------------------------------------------------- /cpp/IceStorm/weather/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/IceStorm/weather/ConsolePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/ConsolePrinter.cpp -------------------------------------------------------------------------------- /cpp/IceStorm/weather/ConsolePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/ConsolePrinter.h -------------------------------------------------------------------------------- /cpp/IceStorm/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/README.md -------------------------------------------------------------------------------- /cpp/IceStorm/weather/Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/Sensor.cpp -------------------------------------------------------------------------------- /cpp/IceStorm/weather/Station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/Station.cpp -------------------------------------------------------------------------------- /cpp/IceStorm/weather/WeatherStation.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/WeatherStation.ice -------------------------------------------------------------------------------- /cpp/IceStorm/weather/icestorm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/IceStorm/weather/icestorm.conf -------------------------------------------------------------------------------- /cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/README.md -------------------------------------------------------------------------------- /cpp/cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/cmake/common.cmake -------------------------------------------------------------------------------- /cpp/common/Env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/common/Env.h -------------------------------------------------------------------------------- /cpp/common/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/cpp/common/Time.h -------------------------------------------------------------------------------- /csharp/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Directory.Build.props -------------------------------------------------------------------------------- /csharp/Glacier2/Callback/Callback.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Callback/Callback.sln -------------------------------------------------------------------------------- /csharp/Glacier2/Callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Callback/README.md -------------------------------------------------------------------------------- /csharp/Glacier2/Callback/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Callback/glacier2.conf -------------------------------------------------------------------------------- /csharp/Glacier2/Greeter/Greeter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Greeter/Greeter.sln -------------------------------------------------------------------------------- /csharp/Glacier2/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Greeter/README.md -------------------------------------------------------------------------------- /csharp/Glacier2/Greeter/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Greeter/glacier2.conf -------------------------------------------------------------------------------- /csharp/Glacier2/Session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Session/README.md -------------------------------------------------------------------------------- /csharp/Glacier2/Session/Session.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Session/Session.sln -------------------------------------------------------------------------------- /csharp/Glacier2/Session/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Glacier2/Session/glacier2.conf -------------------------------------------------------------------------------- /csharp/Ice/Bidir/Bidir.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Bidir/Bidir.sln -------------------------------------------------------------------------------- /csharp/Ice/Bidir/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Bidir/Client/Client.csproj -------------------------------------------------------------------------------- /csharp/Ice/Bidir/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Bidir/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Bidir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Bidir/README.md -------------------------------------------------------------------------------- /csharp/Ice/Bidir/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Bidir/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Bidir/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Bidir/Server/Server.csproj -------------------------------------------------------------------------------- /csharp/Ice/Bidir/slice/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Bidir/slice/AlarmClock.ice -------------------------------------------------------------------------------- /csharp/Ice/Callback/Callback.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Callback/Callback.sln -------------------------------------------------------------------------------- /csharp/Ice/Callback/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Callback/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Callback/README.md -------------------------------------------------------------------------------- /csharp/Ice/Callback/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Callback/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Cancellation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Cancellation/README.md -------------------------------------------------------------------------------- /csharp/Ice/Config/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Client/Client.csproj -------------------------------------------------------------------------------- /csharp/Ice/Config/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Config/Client/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Client/client.conf -------------------------------------------------------------------------------- /csharp/Ice/Config/Config.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Config.sln -------------------------------------------------------------------------------- /csharp/Ice/Config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/README.md -------------------------------------------------------------------------------- /csharp/Ice/Config/Server/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Server/Chatbot.cs -------------------------------------------------------------------------------- /csharp/Ice/Config/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Config/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Server/Server.csproj -------------------------------------------------------------------------------- /csharp/Ice/Config/Server/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/Server/server.conf -------------------------------------------------------------------------------- /csharp/Ice/Config/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Config/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/Ice/Context/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/Client/Client.csproj -------------------------------------------------------------------------------- /csharp/Ice/Context/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Context/Context.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/Context.sln -------------------------------------------------------------------------------- /csharp/Ice/Context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/README.md -------------------------------------------------------------------------------- /csharp/Ice/Context/Server/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/Server/Chatbot.cs -------------------------------------------------------------------------------- /csharp/Ice/Context/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Context/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/Server/Server.csproj -------------------------------------------------------------------------------- /csharp/Ice/Context/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Context/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/Ice/CustomError/CustomError.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/CustomError/CustomError.sln -------------------------------------------------------------------------------- /csharp/Ice/CustomError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/CustomError/README.md -------------------------------------------------------------------------------- /csharp/Ice/Forwarder/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Forwarder/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Forwarder/Forwarder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Forwarder/Forwarder.sln -------------------------------------------------------------------------------- /csharp/Ice/Forwarder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Forwarder/README.md -------------------------------------------------------------------------------- /csharp/Ice/Forwarder/Server/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Forwarder/Server/Chatbot.cs -------------------------------------------------------------------------------- /csharp/Ice/Forwarder/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Forwarder/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Forwarder/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Forwarder/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/Ice/Greeter/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/Client/Client.csproj -------------------------------------------------------------------------------- /csharp/Ice/Greeter/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Greeter/Greeter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/Greeter.sln -------------------------------------------------------------------------------- /csharp/Ice/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/README.md -------------------------------------------------------------------------------- /csharp/Ice/Greeter/Server/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/Server/Chatbot.cs -------------------------------------------------------------------------------- /csharp/Ice/Greeter/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Greeter/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/Server/Server.csproj -------------------------------------------------------------------------------- /csharp/Ice/Greeter/ServerAMD/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/ServerAMD/Chatbot.cs -------------------------------------------------------------------------------- /csharp/Ice/Greeter/ServerAMD/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/ServerAMD/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/Ice/Inheritance/Inheritance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Inheritance/Inheritance.sln -------------------------------------------------------------------------------- /csharp/Ice/Inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Inheritance/README.md -------------------------------------------------------------------------------- /csharp/Ice/Inheritance/Server/MFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Inheritance/Server/MFile.cs -------------------------------------------------------------------------------- /csharp/Ice/Inheritance/Server/MNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Inheritance/Server/MNode.cs -------------------------------------------------------------------------------- /csharp/Ice/Middleware/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Middleware/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Middleware/Middleware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Middleware/Middleware.sln -------------------------------------------------------------------------------- /csharp/Ice/Middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Middleware/README.md -------------------------------------------------------------------------------- /csharp/Ice/Middleware/Server/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Middleware/Server/Chatbot.cs -------------------------------------------------------------------------------- /csharp/Ice/Middleware/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Middleware/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Middleware/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Middleware/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/Ice/Optional/Client1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Optional/Client1/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Optional/Client2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Optional/Client2/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Optional/Optional.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Optional/Optional.sln -------------------------------------------------------------------------------- /csharp/Ice/Optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Optional/README.md -------------------------------------------------------------------------------- /csharp/Ice/Optional/Server1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Optional/Server1/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Optional/Server2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Optional/Server2/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Secure/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/Client/Client.csproj -------------------------------------------------------------------------------- /csharp/Ice/Secure/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/Client/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/README.md -------------------------------------------------------------------------------- /csharp/Ice/Secure/Secure.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/Secure.sln -------------------------------------------------------------------------------- /csharp/Ice/Secure/Server/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/Server/Chatbot.cs -------------------------------------------------------------------------------- /csharp/Ice/Secure/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/Server/Program.cs -------------------------------------------------------------------------------- /csharp/Ice/Secure/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/Server/Server.csproj -------------------------------------------------------------------------------- /csharp/Ice/Secure/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/Ice/Secure/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/IceBox/Greeter/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceBox/Greeter/Client/Program.cs -------------------------------------------------------------------------------- /csharp/IceBox/Greeter/Greeter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceBox/Greeter/Greeter.sln -------------------------------------------------------------------------------- /csharp/IceBox/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceBox/Greeter/README.md -------------------------------------------------------------------------------- /csharp/IceBox/Greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceBox/Greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/IceDiscovery/Greeter/Greeter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceDiscovery/Greeter/Greeter.sln -------------------------------------------------------------------------------- /csharp/IceDiscovery/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceDiscovery/Greeter/README.md -------------------------------------------------------------------------------- /csharp/IceGrid/Greeter/Greeter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Greeter/Greeter.sln -------------------------------------------------------------------------------- /csharp/IceGrid/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Greeter/README.md -------------------------------------------------------------------------------- /csharp/IceGrid/Greeter/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Greeter/admin.conf -------------------------------------------------------------------------------- /csharp/IceGrid/Greeter/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Greeter/greeter-hall.xml -------------------------------------------------------------------------------- /csharp/IceGrid/Greeter/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Greeter/node.conf -------------------------------------------------------------------------------- /csharp/IceGrid/Greeter/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Greeter/registry.conf -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/Client/Program.cs -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/IceBox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/IceBox.sln -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/README.md -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/admin.conf -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/greeter-hall.xml -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/node.conf -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/registry.conf -------------------------------------------------------------------------------- /csharp/IceGrid/IceBox/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/IceBox/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/IceGrid/Query/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/Client/Program.cs -------------------------------------------------------------------------------- /csharp/IceGrid/Query/Query.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/Query.sln -------------------------------------------------------------------------------- /csharp/IceGrid/Query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/README.md -------------------------------------------------------------------------------- /csharp/IceGrid/Query/Server/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/Server/Chatbot.cs -------------------------------------------------------------------------------- /csharp/IceGrid/Query/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/Server/Program.cs -------------------------------------------------------------------------------- /csharp/IceGrid/Query/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/admin.conf -------------------------------------------------------------------------------- /csharp/IceGrid/Query/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/greeter-hall.xml -------------------------------------------------------------------------------- /csharp/IceGrid/Query/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/node.conf -------------------------------------------------------------------------------- /csharp/IceGrid/Query/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/registry.conf -------------------------------------------------------------------------------- /csharp/IceGrid/Query/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceGrid/Query/slice/Greeter.ice -------------------------------------------------------------------------------- /csharp/IceStorm/Weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceStorm/Weather/README.md -------------------------------------------------------------------------------- /csharp/IceStorm/Weather/Weather.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceStorm/Weather/Weather.sln -------------------------------------------------------------------------------- /csharp/IceStorm/Weather/icestorm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/IceStorm/Weather/icestorm.conf -------------------------------------------------------------------------------- /csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/README.md -------------------------------------------------------------------------------- /csharp/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/csharp/nuget.config -------------------------------------------------------------------------------- /java/Glacier2/callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/callback/README.md -------------------------------------------------------------------------------- /java/Glacier2/callback/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/callback/glacier2.conf -------------------------------------------------------------------------------- /java/Glacier2/callback/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/callback/gradlew -------------------------------------------------------------------------------- /java/Glacier2/callback/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/callback/gradlew.bat -------------------------------------------------------------------------------- /java/Glacier2/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/greeter/README.md -------------------------------------------------------------------------------- /java/Glacier2/greeter/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/greeter/glacier2.conf -------------------------------------------------------------------------------- /java/Glacier2/greeter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/greeter/gradlew -------------------------------------------------------------------------------- /java/Glacier2/greeter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/greeter/gradlew.bat -------------------------------------------------------------------------------- /java/Glacier2/greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Glacier2/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/session/README.md -------------------------------------------------------------------------------- /java/Glacier2/session/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/session/glacier2.conf -------------------------------------------------------------------------------- /java/Glacier2/session/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/session/gradlew -------------------------------------------------------------------------------- /java/Glacier2/session/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/session/gradlew.bat -------------------------------------------------------------------------------- /java/Glacier2/session/slice/PokeBox.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Glacier2/session/slice/PokeBox.ice -------------------------------------------------------------------------------- /java/Ice/android-greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/android-greeter/README.md -------------------------------------------------------------------------------- /java/Ice/android-greeter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/android-greeter/gradlew -------------------------------------------------------------------------------- /java/Ice/android-greeter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/android-greeter/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/bidir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/bidir/README.md -------------------------------------------------------------------------------- /java/Ice/bidir/client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/bidir/client/build.gradle.kts -------------------------------------------------------------------------------- /java/Ice/bidir/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/bidir/gradlew -------------------------------------------------------------------------------- /java/Ice/bidir/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/bidir/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/bidir/server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/bidir/server/build.gradle.kts -------------------------------------------------------------------------------- /java/Ice/bidir/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/bidir/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/bidir/slice/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/bidir/slice/AlarmClock.ice -------------------------------------------------------------------------------- /java/Ice/callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/callback/README.md -------------------------------------------------------------------------------- /java/Ice/callback/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/callback/gradlew -------------------------------------------------------------------------------- /java/Ice/callback/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/callback/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/callback/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/callback/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/callback/slice/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/callback/slice/AlarmClock.ice -------------------------------------------------------------------------------- /java/Ice/cancellation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/cancellation/README.md -------------------------------------------------------------------------------- /java/Ice/cancellation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/cancellation/gradlew -------------------------------------------------------------------------------- /java/Ice/cancellation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/cancellation/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/cancellation/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/cancellation/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Ice/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/README.md -------------------------------------------------------------------------------- /java/Ice/config/client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/client/build.gradle.kts -------------------------------------------------------------------------------- /java/Ice/config/client/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/client/client.conf -------------------------------------------------------------------------------- /java/Ice/config/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/gradlew -------------------------------------------------------------------------------- /java/Ice/config/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/config/server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/server/build.gradle.kts -------------------------------------------------------------------------------- /java/Ice/config/server/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/server/server.conf -------------------------------------------------------------------------------- /java/Ice/config/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/config/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/config/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Ice/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/context/README.md -------------------------------------------------------------------------------- /java/Ice/context/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/context/gradlew -------------------------------------------------------------------------------- /java/Ice/context/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/context/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/context/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/context/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/context/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/context/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Ice/customError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/customError/README.md -------------------------------------------------------------------------------- /java/Ice/customError/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/customError/gradlew -------------------------------------------------------------------------------- /java/Ice/customError/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/customError/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/customError/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/customError/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Ice/forwarder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/forwarder/README.md -------------------------------------------------------------------------------- /java/Ice/forwarder/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/forwarder/gradlew -------------------------------------------------------------------------------- /java/Ice/forwarder/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/forwarder/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/forwarder/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/forwarder/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/forwarder/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/forwarder/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Ice/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/greeter/README.md -------------------------------------------------------------------------------- /java/Ice/greeter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/greeter/gradlew -------------------------------------------------------------------------------- /java/Ice/greeter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/greeter/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/greeter/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/greeter/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Ice/greeter/slice/GreeterAMD.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/greeter/slice/GreeterAMD.ice -------------------------------------------------------------------------------- /java/Ice/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/inheritance/README.md -------------------------------------------------------------------------------- /java/Ice/inheritance/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/inheritance/gradlew -------------------------------------------------------------------------------- /java/Ice/inheritance/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/inheritance/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/middleware/README.md -------------------------------------------------------------------------------- /java/Ice/middleware/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/middleware/gradlew -------------------------------------------------------------------------------- /java/Ice/middleware/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/middleware/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/middleware/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/middleware/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/middleware/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/middleware/slice/Greeter.ice -------------------------------------------------------------------------------- /java/Ice/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/optional/README.md -------------------------------------------------------------------------------- /java/Ice/optional/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/optional/gradlew -------------------------------------------------------------------------------- /java/Ice/optional/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/optional/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/optional/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/optional/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/secure/README.md -------------------------------------------------------------------------------- /java/Ice/secure/client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/secure/client/build.gradle.kts -------------------------------------------------------------------------------- /java/Ice/secure/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/secure/gradlew -------------------------------------------------------------------------------- /java/Ice/secure/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/secure/gradlew.bat -------------------------------------------------------------------------------- /java/Ice/secure/server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/secure/server/build.gradle.kts -------------------------------------------------------------------------------- /java/Ice/secure/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/secure/settings.gradle.kts -------------------------------------------------------------------------------- /java/Ice/secure/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/Ice/secure/slice/Greeter.ice -------------------------------------------------------------------------------- /java/IceBox/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceBox/greeter/README.md -------------------------------------------------------------------------------- /java/IceBox/greeter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceBox/greeter/gradlew -------------------------------------------------------------------------------- /java/IceBox/greeter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceBox/greeter/gradlew.bat -------------------------------------------------------------------------------- /java/IceBox/greeter/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceBox/greeter/settings.gradle.kts -------------------------------------------------------------------------------- /java/IceBox/greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceBox/greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /java/IceDiscovery/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceDiscovery/greeter/README.md -------------------------------------------------------------------------------- /java/IceDiscovery/greeter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceDiscovery/greeter/gradlew -------------------------------------------------------------------------------- /java/IceDiscovery/greeter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceDiscovery/greeter/gradlew.bat -------------------------------------------------------------------------------- /java/IceDiscovery/replication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceDiscovery/replication/README.md -------------------------------------------------------------------------------- /java/IceDiscovery/replication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceDiscovery/replication/gradlew -------------------------------------------------------------------------------- /java/IceGrid/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/README.md -------------------------------------------------------------------------------- /java/IceGrid/greeter/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/admin.conf -------------------------------------------------------------------------------- /java/IceGrid/greeter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/gradlew -------------------------------------------------------------------------------- /java/IceGrid/greeter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/gradlew.bat -------------------------------------------------------------------------------- /java/IceGrid/greeter/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/greeter-hall.xml -------------------------------------------------------------------------------- /java/IceGrid/greeter/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/node.conf -------------------------------------------------------------------------------- /java/IceGrid/greeter/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/registry.conf -------------------------------------------------------------------------------- /java/IceGrid/greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /java/IceGrid/icebox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/README.md -------------------------------------------------------------------------------- /java/IceGrid/icebox/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/admin.conf -------------------------------------------------------------------------------- /java/IceGrid/icebox/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/gradlew -------------------------------------------------------------------------------- /java/IceGrid/icebox/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/gradlew.bat -------------------------------------------------------------------------------- /java/IceGrid/icebox/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/greeter-hall.xml -------------------------------------------------------------------------------- /java/IceGrid/icebox/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/node.conf -------------------------------------------------------------------------------- /java/IceGrid/icebox/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/registry.conf -------------------------------------------------------------------------------- /java/IceGrid/icebox/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/settings.gradle.kts -------------------------------------------------------------------------------- /java/IceGrid/icebox/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/icebox/slice/Greeter.ice -------------------------------------------------------------------------------- /java/IceGrid/locatorDiscovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/locatorDiscovery/README.md -------------------------------------------------------------------------------- /java/IceGrid/locatorDiscovery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/locatorDiscovery/gradlew -------------------------------------------------------------------------------- /java/IceGrid/query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/README.md -------------------------------------------------------------------------------- /java/IceGrid/query/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/admin.conf -------------------------------------------------------------------------------- /java/IceGrid/query/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/gradlew -------------------------------------------------------------------------------- /java/IceGrid/query/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/gradlew.bat -------------------------------------------------------------------------------- /java/IceGrid/query/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/greeter-hall.xml -------------------------------------------------------------------------------- /java/IceGrid/query/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/node.conf -------------------------------------------------------------------------------- /java/IceGrid/query/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/registry.conf -------------------------------------------------------------------------------- /java/IceGrid/query/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/settings.gradle.kts -------------------------------------------------------------------------------- /java/IceGrid/query/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceGrid/query/slice/Greeter.ice -------------------------------------------------------------------------------- /java/IceStorm/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceStorm/weather/README.md -------------------------------------------------------------------------------- /java/IceStorm/weather/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceStorm/weather/gradlew -------------------------------------------------------------------------------- /java/IceStorm/weather/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceStorm/weather/gradlew.bat -------------------------------------------------------------------------------- /java/IceStorm/weather/icestorm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/IceStorm/weather/icestorm.conf -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/README.md -------------------------------------------------------------------------------- /java/build-logic/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/build-logic/build.gradle.kts -------------------------------------------------------------------------------- /java/config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /java/config/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/config/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /java/config/rewrite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/config/rewrite.yml -------------------------------------------------------------------------------- /java/util/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/java/util/build.gradle.kts -------------------------------------------------------------------------------- /js/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/.editorconfig -------------------------------------------------------------------------------- /js/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/.prettierignore -------------------------------------------------------------------------------- /js/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/.prettierrc -------------------------------------------------------------------------------- /js/Glacier2/callback/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/.npmrc -------------------------------------------------------------------------------- /js/Glacier2/callback/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/AlarmClock.ice -------------------------------------------------------------------------------- /js/Glacier2/callback/MockAlarmClock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/MockAlarmClock.ts -------------------------------------------------------------------------------- /js/Glacier2/callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/README.md -------------------------------------------------------------------------------- /js/Glacier2/callback/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/client.ts -------------------------------------------------------------------------------- /js/Glacier2/callback/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/eslint.config.js -------------------------------------------------------------------------------- /js/Glacier2/callback/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/package.json -------------------------------------------------------------------------------- /js/Glacier2/callback/timeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/timeUtil.ts -------------------------------------------------------------------------------- /js/Glacier2/callback/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Glacier2/callback/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/bidir/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/.npmrc -------------------------------------------------------------------------------- /js/Ice/bidir/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/AlarmClock.ice -------------------------------------------------------------------------------- /js/Ice/bidir/MockAlarmClock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/MockAlarmClock.ts -------------------------------------------------------------------------------- /js/Ice/bidir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/README.md -------------------------------------------------------------------------------- /js/Ice/bidir/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/client.ts -------------------------------------------------------------------------------- /js/Ice/bidir/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/eslint.config.js -------------------------------------------------------------------------------- /js/Ice/bidir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/package.json -------------------------------------------------------------------------------- /js/Ice/bidir/timeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/timeUtil.ts -------------------------------------------------------------------------------- /js/Ice/bidir/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/bidir/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/cancellation/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/cancellation/.npmrc -------------------------------------------------------------------------------- /js/Ice/cancellation/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/cancellation/Greeter.ice -------------------------------------------------------------------------------- /js/Ice/cancellation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/cancellation/README.md -------------------------------------------------------------------------------- /js/Ice/cancellation/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/cancellation/client.ts -------------------------------------------------------------------------------- /js/Ice/cancellation/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/cancellation/eslint.config.js -------------------------------------------------------------------------------- /js/Ice/cancellation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/cancellation/package.json -------------------------------------------------------------------------------- /js/Ice/cancellation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/cancellation/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/context/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/context/.npmrc -------------------------------------------------------------------------------- /js/Ice/context/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/context/Greeter.ice -------------------------------------------------------------------------------- /js/Ice/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/context/README.md -------------------------------------------------------------------------------- /js/Ice/context/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/context/client.ts -------------------------------------------------------------------------------- /js/Ice/context/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/context/eslint.config.js -------------------------------------------------------------------------------- /js/Ice/context/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/context/package.json -------------------------------------------------------------------------------- /js/Ice/context/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/context/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/customError/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/customError/.npmrc -------------------------------------------------------------------------------- /js/Ice/customError/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/customError/Greeter.ice -------------------------------------------------------------------------------- /js/Ice/customError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/customError/README.md -------------------------------------------------------------------------------- /js/Ice/customError/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/customError/client.ts -------------------------------------------------------------------------------- /js/Ice/customError/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/customError/eslint.config.js -------------------------------------------------------------------------------- /js/Ice/customError/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/customError/package.json -------------------------------------------------------------------------------- /js/Ice/customError/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/customError/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/greeter/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/greeter/.npmrc -------------------------------------------------------------------------------- /js/Ice/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/greeter/Greeter.ice -------------------------------------------------------------------------------- /js/Ice/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/greeter/README.md -------------------------------------------------------------------------------- /js/Ice/greeter/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/greeter/client.ts -------------------------------------------------------------------------------- /js/Ice/greeter/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/greeter/eslint.config.js -------------------------------------------------------------------------------- /js/Ice/greeter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/greeter/package.json -------------------------------------------------------------------------------- /js/Ice/greeter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/greeter/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/inheritance/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/inheritance/.npmrc -------------------------------------------------------------------------------- /js/Ice/inheritance/Filesystem.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/inheritance/Filesystem.ice -------------------------------------------------------------------------------- /js/Ice/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/inheritance/README.md -------------------------------------------------------------------------------- /js/Ice/inheritance/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/inheritance/client.ts -------------------------------------------------------------------------------- /js/Ice/inheritance/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/inheritance/eslint.config.js -------------------------------------------------------------------------------- /js/Ice/inheritance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/inheritance/package.json -------------------------------------------------------------------------------- /js/Ice/inheritance/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/inheritance/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/README.md -------------------------------------------------------------------------------- /js/Ice/optional/client1/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client1/.npmrc -------------------------------------------------------------------------------- /js/Ice/optional/client1/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client1/client.ts -------------------------------------------------------------------------------- /js/Ice/optional/client1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client1/package.json -------------------------------------------------------------------------------- /js/Ice/optional/client1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client1/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/optional/client2/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client2/.npmrc -------------------------------------------------------------------------------- /js/Ice/optional/client2/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client2/client.ts -------------------------------------------------------------------------------- /js/Ice/optional/client2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client2/package.json -------------------------------------------------------------------------------- /js/Ice/optional/client2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/optional/client2/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/react-greeter/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/.npmrc -------------------------------------------------------------------------------- /js/Ice/react-greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/README.md -------------------------------------------------------------------------------- /js/Ice/react-greeter/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/eslint.config.js -------------------------------------------------------------------------------- /js/Ice/react-greeter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/index.html -------------------------------------------------------------------------------- /js/Ice/react-greeter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/package.json -------------------------------------------------------------------------------- /js/Ice/react-greeter/src/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/src/Greeter.ice -------------------------------------------------------------------------------- /js/Ice/react-greeter/src/GreeterApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/src/GreeterApp.tsx -------------------------------------------------------------------------------- /js/Ice/react-greeter/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/src/app.css -------------------------------------------------------------------------------- /js/Ice/react-greeter/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/src/main.tsx -------------------------------------------------------------------------------- /js/Ice/react-greeter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/tsconfig.json -------------------------------------------------------------------------------- /js/Ice/react-greeter/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/Ice/react-greeter/vite.config.ts -------------------------------------------------------------------------------- /js/IceGrid/greeter/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceGrid/greeter/.npmrc -------------------------------------------------------------------------------- /js/IceGrid/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceGrid/greeter/Greeter.ice -------------------------------------------------------------------------------- /js/IceGrid/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceGrid/greeter/README.md -------------------------------------------------------------------------------- /js/IceGrid/greeter/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceGrid/greeter/client.ts -------------------------------------------------------------------------------- /js/IceGrid/greeter/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceGrid/greeter/eslint.config.js -------------------------------------------------------------------------------- /js/IceGrid/greeter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceGrid/greeter/package.json -------------------------------------------------------------------------------- /js/IceGrid/greeter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceGrid/greeter/tsconfig.json -------------------------------------------------------------------------------- /js/IceStorm/weather/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceStorm/weather/.npmrc -------------------------------------------------------------------------------- /js/IceStorm/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceStorm/weather/README.md -------------------------------------------------------------------------------- /js/IceStorm/weather/WeatherStation.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceStorm/weather/WeatherStation.ice -------------------------------------------------------------------------------- /js/IceStorm/weather/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceStorm/weather/eslint.config.js -------------------------------------------------------------------------------- /js/IceStorm/weather/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceStorm/weather/package.json -------------------------------------------------------------------------------- /js/IceStorm/weather/sensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceStorm/weather/sensor.ts -------------------------------------------------------------------------------- /js/IceStorm/weather/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/IceStorm/weather/tsconfig.json -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/js/README.md -------------------------------------------------------------------------------- /matlab/Glacier2/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Glacier2/greeter/Greeter.ice -------------------------------------------------------------------------------- /matlab/Glacier2/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Glacier2/greeter/README.md -------------------------------------------------------------------------------- /matlab/Glacier2/greeter/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Glacier2/greeter/client.m -------------------------------------------------------------------------------- /matlab/Ice/cancellation/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/cancellation/Greeter.ice -------------------------------------------------------------------------------- /matlab/Ice/cancellation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/cancellation/README.md -------------------------------------------------------------------------------- /matlab/Ice/cancellation/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/cancellation/client.m -------------------------------------------------------------------------------- /matlab/Ice/config/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/config/Greeter.ice -------------------------------------------------------------------------------- /matlab/Ice/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/config/README.md -------------------------------------------------------------------------------- /matlab/Ice/config/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/config/client.conf -------------------------------------------------------------------------------- /matlab/Ice/config/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/config/client.m -------------------------------------------------------------------------------- /matlab/Ice/context/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/context/Greeter.ice -------------------------------------------------------------------------------- /matlab/Ice/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/context/README.md -------------------------------------------------------------------------------- /matlab/Ice/context/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/context/client.m -------------------------------------------------------------------------------- /matlab/Ice/customError/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/customError/Greeter.ice -------------------------------------------------------------------------------- /matlab/Ice/customError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/customError/README.md -------------------------------------------------------------------------------- /matlab/Ice/customError/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/customError/client.m -------------------------------------------------------------------------------- /matlab/Ice/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/greeter/Greeter.ice -------------------------------------------------------------------------------- /matlab/Ice/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/greeter/README.md -------------------------------------------------------------------------------- /matlab/Ice/greeter/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/greeter/client.m -------------------------------------------------------------------------------- /matlab/Ice/inheritance/Filesystem.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/inheritance/Filesystem.ice -------------------------------------------------------------------------------- /matlab/Ice/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/inheritance/README.md -------------------------------------------------------------------------------- /matlab/Ice/inheritance/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/inheritance/client.m -------------------------------------------------------------------------------- /matlab/Ice/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/optional/README.md -------------------------------------------------------------------------------- /matlab/Ice/optional/client1/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/optional/client1/client.m -------------------------------------------------------------------------------- /matlab/Ice/optional/client2/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/Ice/optional/client2/client.m -------------------------------------------------------------------------------- /matlab/IceDiscovery/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceDiscovery/greeter/Greeter.ice -------------------------------------------------------------------------------- /matlab/IceDiscovery/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceDiscovery/greeter/README.md -------------------------------------------------------------------------------- /matlab/IceDiscovery/greeter/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceDiscovery/greeter/client.m -------------------------------------------------------------------------------- /matlab/IceGrid/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceGrid/greeter/Greeter.ice -------------------------------------------------------------------------------- /matlab/IceGrid/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceGrid/greeter/README.md -------------------------------------------------------------------------------- /matlab/IceGrid/greeter/client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceGrid/greeter/client.m -------------------------------------------------------------------------------- /matlab/IceStorm/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceStorm/weather/README.md -------------------------------------------------------------------------------- /matlab/IceStorm/weather/sensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/IceStorm/weather/sensor.m -------------------------------------------------------------------------------- /matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/matlab/README.md -------------------------------------------------------------------------------- /php/Glacier2/greeter/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Glacier2/greeter/Client.php -------------------------------------------------------------------------------- /php/Glacier2/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Glacier2/greeter/Greeter.ice -------------------------------------------------------------------------------- /php/Glacier2/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Glacier2/greeter/README.md -------------------------------------------------------------------------------- /php/Ice/config/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/config/Client.php -------------------------------------------------------------------------------- /php/Ice/config/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/config/Greeter.ice -------------------------------------------------------------------------------- /php/Ice/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/config/README.md -------------------------------------------------------------------------------- /php/Ice/config/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/config/client.conf -------------------------------------------------------------------------------- /php/Ice/context/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/context/Client.php -------------------------------------------------------------------------------- /php/Ice/context/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/context/Greeter.ice -------------------------------------------------------------------------------- /php/Ice/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/context/README.md -------------------------------------------------------------------------------- /php/Ice/customError/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/customError/Client.php -------------------------------------------------------------------------------- /php/Ice/customError/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/customError/Greeter.ice -------------------------------------------------------------------------------- /php/Ice/customError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/customError/README.md -------------------------------------------------------------------------------- /php/Ice/greeter/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/greeter/Client.php -------------------------------------------------------------------------------- /php/Ice/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/greeter/Greeter.ice -------------------------------------------------------------------------------- /php/Ice/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/greeter/README.md -------------------------------------------------------------------------------- /php/Ice/inheritance/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/inheritance/Client.php -------------------------------------------------------------------------------- /php/Ice/inheritance/Filesystem.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/inheritance/Filesystem.ice -------------------------------------------------------------------------------- /php/Ice/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/inheritance/README.md -------------------------------------------------------------------------------- /php/Ice/invocationTimeout/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/invocationTimeout/Client.php -------------------------------------------------------------------------------- /php/Ice/invocationTimeout/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/invocationTimeout/Greeter.ice -------------------------------------------------------------------------------- /php/Ice/invocationTimeout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/invocationTimeout/README.md -------------------------------------------------------------------------------- /php/Ice/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/optional/README.md -------------------------------------------------------------------------------- /php/Ice/optional/client1/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/optional/client1/Client.php -------------------------------------------------------------------------------- /php/Ice/optional/client2/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/Ice/optional/client2/Client.php -------------------------------------------------------------------------------- /php/IceDiscovery/greeter/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceDiscovery/greeter/Client.php -------------------------------------------------------------------------------- /php/IceDiscovery/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceDiscovery/greeter/Greeter.ice -------------------------------------------------------------------------------- /php/IceDiscovery/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceDiscovery/greeter/README.md -------------------------------------------------------------------------------- /php/IceGrid/greeter/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceGrid/greeter/Client.php -------------------------------------------------------------------------------- /php/IceGrid/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceGrid/greeter/Greeter.ice -------------------------------------------------------------------------------- /php/IceGrid/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceGrid/greeter/README.md -------------------------------------------------------------------------------- /php/IceGrid/locatorDiscovery/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceGrid/locatorDiscovery/Client.php -------------------------------------------------------------------------------- /php/IceGrid/locatorDiscovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceGrid/locatorDiscovery/README.md -------------------------------------------------------------------------------- /php/IceStorm/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceStorm/weather/README.md -------------------------------------------------------------------------------- /php/IceStorm/weather/Sensor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceStorm/weather/Sensor.php -------------------------------------------------------------------------------- /php/IceStorm/weather/WeatherStation.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/IceStorm/weather/WeatherStation.ice -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/php/README.md -------------------------------------------------------------------------------- /python/Glacier2/callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/callback/README.md -------------------------------------------------------------------------------- /python/Glacier2/callback/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/callback/client/main.py -------------------------------------------------------------------------------- /python/Glacier2/callback/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/callback/glacier2.conf -------------------------------------------------------------------------------- /python/Glacier2/callback/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/callback/server/main.py -------------------------------------------------------------------------------- /python/Glacier2/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/greeter/README.md -------------------------------------------------------------------------------- /python/Glacier2/greeter/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/greeter/client/main.py -------------------------------------------------------------------------------- /python/Glacier2/greeter/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/greeter/glacier2.conf -------------------------------------------------------------------------------- /python/Glacier2/greeter/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/greeter/server/main.py -------------------------------------------------------------------------------- /python/Glacier2/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/session/README.md -------------------------------------------------------------------------------- /python/Glacier2/session/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/session/client/main.py -------------------------------------------------------------------------------- /python/Glacier2/session/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/session/glacier2.conf -------------------------------------------------------------------------------- /python/Glacier2/session/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Glacier2/session/server/main.py -------------------------------------------------------------------------------- /python/Ice/bidir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/bidir/README.md -------------------------------------------------------------------------------- /python/Ice/bidir/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/bidir/client/main.py -------------------------------------------------------------------------------- /python/Ice/bidir/client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/bidir/client/pyproject.toml -------------------------------------------------------------------------------- /python/Ice/bidir/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/bidir/server/main.py -------------------------------------------------------------------------------- /python/Ice/bidir/server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/bidir/server/pyproject.toml -------------------------------------------------------------------------------- /python/Ice/bidir/slice/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/bidir/slice/AlarmClock.ice -------------------------------------------------------------------------------- /python/Ice/callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/callback/README.md -------------------------------------------------------------------------------- /python/Ice/callback/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/callback/client/main.py -------------------------------------------------------------------------------- /python/Ice/callback/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/callback/server/main.py -------------------------------------------------------------------------------- /python/Ice/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/README.md -------------------------------------------------------------------------------- /python/Ice/config/client/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/client/client.conf -------------------------------------------------------------------------------- /python/Ice/config/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/client/main.py -------------------------------------------------------------------------------- /python/Ice/config/client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/client/pyproject.toml -------------------------------------------------------------------------------- /python/Ice/config/server/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/server/chatbot.py -------------------------------------------------------------------------------- /python/Ice/config/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/server/main.py -------------------------------------------------------------------------------- /python/Ice/config/server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/server/pyproject.toml -------------------------------------------------------------------------------- /python/Ice/config/server/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/server/server.conf -------------------------------------------------------------------------------- /python/Ice/config/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/config/slice/Greeter.ice -------------------------------------------------------------------------------- /python/Ice/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/context/README.md -------------------------------------------------------------------------------- /python/Ice/context/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/context/client/main.py -------------------------------------------------------------------------------- /python/Ice/context/server/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/context/server/chatbot.py -------------------------------------------------------------------------------- /python/Ice/context/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/context/server/main.py -------------------------------------------------------------------------------- /python/Ice/context/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/context/slice/Greeter.ice -------------------------------------------------------------------------------- /python/Ice/customError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/customError/README.md -------------------------------------------------------------------------------- /python/Ice/customError/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/customError/client/main.py -------------------------------------------------------------------------------- /python/Ice/customError/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/customError/server/main.py -------------------------------------------------------------------------------- /python/Ice/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/greeter/README.md -------------------------------------------------------------------------------- /python/Ice/greeter/client/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /python/Ice/greeter/client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/Ice/greeter/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/greeter/client/main.py -------------------------------------------------------------------------------- /python/Ice/greeter/server/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /python/Ice/greeter/server/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/greeter/server/chatbot.py -------------------------------------------------------------------------------- /python/Ice/greeter/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/greeter/server/main.py -------------------------------------------------------------------------------- /python/Ice/greeter/server_amd/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /python/Ice/greeter/server_amd/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/greeter/server_amd/main.py -------------------------------------------------------------------------------- /python/Ice/greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /python/Ice/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/inheritance/README.md -------------------------------------------------------------------------------- /python/Ice/inheritance/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/inheritance/client/main.py -------------------------------------------------------------------------------- /python/Ice/inheritance/server/m_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/inheritance/server/m_file.py -------------------------------------------------------------------------------- /python/Ice/inheritance/server/m_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/inheritance/server/m_node.py -------------------------------------------------------------------------------- /python/Ice/inheritance/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/inheritance/server/main.py -------------------------------------------------------------------------------- /python/Ice/invocation_timeout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/invocation_timeout/README.md -------------------------------------------------------------------------------- /python/Ice/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/optional/README.md -------------------------------------------------------------------------------- /python/Ice/optional/client1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/optional/client1/main.py -------------------------------------------------------------------------------- /python/Ice/optional/client2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/optional/client2/main.py -------------------------------------------------------------------------------- /python/Ice/optional/server1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/optional/server1/main.py -------------------------------------------------------------------------------- /python/Ice/optional/server2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/Ice/optional/server2/main.py -------------------------------------------------------------------------------- /python/IceDiscovery/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceDiscovery/greeter/README.md -------------------------------------------------------------------------------- /python/IceGrid/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceGrid/greeter/README.md -------------------------------------------------------------------------------- /python/IceGrid/greeter/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceGrid/greeter/admin.conf -------------------------------------------------------------------------------- /python/IceGrid/greeter/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceGrid/greeter/client/main.py -------------------------------------------------------------------------------- /python/IceGrid/greeter/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceGrid/greeter/greeter-hall.xml -------------------------------------------------------------------------------- /python/IceGrid/greeter/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceGrid/greeter/node.conf -------------------------------------------------------------------------------- /python/IceGrid/greeter/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceGrid/greeter/registry.conf -------------------------------------------------------------------------------- /python/IceGrid/greeter/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceGrid/greeter/server/main.py -------------------------------------------------------------------------------- /python/IceStorm/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceStorm/weather/README.md -------------------------------------------------------------------------------- /python/IceStorm/weather/icestorm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceStorm/weather/icestorm.conf -------------------------------------------------------------------------------- /python/IceStorm/weather/sensor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceStorm/weather/sensor/main.py -------------------------------------------------------------------------------- /python/IceStorm/weather/station/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/IceStorm/weather/station/main.py -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/README.md -------------------------------------------------------------------------------- /python/common/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/common/pyproject.toml -------------------------------------------------------------------------------- /python/common/src/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/common/src/common/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/common/src/common/time.py -------------------------------------------------------------------------------- /python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/python/tox.ini -------------------------------------------------------------------------------- /ruby/Glacier2/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Glacier2/greeter/Greeter.ice -------------------------------------------------------------------------------- /ruby/Glacier2/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Glacier2/greeter/README.md -------------------------------------------------------------------------------- /ruby/Glacier2/greeter/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Glacier2/greeter/client.rb -------------------------------------------------------------------------------- /ruby/Ice/config/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/config/Greeter.ice -------------------------------------------------------------------------------- /ruby/Ice/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/config/README.md -------------------------------------------------------------------------------- /ruby/Ice/config/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/config/client.conf -------------------------------------------------------------------------------- /ruby/Ice/config/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/config/client.rb -------------------------------------------------------------------------------- /ruby/Ice/context/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/context/Greeter.ice -------------------------------------------------------------------------------- /ruby/Ice/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/context/README.md -------------------------------------------------------------------------------- /ruby/Ice/context/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/context/client.rb -------------------------------------------------------------------------------- /ruby/Ice/customError/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/customError/Greeter.ice -------------------------------------------------------------------------------- /ruby/Ice/customError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/customError/README.md -------------------------------------------------------------------------------- /ruby/Ice/customError/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/customError/client.rb -------------------------------------------------------------------------------- /ruby/Ice/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/greeter/Greeter.ice -------------------------------------------------------------------------------- /ruby/Ice/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/greeter/README.md -------------------------------------------------------------------------------- /ruby/Ice/greeter/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/greeter/client.rb -------------------------------------------------------------------------------- /ruby/Ice/inheritance/Filesystem.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/inheritance/Filesystem.ice -------------------------------------------------------------------------------- /ruby/Ice/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/inheritance/README.md -------------------------------------------------------------------------------- /ruby/Ice/inheritance/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/inheritance/client.rb -------------------------------------------------------------------------------- /ruby/Ice/invocationTimeout/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/invocationTimeout/Greeter.ice -------------------------------------------------------------------------------- /ruby/Ice/invocationTimeout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/invocationTimeout/README.md -------------------------------------------------------------------------------- /ruby/Ice/invocationTimeout/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/invocationTimeout/client.rb -------------------------------------------------------------------------------- /ruby/Ice/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/optional/README.md -------------------------------------------------------------------------------- /ruby/Ice/optional/client1/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/optional/client1/client.rb -------------------------------------------------------------------------------- /ruby/Ice/optional/client2/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/Ice/optional/client2/client.rb -------------------------------------------------------------------------------- /ruby/IceDiscovery/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceDiscovery/greeter/Greeter.ice -------------------------------------------------------------------------------- /ruby/IceDiscovery/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceDiscovery/greeter/README.md -------------------------------------------------------------------------------- /ruby/IceDiscovery/greeter/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceDiscovery/greeter/client.rb -------------------------------------------------------------------------------- /ruby/IceGrid/greeter/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceGrid/greeter/Greeter.ice -------------------------------------------------------------------------------- /ruby/IceGrid/greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceGrid/greeter/README.md -------------------------------------------------------------------------------- /ruby/IceGrid/greeter/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceGrid/greeter/client.rb -------------------------------------------------------------------------------- /ruby/IceGrid/locatorDiscovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceGrid/locatorDiscovery/README.md -------------------------------------------------------------------------------- /ruby/IceGrid/locatorDiscovery/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceGrid/locatorDiscovery/client.rb -------------------------------------------------------------------------------- /ruby/IceStorm/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceStorm/weather/README.md -------------------------------------------------------------------------------- /ruby/IceStorm/weather/sensor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/IceStorm/weather/sensor.rb -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/ruff.toml -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/stylecop.json -------------------------------------------------------------------------------- /swift/.swift-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/.swift-format.json -------------------------------------------------------------------------------- /swift/.swift-version: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /swift/Glacier2/Callback/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Callback/Package.swift -------------------------------------------------------------------------------- /swift/Glacier2/Callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Callback/README.md -------------------------------------------------------------------------------- /swift/Glacier2/Callback/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Callback/glacier2.conf -------------------------------------------------------------------------------- /swift/Glacier2/Greeter/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Greeter/Package.swift -------------------------------------------------------------------------------- /swift/Glacier2/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Greeter/README.md -------------------------------------------------------------------------------- /swift/Glacier2/Greeter/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Greeter/glacier2.conf -------------------------------------------------------------------------------- /swift/Glacier2/Session/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Session/Package.swift -------------------------------------------------------------------------------- /swift/Glacier2/Session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Session/README.md -------------------------------------------------------------------------------- /swift/Glacier2/Session/glacier2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Glacier2/Session/glacier2.conf -------------------------------------------------------------------------------- /swift/Ice/Bidir/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Bidir/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Bidir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Bidir/README.md -------------------------------------------------------------------------------- /swift/Ice/Bidir/slice/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Bidir/slice/AlarmClock.ice -------------------------------------------------------------------------------- /swift/Ice/Callback/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Callback/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Callback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Callback/README.md -------------------------------------------------------------------------------- /swift/Ice/Callback/slice/AlarmClock.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Callback/slice/AlarmClock.ice -------------------------------------------------------------------------------- /swift/Ice/Config/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Config/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Config/README.md -------------------------------------------------------------------------------- /swift/Ice/Config/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Config/client.conf -------------------------------------------------------------------------------- /swift/Ice/Config/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Config/server.conf -------------------------------------------------------------------------------- /swift/Ice/Config/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Config/slice/Greeter.ice -------------------------------------------------------------------------------- /swift/Ice/Context/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Context/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Context/README.md -------------------------------------------------------------------------------- /swift/Ice/Context/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Context/slice/Greeter.ice -------------------------------------------------------------------------------- /swift/Ice/CustomError/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/CustomError/Package.swift -------------------------------------------------------------------------------- /swift/Ice/CustomError/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/CustomError/README.md -------------------------------------------------------------------------------- /swift/Ice/CustomError/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/CustomError/slice/Greeter.ice -------------------------------------------------------------------------------- /swift/Ice/Forwarder/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Forwarder/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Forwarder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Forwarder/README.md -------------------------------------------------------------------------------- /swift/Ice/Forwarder/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Forwarder/slice/Greeter.ice -------------------------------------------------------------------------------- /swift/Ice/Greeter/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Greeter/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Greeter/README.md -------------------------------------------------------------------------------- /swift/Ice/Greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /swift/Ice/GreeterApp/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/GreeterApp/Greeter.ice -------------------------------------------------------------------------------- /swift/Ice/GreeterApp/GreeterApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/GreeterApp/GreeterApp.swift -------------------------------------------------------------------------------- /swift/Ice/GreeterApp/GreeterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/GreeterApp/GreeterView.swift -------------------------------------------------------------------------------- /swift/Ice/GreeterApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/GreeterApp/README.md -------------------------------------------------------------------------------- /swift/Ice/Inheritance/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Inheritance/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Inheritance/README.md -------------------------------------------------------------------------------- /swift/Ice/InvocationTimeout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/InvocationTimeout/README.md -------------------------------------------------------------------------------- /swift/Ice/Middleware/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Middleware/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Middleware/README.md -------------------------------------------------------------------------------- /swift/Ice/Middleware/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Middleware/slice/Greeter.ice -------------------------------------------------------------------------------- /swift/Ice/Optional/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Optional/Package.swift -------------------------------------------------------------------------------- /swift/Ice/Optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/Ice/Optional/README.md -------------------------------------------------------------------------------- /swift/IceDiscovery/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceDiscovery/Greeter/README.md -------------------------------------------------------------------------------- /swift/IceGrid/Greeter/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Greeter/Package.swift -------------------------------------------------------------------------------- /swift/IceGrid/Greeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Greeter/README.md -------------------------------------------------------------------------------- /swift/IceGrid/Greeter/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Greeter/admin.conf -------------------------------------------------------------------------------- /swift/IceGrid/Greeter/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Greeter/greeter-hall.xml -------------------------------------------------------------------------------- /swift/IceGrid/Greeter/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Greeter/node.conf -------------------------------------------------------------------------------- /swift/IceGrid/Greeter/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Greeter/registry.conf -------------------------------------------------------------------------------- /swift/IceGrid/Greeter/slice/Greeter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Greeter/slice/Greeter.ice -------------------------------------------------------------------------------- /swift/IceGrid/Query/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Query/Package.swift -------------------------------------------------------------------------------- /swift/IceGrid/Query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Query/README.md -------------------------------------------------------------------------------- /swift/IceGrid/Query/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Query/admin.conf -------------------------------------------------------------------------------- /swift/IceGrid/Query/greeter-hall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Query/greeter-hall.xml -------------------------------------------------------------------------------- /swift/IceGrid/Query/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Query/node.conf -------------------------------------------------------------------------------- /swift/IceGrid/Query/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceGrid/Query/registry.conf -------------------------------------------------------------------------------- /swift/IceStorm/Weather/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceStorm/Weather/Package.swift -------------------------------------------------------------------------------- /swift/IceStorm/Weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceStorm/Weather/README.md -------------------------------------------------------------------------------- /swift/IceStorm/Weather/icestorm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/IceStorm/Weather/icestorm.conf -------------------------------------------------------------------------------- /swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/README.md -------------------------------------------------------------------------------- /swift/common/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/swift/common/Package.swift -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroc-ice/ice-demos/HEAD/tox.ini --------------------------------------------------------------------------------