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
5
votes
1 answer

How to use a struct defined in a Thrift file using keyword "include"

I'm a newbie with Thrift. I have the following question: Suppose that I defined a struct in file "Ex1.thrift" as follow: namespace java tut1 struct Address { 1:string nameStreet, 2:i32 idHouse } I want to use struct Address in file "Ex2.thrift",…
zungnv
  • 257
  • 3
  • 11
5
votes
1 answer

Eventing in Liferay Portlets

In any portlet application, if the same page containing a portlet is opened in two browser tabs, how is the event in the first page distinguished from the second page? I want to assign a unique Id for each event, store it and append it to the URL so…
Ravi
  • 2,472
  • 3
  • 20
  • 26
5
votes
2 answers

Communicating between SERVICE and web/desktop application

Whats the recommended way to communicate between a service and a desktop app or webpage ? I want the service to do all the work, but admin/management/reporting to be possible via web or desktop. (It will be written in C# with .Net 4.0) Is it named…
user296191
  • 405
  • 5
  • 19
5
votes
0 answers

Samba communication using a port different than 445

Due to several circumstances, I need to configure my windows client to be able to receive through another port than 445 or 139 with Samba communication. The idea is to avoid as much as possible having to install any additional program in windows 10,…
Esther
  • 51
  • 2
5
votes
2 answers

Which Client - Server Communication Approach?

Basically I need a bidirectional client-server communication (Java) where the client calls methods on the server, but also needs to get "callbacks" if certain events in the server occur. The methods theirselves have quite complex input and output…
WorstCase
  • 325
  • 4
  • 13
5
votes
5 answers

Where is a good place to start with making an application in .NET that communicates through OPC?

Where is a good place to start with making an application in .NET that communicates through OPC?
GEOCHET
  • 21,119
  • 15
  • 74
  • 98
5
votes
1 answer

What is the best practice to communicate between a Rust program and an embedded WebAssembly runtime?

I'm working on a Rust program that I want to, at runtime, use WebAssembly as a scripting language to drive its behavior. We'll assume the scripts are also written in Rust. I've read the tutorials for Wasmer, Wasmtime and Lucet, and while…
oreganoli
  • 101
  • 7
5
votes
1 answer

Java UDP communication applet to UDP Server

I've been working on different ways to do this for 2 full coding days, i need some help: I want to create a multiplayer game in java online. To do this i need communication between the server and the applet I was under the impression that as long as…
user761996
  • 83
  • 1
  • 8
5
votes
8 answers

How to break bad news to high-ups in other non-IS departments?

Recently we added a couple web service machines, and they couldn't successfully email out. We (IS) did not notice this, and the exceptions were being swallowed up and logged, but no-one noticed for about a month. Needless to say, many purchase…
Dano
  • 677
  • 2
  • 17
  • 30
5
votes
1 answer

Push data from device to device?

Is it possible to push data directly from one device to another over the mobile network without using a server and without wifi or Bluetooth? (Both have the same app installed.) How? :)
thomas.fogh
  • 369
  • 1
  • 4
  • 17
5
votes
1 answer

Is wait still necessary for non-blocking send with blocking receive

I knew if both sides are non-blocking send and receive, then a MPI_Wait or MPI_Test is required. But I wondered If we mix non-blocking send and blocking receive, do I still need to call MPI_Wait considering that blocking receive can ensure the…
Jennifer Q
  • 257
  • 3
  • 12
5
votes
1 answer

LoRa point-to-point limitations

I want to set up a point-to-point communication link between two Raspberry Pi using LoRa. I know for lorawan there is (at least in Europe, where I live) a duty cycle limitation so the nodes can transmit only for an average of 30 seconds uplink time…
clf maris
  • 51
  • 1
  • 3
5
votes
4 answers

Thread communication using SendMessage

my question is : how can I use SendMessage() to implement thread communication between two threads, one with a window (GUI) and the other with no window? The problem is that SendMessage() needs a handle (HWND)? Another detail about my project : Two…
Rivari
5
votes
0 answers

MySQL - Got an error writing communication packets

since I use my new dev server, I get this message at event log: Aborted connection 5 to db: 'database_name' user: 'user_name' host: 'localhost' (Got an error writing communication packets)For more information, see Help and Support Center at…
Hunt3rDe
  • 482
  • 1
  • 6
  • 9
5
votes
9 answers

Quick and dirty solution for communication between processes in different machines

I have two processes written in java in two machines within my network that should pass simple chunks of data to each other. I'm looking for a quick and dirty way (without resorting to writing files and polling for changes on network share files)
Dani
  • 4,267
  • 4
  • 29
  • 37