c# - WCF MSMQ order of handling requests -
i have wcf msmq service 2 method. methoda , methodb. client calls first methoda , methodb. both transactional.
my first question is, when happens, , b processed after eachother? then, when server process downwards processed in same order called?
if not default behaviour, there way enforce this?
you need check instancecontextmode , concurrencymode properties of servicebehavior.
my guess want set concurrencymode.single
, instancecontextmode.single
after service exist in 1 instance , other threads wait while thread executing service method.
but aware, slowest one...
c# wcf msmq
No comments:
Post a Comment