Tagged Questions

1
vote
2answers
84 views

Create a Windows (win32) service discoverable across the network

In short: How to reliably discover a server running somewhere on a (presumably multi-segmented) local area network with zero client configuration My client application has to loca …
0
votes
1answer
54 views

PHP implementation of IdP discovery based OpenID?

Google have a very nice user friendly federated OpenID login with automagic endpoint discovery: http://www.puffypoodles.com/lso2 This is implemented in Java Servlets, is there …
0
votes
0answers
24 views

Fix non-standard web serverice port on contractRef and docRef

My problem is closely related to this one: http://stackoverflow.com/questions/640641/how-can-i-use-net-web-services-from-non-standard-ports. My web service runs behind a port-forw …
1
vote
2answers
149 views

Bluetooth UUID discovery

Does anyone know how a bluetooth device could pick up the discoverable devices' device IDs in range? I am ideally looking for the simplest solution that involves the smallest imp …
1
vote
1answer
161 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, p …
3
votes
3answers
3k 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 …
1
vote
2answers
88 views

Flexible, Solid and Portable Service Discovery

I am looking for a way for clients in a LAN to find all the instances of my server application without any configuration. Instead of hacking something myself, I'd like to use an ex …
1
vote
2answers
144 views

What’s the best way to locate devices on a network?

I'm building software for a company that sells hardware devices. They want the software to be able to locate all devices on the network without restricting either of their IPs. Wh …
5
votes
3answers
442 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 conne …