Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a complicated app, so for the purpose of getting the information I need, I'll create a simple example of what I'm looking for...

I just need to send a simple message to All computers on the same LAN, not Pre-Specified IP addresses, as the app wont know how many pc are running this software...

The same application on all computers...

Example Implementation... One windows form with a button... (Not web based) Click the button... All computers on the network running the same app gets a message box saying "Hello..." Optional: If the code can be universal, so that an xcode app (ios/mac OS X) could join in, that would be great...

If someone can provide some example code or a link to a tutorial on how to to this, this will help me tremendously...

Thanks...

share|improve this question
What have you tried? Have you researched IP broad/multicast? – m.brindley Feb 26 at 21:06
How do you propose to not annoy users intensely when they are in the middle of typing something and your message interrupts them? – Andrew Morton Feb 26 at 22:14
As explained, the example is an example... A user of your reputation should not be making sarcastic remarks... – Dai Lafing Feb 27 at 15:03
Note that UDP broadcast is routinely blocked by routers, so you will probably be restricted to one LAN segment unless you want to tweak the routers. – Martin James Mar 7 at 19:27

3 Answers

If your app is web based you should take a look at SignalR

share|improve this answer
My app is not web based, please see original question... – Dai Lafing Feb 27 at 15:05

You can just use UDP broadcasting.

share|improve this answer
Great... Can you be a little more specific, shuch as provide an example or liks to some code...? – Dai Lafing Feb 27 at 15:05

MSDN has an example of using a UDP directed broadcast located here

http://msdn.microsoft.com/en-us/library/tst0kwb1%28v=vs.110%29.aspx

For the other platforms you will need to write the code for the receiver, but they all support UDP.

share|improve this answer
Great, I shall have a look at this, and let you know how I'm getting on... – Dai Lafing Feb 27 at 15:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.