I posted this question before
post?
Reading began on wcf and msmq.
My first question: let's say I have 100 messages in the queue, how can I say that my service starts working on each message asynchronously, so that it works with several messages at the same time. is it even possible or is it always a synchronous operation?
Update: Say my system is such that I have remote locations / servers where files are also uploaded. All my processing takes place in a central place. Msmq and wcf will be used, in which all files from remote locations are copied to a central location. Messages can be submitted by the application that controls the database, and after it determines that the file should be copied, it transmits the message that the wcf service receives and copies the file from a remote to a central location.
Since this is a dedicated network, the file will be accessible through non-empty paths. I know that my clients will be inclined to do this at some point and try to determine if this is possible with a given file size and requirements for simultaneous copies of files.
I suggested BITS, but the client does not like BITS because of the policy with their IT department.
source
share