Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
6k views

WCF: What is a ServiceHost?

As I'm currently learning to use WCF Services, I am constantly encountering tutorials on the internet which mention using a ServiceHost when using a WCF Service. What exactly is this ServiceHost ? ...
5
votes
2answers
195 views

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 ...
5
votes
3answers
746 views

How to host WCF service and TCP server on same socket?

Tooday I use ServiceHost for self hosting WCF cervices. I want to host near to my WCF services my own TCP programm for direct sockets operations (like lien to some sort of broadcasting TCP stream) ...
3
votes
2answers
100 views

Console hosted WCF service does not Trace

I have written a simple service contract (IServiceObject) and then implemented it (ServiceObject). I host it in a ServiceHost object that is contained within a console application. Within one of my ...
3
votes
1answer
549 views

WCF - Closing a duplex ServiceHost blocks for CloseTimeout duration if closed when client(s) connected

I have a Windows Service that hosts three different duplex WCF channels. Clients can connect to have updates sent to them via their callback contract. Essentially there are three pub-sub channels. ...
3
votes
1answer
2k views

WCF Service - runtime not seeing the ServiceContract on Interface

I'm new to WCF and trying to get my first service running. I'm close but stuck on this problem. In my interface definition file, I have this: ...
3
votes
3answers
2k views

WCF ServiceHost basicHttpBinding 503 error

I'm trying to run a WCF ServiceHost as an NT Service on a Windows 2007 SP1 Server. The ServiceHost is reponsible for hosting a single service endpoint: a basicHttpBinding with the following address: ...
2
votes
2answers
61 views

WCF Multiple channels for one serivce instance

