Bernard Normier

Results 155 comments of Bernard Normier

My understanding is IceSSL remains a plugin in Ice 3.8, just like TCP is a plugin, UDP is a plugin etc. https://github.com/zeroc-ice/ice/blob/d6e44874ca8d6892f96a6b7b07fcba08b7bb47e2/cpp/include/Ice/RegisterPlugins.h#L48 So presumably `Ice.Plugin.IceSSL=1` should be valid, just like...

I have: ``` % ruby --version ruby 3.3.1 (2024-04-23 revision c56cd86388) [arm64-darwin23] ```

I reverted the work around in #3059.

I believe the following local exceptions can be thrown by application code: ### client-only mappings based on C++ (MATLAB, Ruby, PHP) None. That's because these language mappings don't allow the...

Most JavaScript demos are (or will be) non-interactive clients that execute quickly and don't need a Ctrl+C handler. We need to handle Ctrl+C in servers and long running clients, like...

We rely on the Ice.Default.Locator -derived instance name for the config files we ship, so we can't change this logic. https://github.com/zeroc-ice/ice/blob/main/cpp/config/icegridnode.cfg We should however fix the doc.

Added description for default in IceGrid.InstanceName.

In icerpc-csharp's implementation of the ice protocol, we do cancel outstanding invocations immediately when we receive a CloseConnection frame: https://github.com/icerpc/icerpc-csharp/blob/071848c40365c3fe204f4e1d7866c22e4300dc1a/src/IceRpc/Internal/IceProtocolConnection.cs#L1201 https://github.com/icerpc/icerpc-csharp/blob/071848c40365c3fe204f4e1d7866c22e4300dc1a/src/IceRpc/IceRpcError.cs#L27 You need the retry interceptor to retry automatically on...

The last failure is similar to #4472 (but java vs csharp), i.e. it's the client-side idle check that aborts the connection while the server-side is flow-controled. Back then, we didn't...