English 中文(简体)
如何每次只接受1名客户
原标题:how to let wcf service to accept only 1 client each time
  • 时间:2012-05-10 10:24:18
  •  标签:
  • c#
  • wcf

I have a question about WCF service which give the client the ability to mess up with Computer files (copy/paste/delete...etc).
service should accept only 1 client at a time, it shouldn t accept a client while another client is already connected, so what configuration does this job? I m using NetTcpBinding.

最佳回答

你们应当这样做:

问题回答

你们不需要做任何事情,因为违约服务行为就是在某个时候执行一项呼吁。 如果A正在援引X方法,而B也想援引X方法,那么B请求在完成申请之前就获得了接受。

但是,如果你想到,即便在方法执行之后,任何人都无法利用这些方法,那么你就不得不利用会议自行处理。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签