I have setup a publisher/subscriber and wanted to send the received message to audit queue. Here my app.config extract
<MsmqTransportConfig
InputQueue="MyPublisherInputQueue"
ErrorQueue="error"
NumberOfWorkerThreads="1"
MaxRetries="5"
/>
<UnicastBusConfig
DistributorControlAddress=""
DistributorDataAddress=""
ForwardReceivedMessagesTo="AuditQueue">
<MessageEndpointMappings>
</MessageEndpointMappings>
</UnicastBusConfig>
but my messages are not pushed to the audit queue my endpointconfig is like that, with both subscriber and publisher interface reference
public class EndpointConfig : IConfigureThisEndpoint, AsA_Server, AsA_Publisher
{
}
any help will be welcomed.