How to publish a service through a specific message type?

I have a RO remoting server, and I want to limit certain published services ONLY accessible through a
encrypted Binary message.

Is that doable?

Hello

Services are exposed via all interfaces (server channels and messages) exposed by the server.

however you can implement one of the interfaces in your service: IROObjectActivation, IRODispatchNotifier. Both of them provide access to the message instance used to invoke the service instance, so it is possible to check message settings and to interrupt service method execution if needed.

Regards

1 Like