Questions tagged [broadcasting]

In telecommunication and information theory, broadcasting refers to a method of transferring a message to all recipients simultaneously. Broadcasting can be performed as a high level operation in a program, for example broadcasting Message Passing Interface, or it may be a low level networking operation, for example broadcasting on Ethernet. Please use the numpy-broadcasting tag for questions relating to numpy's array broadcasting behavior.

285 questions
0
votes
2 answers

Cannot bind Address already in use

This is my udp_broadcast server code where iam listening on 0.0.0.0 try{ socket = new DatagramSocket (7777,InetAddress.getByName("0.0.0.0")); socket.setBroadcast(true); while(true) { System.out.println(getClass().getName()+"ready…
Suuhas Reddy
  • 1
  • 1
  • 1
0
votes
1 answer

How to receive broadcasts from nodes with the same ip address?

I have a device that is made up of separate modules running embedded linux. The modules are all the same hardware and software but perform different tasks depending upon their location in the device. All the modules talk to each other over an…
rawbus
  • 27
  • 6
0
votes
1 answer

Broadcast Data with Android

I'm looking to develop an application that necessitates multiple devices sending and receiving messages. These messages need not be acknowledged (necessarily), they just need to be sent to all potential recipients in the area. Further complicating…
0
votes
1 answer

Broadcasting Objects to multiple clients

Currently I try to implement a Server/Client - Application and came up with a problem, I cant find a solution for. Im running a Server, which is waiting for Clients to login, adding them to a cachedThreadPool and starting a new Runnable for each…
Ben Win
  • 830
  • 8
  • 21
0
votes
1 answer

Broadcasting audio live for Android and Mac

Does anybody know how to broadcast live audio to a website so people can listen in Android devices and Apple? I know how to use SAM Broadcaster but they only have a Flash player which is not supported well in Android.
0
votes
0 answers

Video Streaming from phone to internet visitors, with a few seconds delay & review

I need to set up a web-based streaming video of an event. The unit taking the video would most likely be a smartphone (or possibly real video-camera somehow tied to a computer) What I need is A way to capture the video and compress and transmit…
700 Software
  • 85,281
  • 83
  • 234
  • 341
0
votes
1 answer

Broadcasting a UDP datagramPacket over LAN

I am a beginner in Network programming. And I am trying to build a peer to peer network application using UDP Datagramsocket in java. and I need to broadcast messages between the peers on different hosts (PCs running windows 7 connected to my local…
Wazani
  • 911
  • 1
  • 13
  • 28
0
votes
1 answer

How to broadcast a custom action in android

I am writing an application that uses the bluetooth capability. I would like to broadcast a custom string and then have devices that are listening, be able to receive that string and proceed with the program. I understand how to capture a…
0
votes
2 answers

Broadcasting in socket.io?

How to broadcast a message among all the connected clients in socket.io? I am using mrniko/netty-cosket.io server with with java (play/eclipse) on server side and socket.io.js 0.9 on client side. Both client & server working fine (i.e. sending and…
Omar Bahir
  • 1,237
  • 5
  • 20
  • 48
0
votes
2 answers

my error log - sharing its methods across controllers in AngularJS

This question is about half practical and half conceptual. I've looked at the responses to similar questions, but I'm pretty new to AngularJS, and I'm just not sure the best way (I've seen some varying opinions) to do this (for me, anyway), or…
thewatcheruatu
  • 242
  • 2
  • 9
0
votes
1 answer

Java Connecting 2 Computers with Server-Client System

I would like to ask a question about server-client applications using a ServerSocket in Java. It is going to be a long question, but if somebody can help me in this big homework of mine, I would really appreciate it. :) Some time ago, I wrote a…
Sahkulu
  • 1
  • 4
0
votes
2 answers

What is the most efficient way to stream values to clients in c#

I'm wondering how websites like http://www.eztrader.com/Trading.aspx stream prices to users. I know I could set an ajax call with a timeout to request the price from the server every 2 or 3 seconds, but is there a more efficient way of doing this?…
valen
  • 807
  • 1
  • 16
  • 43
0
votes
1 answer

Does iPhone support cell broadcasting?

Does iPhone suppots cell broadcasting if yes: How to enable it if no: is there any way to manually create some method or any predefined api through which we can be able to receive broadcasting messages by service prvider :)
0
votes
1 answer

JMF broadcasting ability?

I'm using JMF in making a live stream from a webcam at server to an applet. That when any client open the applet, he 'll be able to watch live stream from the webcam at the server. Till now, i'm just able to make a unicasting streaming at local…
Ali Zein
  • 113
  • 2
  • 9
0
votes
2 answers

How can I broadcast message among concurrent clients?

I have a number of concurrent clients - i.e. threads running and doing something concurrently. Each client implements a listener of some event bus. A message from that bus can arrive to one or more clients. My task is to broadcast that message to…
KutaBeach
  • 1,445
  • 21
  • 43
1 2 3
18
19