Subscribe without type?

Is it possible to subscribe on events without having the correct type? (The assembly that the type is defined in is not loaded in the microservice that want to subscribe on the type).

Or do I manually have to bind the exchange ({namespace}:{typename}) to the correct queue using the rabbitmq client?

Hi Jonas

The transport uses the following convention

This means you could redeclare the type locally in the same namespace. The problem is though that by default NServiceBus publishes the messages by setting the fully qualified assembly name. In order to be able to execute the handler, it would then be necessary to either publish without fully qualified assembly names like shown in the following sample

or in that endpoint of your Microservice replace the fully qualified assembly name in the incoming pipeline with the full name only.

Regards
Daniel