wcf - How to log messages to Azure servicebus queue & read from the it using nlog? -


how can log messages azure service bus queue , read messages in application.

here have guide how use queues in .net.

focus on "how send messages queue" , "how receive messages queue".

the main idea of create queueclient object using connection string, create brokeredmessage , send queue.

for receiving message, believe have service (lets worker role example) peeking messages queue. there need create client , add callback handle received messages. when receive message can log using nlog.


Comments