ROSDK server and client plugins loaded in the same Hydra host

Hello,

I’d need to load in the same Hydra host a plugin that implements a ROservice and another one implementing a client of the same local hosted service. For this purpose I’d need to use the same _Intf,pas Delphi unit in both plugins.

This seems impossible because RegisterROClass method raises the “already registered class” exception.

Are there suggestions to correctly implement what I need?

Thank you,

Giovanni

you can put shared code (i.e. _Intf) into separated package (*.bpl) that should be used by both your plugins

Ok, I’ll try it again.
Many thanks, Evgeny.