Questions tagged [communication]

Communication is the activity of conveying information.

Communication (from Latin "communis", meaning to share) is the activity of conveying information through the exchange of thoughts, messages, or information, as by speech, visuals, signals, writing, or behavior.

Source: http://en.wikipedia.org/wiki/Communication

2464 questions
6
votes
1 answer

Vue.js - Parent <-> Slot Communication

I'm writing a small collection of Vue components to create a library to use in future projects, but I'm quite confused about this topic; maybe I need a completely different approach, but I don't know... I'm taking inspiration from (I think that's…
Liuka
  • 289
  • 2
  • 10
6
votes
3 answers

Bluetooth programming on Android

I am trying to create a app on android that uses bluetooth to communicate with my PC. I want to send text from android app and receive text/events from PC app. Can anyone guide me on how to make the two communicate? or guide me to some resource?
PrincessP
6
votes
2 answers

Is there a Java API that can binary communicate with a Microsoft WCF service?

I would like to be able to do binary communication between a WCF server and Java client. Is this possible? Are there any API's that can communicate with this Microsoft protocol?
sparkyspider
  • 13,195
  • 10
  • 89
  • 133
6
votes
7 answers

In .NET what's the best way for two processes in the same machine to communicate?

What's the best (or maybe not the best -- just good) way for two processes in the same machine to communicate, using .NET? Actually the two processes in the app I'm working on aren't even two different programs; they're just two instances of the…
cruizer
  • 6,103
  • 2
  • 27
  • 34
6
votes
3 answers

What is the normal way to send crash reports, product registrations, etc in C++?

What is the normal way to send crash reports, product registrations, etc? In other words, how do you guarantee your C++ Windows apps can 'call home'? I'm not a novice by any means but I'm completely lost in this area. I've never done it before so…
paladin12
6
votes
1 answer

Communicating multiple times with a subprocess

I'm trying to pipe input to a program opened as a subprocess in Python. Using communicate() does what I want, but it only does so once, then waits for the subprocess to terminate before allowing things to continue. Is there a method or module…
Sean
  • 613
  • 7
  • 18
6
votes
1 answer

Communication JQuery and C#

I'm trying to connect Chrome extension and my C# application. I'm using this code https://stackoverflow.com/a/13953481/3828636 Everything is almost working there in only one problem I can send message only 6 times and than my c# app doesn't recieve…
Icet
  • 678
  • 2
  • 13
  • 31
6
votes
2 answers

Interface between a DSP/Microcontroller and a PC application

I'm using a DSP to control a sensorless brushless DC motor, The DSP is on a board which has a parallel port and a jtag connection (it's an eZdspTMS320F2812). What would be the best way to communicate between a PC application and the DSP as it was…
6
votes
2 answers

Multiple serial values from arduino to processing?

I have a small problem. I am passing information from an arduino attached 3 axis accelerometer + 3 axis magnetometer + compass heading. These are scaled to midi ranges (0-127). ARDUINO: This is passed in a serial print with a format like…
6
votes
1 answer

Communication packet/frames diagram: documenting protocols

Can you suggest me a diagramming software where I can draw diagrams like this one (as much out-of-the-box as possible): These type of diagrams are usually used to document communication protocols so one can easily understand how packets/frames are…
rasgo
  • 1,381
  • 4
  • 15
  • 28
6
votes
2 answers

Communication between two JPanels

I have this "main" panel (let's call it AAA) with BorderLayout, and two panels (BBB and CCC) in it: public class AAA extends JPanel { BBB pnlNorth = new BBB(); CCC pnlCenter = new CCC(); public AAA(){ setLayout(new…
vtomic85
  • 590
  • 1
  • 11
  • 32
6
votes
2 answers

ColdFusion 10 Communications link failure to MySQL

We are migrating some websites onto a cloud infrastructure running Windows 2008 virtual machines. These websites all run on ColdFusion with MySQL databases. They currently are running in our CoLo with no problems. Additionally, they are running…
pmascari
  • 271
  • 2
  • 10
6
votes
1 answer

Communication between browser tabs

I've an HTML page (file main.html) opening a new tab in the same domain using JavaScript with the window.open("newtab.html") method. In the new tab users do something ending their activity clicking a button. At this point, I would like to send a…
Luca Rasconi
  • 1,085
  • 11
  • 30
6
votes
1 answer

MPI communication complexity

I'm studying the communication complexity of a parallel implementation of Quicksort in MPI and I've found something like this in a book: "A single process gathers p regular samples from each of the other p-1 processes. Since relatively few values…
dx_mrt
  • 707
  • 7
  • 13
6
votes
4 answers

Dart Isolates As Workers

Edited to make the question more clear. I am trying to work with Isolates (or Web Workers) in Dart. The only ways I can find to communicate between the main and isolate threads are send and call & then from the main thread. But that's a nice way for…
Pijusn
  • 11,025
  • 7
  • 57
  • 76