Custom message to external application

Hi everyone,

I have a MIP plugin that need to send some custom commands to an external application. On the application I use _messageCommunication.RegisterCommunicationFilter(TriggerReceiver, new CommunicationIdFilter(“MyCustomCommand”)); in order to receive command. On MIP plugin I use TrasmitMessage to send command. If I trasmit the custom command, it is not received by the application. It seems only some kind of messages can be received from the application (MessageId.Server.NewEventIndication, MessageId.Server.ConfigurationChangedIndication, …). There is a way to implement custom message from plugin to application?

Thank you

There is a security restriction that commands will not be tranmitted across from one application to another they will only work internally in the application. You will have to rename “MyCustomCommand” to “MyCustomMessage” or something where you avoid the string “Command” being part of the name.