instancecontextmode

WCF InstanceContextMode

I have a web application uses a proxy to invoke an operation on a WCF Service that returns data from an AS400, like the different Sales Regions associated with our companies, the different stores we have out in the field, etc. These Sales regions and Stores don't change often, stores are only added maybe twice a year and regions have bee...

Returning database view data using wcf service and binding results in WPF

Hello, Here's what I want to achieve: Have a wpf system tray application or a vista gadget that will show me live data from a database view. I need to use a WCF service to retrieve the data. The data in the underlying tables will be changing frequently but I can do without upto the second updates in the client (if I have to). How do y...

How many instances exists when a InstanceContextMode.Single WCF service exposes multiple endpoints?

Does the ServiceBehavior setting InstanceContextMode.Single sets a single instance regardless of the number of endpoints? ...