We currently support several WCF services running in a load balanced environment.In the past, we have used wsHttpBinding and set establishSecurityContext to false to allow the service to work properly
I\'ve written created a WCF service inside a Windows service, and for some reason I can\'t figure out, I deployed the service on a bunch of systems(all nearly identical in OS and configuration), and i
I\'m starting to experiment with using ActiveMQ (in conjunction with the ActiveMQ.NMS bindings) to support some cross platform RPC messaging that we\'re looking at doing.
I have a project whereby I have a WCF service that I basically want invoked whenever a file is dropped in a certain directory. I\'ve got the basic custom transport channel logic that I saw published o
I am trying to host my service using following configuration. <system.serviceModel> <services>
I\'m trying to use WCF named pipes in a web site, and it\'s failing with errors: There was no endpoint listening at net.pipe://localhost/mypipename
I am hosting a WCF Service as a Windows Service. A snapshot below. myHost = new ServiceHost(typeof(AnalyticsService开发者_StackOverflow));
In my old asmx web servicesI used to have AuthHeader which contains the UserName & password and the AuthHeader is mandatory for every web method request. User will send his username & passwor
I have a service that exposes multiple endpoints. One beeing wsHttp and the other Net.Tcp. Is there any way I can know which one the clients used to make the call inside the service method ?
How to define the LocalEndPoint to use by a WCF client when calling a WCF service (if the client machine has multiple IP addresses) ?