I\'d like to use a web service (created in my main thanks to new ServiceHost(typeof(..)) ) and I would like to r开发者_StackOverflowetrieve data received by my server to process it in my main.
I\'ve tried to make an inter-server communication protocol with WCF. But for some reason, when a server disconnects, the Faulted neither the Closed events are called. This is really annoying but I hav
I\'m currently trying to build a small App-Server which shall host multiple WCF services. These services (and their dependencies of course) should be instantiated by an DI/IoC Container (currently Lig
I am currently working on an application where I am creating a ServiceHost, then getting rid of it, then recreating it later. The problem is that once I get rid of the service host when I try to recre
Is there way to run self host a WCF service with ServiceHost on local user (no administrator privileges)? It needs only to be on the local computer.
I need my WAS hosted service (PerCall, Concurrency.Multiple) to shutdown/recycle gracefully but any inactive (but open) client proxies will block the service from shuttingdown gracefully.
I am having trouble with a single Wcf Service that we have in an application.It has about 150 [OperactionContract] within it.I can now no longer Update Service Reference within Visual Studio 2008.
I have a windows service which houses a WCF NetTcp host. From the client, when I start making calls to the service via tcp, they go through fine at first but then after a few minutes they all start to
This is a similar question as this one: Win32Exception @ ServiceHost.Open() for WCF service. I have a machine that is very slow on the ServiceHost.Open call below. It consistently takes 7 seconds or
I\'m wondering if it\'s possible to service up WCF services via MVC.I\'ve seen a few posts about this as it relates to RESTful services, but I\'m not looking to create a RESTful service.