locka99

Results 54 comments of locka99
trafficstars

I looked at ReferenceDescription and the generated decoder and it looks correct to the schema - there is nothing to say strings are optional or whatever. If a string is...

A workaround is to put a periodic call to read a known value value in the server just to keep the connection alive. It should probably do this internally.

The keepalive would be to renew the secure channel before it expires, but the easiest way from the client code side is a benign read operation, e.g. to get a...

I actually have a spawn_session_activity_task() that does a read on an interval for this purpose but maybe it isn't firing.

thanks for your patience sorry I was working on another branch - this is merged now

Yes it's low priority. There are tools to generate nodesets from a schema that you can manually invoke and compile. I suppose it could be put into a build script...

I'll close this since the opcua lib has been refactored into a single crate, so any remaining duplicates are through dependencies I pull in and out of my control.

I just did an analysis of my uses of OpenSSL in my [opcua](https://github.com/locka99/opcua/blob/master/docs/crypto.md) project to see what it would take to move away. One of the lacking features would be...

An immutable vec! would be similar to a heap allocated array. My point in the comment was to illustrate arrays normally go onto the stack but can be made to...

Hi I haven't added much to my book recently but in response to your email I've added some additional sections about multi-threading and Rust. It's not done yet but I...