This is my code for server application: [ServiceContract] public interface IFirst { [OperationContract] void First(); } [ServiceContract] public interface ISecond { [OperationContract] ...
2
votes
1answer
91 views

What is the proper way to Host dozens of WCF Services in a single Windows Service?

I've been tasked with moving over dozens of WCF Services to a single Windows Service. I've created a Windows Service using the Windows Service template and added the the following code to ...
2
votes
2answers
202 views

NServiceBus and wcf ServiceHost

I have a wcf ServiceHost which has to publish a message to the IBus. How do I gracefully gain access to the IBus from the host class (which is instatiated by wcf)?
2
votes
1answer
132 views

WCF service: app.config versus attributes or a mixture of both

In a WCF application we have a servicecontract with attributes: namespace We.Work { [ServiceContract(Namespace = "We", Name = "IWork", SessionMode = SessionMode.NotAllowed)] public ...
2
votes
1answer
208 views

WCF: How to stop myServiceHost.Close() from disposing of myServiceHost object?

Apparently Close and Dispose are effectively the same. I want to be able to Close and Open my ServiceHost instance without having to reinstantiate it everytime. Any ideas? Thanks.
2
votes
1answer
139 views

ServiceHost Efficiency

Hoping you could help me please.. 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 ServiceHost in my ...
2
votes
2answers
495 views

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 each worker ...
2
votes
1answer
894 views

What are the benefits for several servicehosts? Does one ServiceHost support several simultaneous connections on one endpoint?

I'm thinking of self-hosting my WCF service instead of using IIS. A big question for me is whether I need to instantiate multiple servicehosts as IIS does or one wil be enough. Do muptiple ...
2
votes
1answer
204 views

Can AppDomainSetup.ConfigurationFile be loaded from database?

I'm working on a WCF host by using ServiceHost and dynamically creating several application domains to keep my services up. I'm also planning to keep my assemblies on database and load them by using ...
2
votes
3answers
628 views

Creating a WCF ServiceHost object takes three to four minutes on some PCs

I have created a WCF service which does not use the app.config to configure itself. However, it takes three to four minutes on some PCs to construct the ServiceHost object. Thinking there was ...
2
votes
1answer
926 views

Win32Exception @ ServiceHost.Open() for WCF service

I am working on writing BDD specifications for a broad set of WCF service infrastructure I am writing. I have noticed that each specification I write that involves a call to ServiceHost.Open(), that ...
2
votes
2answers
2k views

Can two applications share same WCF NetTcpBinding port if they use different end point addresses?

I have a Client and Server scenario, where a service is installed on the client and another service on the server. I have no issues when these are installed on different machines. However, I would ...
2
votes
3answers
3k views

How does one set up a WCF ServiceHost within a Windows Service that can access stateful information within the Windows Service

I have a written a Windows Service in C#. It is functioning and performing well. I have added a WCF service to the Windows service to enable client applications to connect to the Windows service and ...
2
votes
0answers
1k views

WCF: Duplex Callback always Anonymous

I've written a WCF duplex service and client. Everything works well until I try to call .Demand() in the client implementation. It appears that the the service invokes the callback method ...
1
vote
2answers
60 views

Programatically discover a ServiceHost's Service Type

G'day, I've tried searching MSDN and here, but I don't think I can do this: Given a reference to a ServiceHost, is it possible to discover the type of the host it is executing? Something like ...
1
vote
1answer
289 views

Can I call a method in a Self-Hosted WCF Service locally?

I have a WCF Service contract which is basically the Publish Subscriber pattern. The WCF Service is hosted inside the Windows Service that I want to publish from. The Clients subscribe to messages ...
1
vote
2answers
319 views

How can I bypass Operation Contract limitation of a WCF Service when calling “Update Service Reference” in VS 2008

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. ...
1
vote
3answers
1k views

WCF slow ServiceHost.Open() call

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 ...
1
vote
1answer
1k views

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 service is ...
1
vote
1answer
280 views

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. When I run the exe with the same ...
1
vote
2answers
647 views

Servicehost throwing an error, even though added to configuration with netsh

ServiceHost.Open() is throwing this error: HTTP could not register URL http://+:8001/. Your process does not have access rights to this namespace (see ...
1
vote
1answer
357 views

Route WCF ServiceHost to another computer

GoodDay, I'm not a guru when it comes to WCF, but i do know the basics. My question is, how do i create a ServiceHost on machine X, while the code is on machine Y? if i build and run this code on ...
1
vote
1answer
1k views

Self hosted WCF ServiceHost/WebServiceHost Concurrency/Peformance Design Options (.NET 3.5)

So I'll be providing a few functions via a self hosted (in a WindowsService) WebServiceHost (not sure how to process HTTP GET/POST with ServiceHost), one of which may be called a large amount of the ...
1
vote
3answers
185 views

Is this a correct way to host a WCF service?

For some testing code, I'd like to be able to host a WCF service in only a few lines. I figured I'd write a simple hosting class: public class WcfHost<Implementation, Contract> : IDisposable ...
1
vote
1answer
106 views

Joining threads in a WCF hosted service

Can anyone recommend a "clean" way of closing a WCF service and its threads when hosted in a servicehost object? Calling servicehost.Close(); doesn't work when the service has spawned other threads ...
1
vote
2answers
711 views

ServiceHost's conflict on address when unit tested

I have a small WCF hosting engine that I am writing that will dynamically create ServiceHosts based on the .config file. The general idea is to allow us to remove existing services, as well as add new ...
1
vote
3answers
3k views

WCF:: ServiceHost & AddServiceEndpoint: Are Arguments types reversed?

While I am trying to learn WCF, and it seems straight-forward enough, I came through an odd situation...at least it seems odd to me. Why is it that the ServiceHost ctor takes a concrete class, and ...
0
votes
1answer
94 views

WCF: HTTP 400 Bad Request on self hosted service

I have this interface: [ServiceContract] public interface ILocationService { [OperationContract] bool RegisterForNotification(string name, string uri); ...
0
votes
1answer
43 views

WCF Launching host error

I want to launch the following WCF service: <system.serviceModel> <services> <service name="MTPlatform"> <endpoint address="TradingService" ...
0
votes
4answers
75 views

Self host WCF ServiceHost object lifetime

To kick off my WCF service, I use the following: selfHost = new ServiceHost(typeof(MyServiceClass)); selfHost.Open(); At some point this will create an instance of MyServiceClass. Will it create a ...
0
votes
1answer
75 views

wcf duplex service freezes on callback call

Service contract: [ServiceContract(CallbackContract = typeof(IClientCallBackChannel), SessionMode = SessionMode.Required)] public interface IServerService { [OperationContract(IsOneWay = ...
0
votes
1answer
71 views

Retrieving data received by the server using WCF Web Services

I'd like to use a web service (created in my main thanks to new ServiceHost(typeof(..)) ) and I would like to retrieve data received by my server to process it in my main. I've begun with a simple ...
0
votes
2answers
34 views

WCF inter server code does not trigger TCP timeouts and Faults

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 ...
0
votes
1answer
106 views

WCF constructor Service Type via DI

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 ...
0
votes
2answers
128 views

NetNamedPipeBinding: parameter in pipe method is empty

I have a ServiceHost listening on a NetNamedPipeBinding endpoint. I have a service contract class with a single method which is being called by the client and handled by the server. The method ...
0
votes
1answer
372 views

A registration already exists for URI after stop/start

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 ...
0
votes
1answer
244 views

WCF local machine ServiceHost and Administrator Privileges

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'm working on aplication which in future will be ...
0
votes
2answers
412 views

WCF Service host closing is blocked by open sessions and setting receiveTimeout doesn't help

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 had ...
0
votes
1answer
266 views

Capture global WCF ServiceHost request events

I'm using a really simple WCF project which is being hosted by a WPF application. It basically operates as a REST server for dishing up data on my PC. No IIS, and it runs as SingleInstance. I want to ...
0
votes
2answers
403 views

Problem with type of service in ServiceHost directive in wcf service

I am developing a simple wcf service for test. When I test this service with my local IIS 7.5, then it works properly. But when I host it in web IIS, I receive this error: The type ...
0
votes
1answer
336 views

Self-hosted NetTcp service timeout error

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 ...
0
votes
1answer
131 views

Serving up WCF Services in MVC

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. I've also seen ...
0
votes
1answer
122 views

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 ...

1 2