servicehost
Can I modify Endpoint after it is added to the servicehost?
I am trying to figure out how to get an handle on the endpoints of the service host and modify their identity. I have endpoints defined in the config file but want to modify the endpoints programmatic[详细]
2023-01-24 18:47 分类:问答Getting "The Security Support Provider Interface (SSPI) negotiation failed" when using a ServiceHostFactory
I recently started using a开发者_运维问答 custom ServiceHostFactory because I want to use dependency injection with WCF.Both my client and service are being run from VS2010 on my local machine and the[详细]
2023-01-13 18:48 分类:问答ServiceHost Efficiency
Hoping you could help me pl开发者_开发问答ease.. I am using WCF in my program.Part of this includes using ServiceHost in a self-service type scenario using a netNamedTypeBinding.When I include Servic[详细]
2023-01-11 14:41 分类:问答WCF listen base address anyip
i want my servicehost to have the base address of any IP so i tried this new ServiceHost(typeof(LoggingController),new Uri(\"0.0.0.0\"));[详细]
2023-01-10 12:46 分类:问答Accessing ServiceHost in WCF from another Servicehost C#
I have 2 contracts hosted in two servicehosts i need to have a singleton object in the first contract so when the other servicehost try to create an object from that class it just retrieve the same ob[详细]
2023-01-09 09:47 分类:问答What makes WCF ServiceHost crash?
I have a Windows Service that exposes the same interface on 4 ports using WCF. The addresses are: net.tcp://localhost:1200/IContract[详细]
2023-01-07 01:11 分类:问答How to use IPC without being a local Admin?
I currently maintain an internal application in .Net.The application uses IPC to maintain one running session at a time; if another session attempt to open (Someone clicks the icon again, some opens u[详细]
2023-01-04 12:17 分类:问答ServiceHost Open Delay
Since updating my workstation with windows 7 ultimate (from XP), I experience a delay of about 40 seconds to after calling Open() on an instantiated ServiceHost.[详细]
2023-01-01 14:37 分类:问答WCF Web/ServiceHost - Singletons and initialisation
I have some Service class which is defined as InstanceContextMode.Single, and is well known in the hosting开发者_C百科 application. (The host creates an instance, and passes that to the WebServiceHost[详细]
2022-12-30 21:42 分类:问答WCF Service worker thread communicate with ServiceHost thread
I have a windows NT Service that opens a ServiceHost object.The service host context is per-session so for each client a开发者_如何转开发 new worker thread is created.What I am trying to do is have ea[详细]
2022-12-23 01:07 分类:问答