Tagged Questions

9
votes
3answers
477 views

WCF Discovery returns hard-coded URL

The grand design is the following: There is certain application that gets installed as a Windows Service There may be several of these on the network Each of them exposes some interface to the ...
6
votes
2answers
16k views

Expose a WCF Service through a Named Pipes binding

Intro: I successfully implemented a WCF Service hosted in a Windows Service a few days ago. The community here at StackOverflow helped me with the WSDL exposure here. I thank you once again. However ...
3
votes
1answer
178 views

“Re-announcing” service periodically when using WCF ServiceDiscoveryBehavior announcement endpoint?

I have a Managed Discovery Service hosted with a known URI. I have a discoverable service that when it starts, it announces itself using an AnnouncementEndpoint added to the ServiceDiscoveryBehavior ...
2
votes
2answers
418 views

WCF Discovery simply doesn't work

I'm trying to add ad-hoc discovery to a simple WCF service-client setup (currently implemented by self hosting in a console app). Debugging using VS2010 on windows 7, and doing whatever I can find in ...
2
votes
2answers
262 views

WCF with discovery fails with socket not valid in its context on XP?

I'm trying to use WCF's discovery mechanism in .NET 4.0. It works on Windows 7 but fails on an XP machine with a socket exception saying that "the requested address is not valid in its context" (the ...
2
votes
2answers
477 views

How to enable WCF Service Discovery when using file-less activation?

G'day guys, How do I go about enabling service discovering when using WCF's file-less service activation? With this approach it doesn't seem possible to specify explicit endpoint types or a ...
2
votes
2answers
878 views

WCF Discovery finds endpoint but host is “localhost”

I am trying to use the Discovery feature in WCF using http://msdn.microsoft.com/en-us/library/dd456783(v=VS.100).aspx as a starting point. It works fine on my machine, but then I wanted to run the ...
1
vote
1answer
333 views

WCF Service Discovery Scope

Scenario: I have several services that I want to be discovered by different clients. Executing the discovery is working perfectly. But now I have different versions of those services for different ...
1
vote
1answer
137 views

How to limit the discoverability of a WCF service to certain addresses?

I have a desktop app that connects to a WCF service and uses WCF 4.0 discovery. My code to make the service discoverable looks like this: public static void MakeServiceHostDiscoverable(ServiceHost ...
1
vote
3answers
443 views

WCF discovery finds the endpoint but the address is localhost

I have a wcf discoverable service called "GetNameService" which is hosted on a PC @ 10.0.0.5:8732. It is hosted with wsHttpBinding and is discoverable thru' UdpEndpoint. I also have a client @ ...
1
vote
1answer
251 views

WCF DiscoveryClient returns references to localhost from remote machines

I have an app with a self-hosted WCF service. My WCF service gets published under the URI "net.tcp://localhost:8004/DocumentService". When I run the service on a remote machine and try to discover ...
0
votes
0answers
48 views

Check whether known discoverable services are still running

I implemented my own DiscoveryProxy service. Services announce them self when going online/offline. Now, i want to be able to restart the DiscoveryService without restarting the services. So, my ...
0
votes
1answer
94 views

calling WCF client function doesn't work on IIS

I made a service using the WCF discovery. Everything works fine when it is deployed on a specific port (using VS2010 debug), but when I try to deploy it to IIS it finds the service but can't run any ...
0
votes
0answers
171 views

WCF Discovery - problem with finding a service

I need to write a server that listen to all kind of web services that got WS-Discovery. I manage to do it when i write the client as a serviceHost and add the UDP, the endpoint and the binding through ...
0
votes
1answer
219 views

Adding scopes to the announcement endpoint

I'm currently implementing a service that uses WCF discovery and provides Discovery Endpoint and Announcement Endpoint. I also need to use scopes in order to filter announced/discovered endpoints on ...
0
votes
0answers
209 views

How to Use Service Name and Namespace in WCF Service Discovery

The following is a snippet of a service contract generated from Web Service Factory: using WCF = global::System.ServiceModel; namespace XXX.YYY.ServiceContracts { /// <summary> /// Service ...