Gabriel Malkas

Results 7 comments of Gabriel Malkas

Hi, I would like to use `:zlib` to support `Content-Encoding: gzip` and `Content-Encoding: deflate`. I have a working implementation in Plug but as described in that PR (https://github.com/elixir-plug/plug/pull/888) it probably...

Hi @essen, thanks for the quick answer. The intent would be to have it everywhere I guess, pretty much like cowboy can parse multipart requests out-of-the-box. Just like `Content-Type` can...

Hi @antoinereyt, just wanted to let you know we managed to reduce our memory consumption while parsing ~10MB XML files by up to 800MB thanks to the `discard` option. We...

You can use `set_connection_status_callback` on `opcua_client::Session`: https://docs.rs/opcua-client/0.8.0/opcua_client/prelude/struct.Session.html#method.set_connection_status_callback Here is an example: ```rust use opcua_client::prelude::*; struct MyCallback {} impl OnConnectionStatusChange for MyCallback { fn on_connection_status_change(&mut self, connected: bool) { if connected...

Agreed, the solutions all seem "hacky", except maybe for the first one but that's a bigger change. I think it's good to have this issue documented though, because from a...

Thank you for taking a look. In my case, I am writing the client, it is the server certificate that is problematic due to the order of subject alternative names....

Hi, I've looked into this further and checked the official OPC Foundation reference implementation in C#. They do verify the application URI/URN and server domain name by looking at the...