Logging/Monitoring
In the Business Operation, how do we get to know which source is currently sending primary request if there are multiple requests coming at the same time?
Comments
Where/when do you want to know it?
Usually you get this information looking at the trace of the session/message.
Or you need to know the sender from within your BO code/method?
Yes, @Esther Sanchez
I want to know the sender within my Business Operation method.
Within your BO method ..%RequestHeader.SourceConfigName contains the name of the "sender" Business Host.
Will it capture the current sender if there are multiple senders sending request at the same time?
It contains the sender of the current request message being processed by the BO.
Thanks @Enrico Parisi for the help.
It is working as expected.