Messaging between plugin and component application.

Hi,

I’m trying to have my plugin communicate with a component application. I’ve been using code from the chat sample but the messages I receive on either end are null. It only seems to work between plugins and between components.

Thank you

The problem is most likely due to the deserialization seeing the class on the sending side as being different from the one on the receiving side. Either you should build a shared dll containing the class to be passed on in the Data field or you should yourself serialize and deserialize the data to/from a string.