Bernard Normier
Bernard Normier
Then users can do pkg-config --libs zeroc-ice, pkg-config --variable=slicedir zeroc-ice, and more. To limit the number of pc files, this would require linking with `-Wl,-as-needed`; otherwise, all libraries get written...
As of Ice 3.7, we use the "Event Logging" API to log messages from Ice Services. This API was superseded by the Windows Event Log API as of Windows Vista....
The following marshaling exceptions are thrown by the run time, but never caught: - ProxyUnmarshalException - StringConversionException - EncapsulationException I don't see any conceivable reason for why an application would...
As of Ice 3.7, it's not possible to marshal or unmarshal an `Ice::Value` by value in C++, it can only be done for heap allocated value held by a `shared_ptr`....
It should support IceDiscovery like other graphical demo client.
The Java demos currently show Client and Server classes in the same directory, in the default package. Because of that, we create client.jar and server.jar that contain the same classes:...
We could provide one (or several) more advanced AMI demo in language mappings with AMI support. For example: - client is sending lots of async-oneway requests to a server, such...
This PR refactors the visitors used by slice2cpp. It doesn't change the generated code except for: - some minor reordering - we no longer generate forward declarations for server-side interfaces...
This PR restores a `catch (exception_ptr)` from OutgoingAsync, that I removed by mistake in a previous PR. You can see the original code here: https://github.com/zeroc-ice/ice/blob/900b4bc98e271fe7cfd32978ab74d84454d85c03/cpp/src/Ice/OutgoingAsync.cpp#L219 I removed this code because...
Since we're changing the C++ mapping for Slice byte: should it be to std::byte, and not uint8_t?