i have implemented a fairly simple wcf service which handles the file transfers from my clients to the server the problem is when a client sends a file request. all of the bandwidth is allocated to that single client and others have to wait until the requested file transfer is completed. So my question is how to make the service more efficient and let the users share the bandwidth
[ServiceBehavior(IncludeExceptionDetailInFaults = true, InstanceContextMode =InstanceContextMode.PerCall,
ConcurrencyMode=ConcurrencyMode.Multiple)]
我把ContextMode归PerCall,但那是 t的。
UPDATE : This Project is similar to mine http://www.codeproject.com/Articles/33825/WCF-TCP-based-File-Server