Tagged Questions
9
votes
3answers
483 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 ...
9
votes
4answers
2k views
What is the best way for a client app to find a server on a local network in C#?
The client connects to the server using GenuineChannels (we are considering switching to DotNetRemoting). What I mean by find is obtain the IP and port number of a server to connect to.
It seems ...
2
votes
2answers
431 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
881 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 ...
2
votes
1answer
986 views
Using DNS SRV records with C#
Is there a built in (to the .net framework) class or function to resolve a SRV entry to the corresponding records?
IE: _dmsc._tcp.network.local to an array of information (host, port, weight, ...
1
vote
3answers
444 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 @ ...
0
votes
0answers
49 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 ...