Communication is the activity of conveying information.

learn more… | top users | synonyms

0
votes
0answers
78 views

PHP Unix Socket: close write (ouzput) stream but still receive answer from server

I want to query some data from a local unix socket. Therefore I have to connect, write some data and then close the write stream as the software will NOT send data until the write stream is closed. ...
0
votes
1answer
136 views

Phonegap to Phonegap comunication

I'm starting with Phonegap and jQuery Mobile, and I want to communicate between different Phonegap devices with a wifi connection. What is the best way to achieve this? I need a suggestion on what ...
0
votes
5answers
754 views

pass data from broadcast receiver to activity

I have a broadcast receiver which is listening to the WifiManager.SCAN_RESULTS_AVAILABLE_ACTION. In that receiver I filter all the available networks and return a list of networks with a specific ...
0
votes
0answers
84 views

how we can do communication of different players in games through bluetooth or wifi connection? [closed]

"Playing Ludo over the cross-plateform Phones via Bluetooth connection: Phase 1 It will be an android App. One of Phone will be acting as server. At the maximum of four people will be playing it over ...
0
votes
1answer
76 views

intents putString putData differences

What are the main differences between putString and putData when used with Intents to pass information from one activity to another. I often see the same two methods used in the same way in many of ...
0
votes
1answer
229 views

sending commands from Activity to Service in android

I have one activity class and a service with media player inside of it. The user selects the mp3 from the SD card that they want to play. I use Intent extra to send the path of that mp3 from the ...
0
votes
1answer
49 views

Distributed environment ideas

I need to find some real applications with below assumptions: We have several processes (either on the same machine, or distributed) that can communicate with each other A time unit has T seconds. ...
2
votes
1answer
334 views

Android Multiplayer Game with Socket Programming

I have been searching if it is possible to develop a multiplayer game with socket programming on android platform over WiFi but I couldn't come across with a certain answer. As I found out, there ...
4
votes
2answers
131 views

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 ...
1
vote
2answers
858 views

accessing textview within a fragment in activity

I wanted to use Fragments with in the ActionBar. Unfortunately it looks like its really complicated. My Fragments have Textviews and I want to be able to communicate with them out of my activity. ...
1
vote
1answer
319 views

Low-level communication on Android/other mobile platforms

Android has it's NDK to handle native code. I was just wondering how deep you can go with low level programming on this platform - whether you can for example control what the phone transmits through ...
0
votes
1answer
136 views

Communication between Main Function and States

I consider to build a game engine with the following design approach. The principal characteristic is to create so called systems, which cover game menus and game levels. These systems are provided ...
2
votes
1answer
695 views

Arduino Serial Communication not receiving entire message

I have a problem with the Arduino communication. It's quite hard to describe so I cant fit it in the title. Anyway here are the following: So I have this code for my receiving end: ...
0
votes
1answer
74 views

AS3 Class for reading GET vars

When communicating with server via GET to a php script, I need a feedback, usually in the format: status=OK&msg=No further actions&other=blablabla ... so I know that was a successfull request. ...
0
votes
2answers
894 views

Android and Arduino both receiving strange values via Bluetooth

I am using BluetoothChat code on the Android side to send an ON/OFF signal (I am sending 110, 119 or other cases as defined below) to the Arduino UNO using the chat box, but when I display the ...
1
vote
0answers
47 views

Communication between computation server and web server

I have: a machine (C) which is responsible for some computation (not publicly available), a machine (W) which is a publicly available web server, a machine (G) which is also publicly available and ...
0
votes
0answers
127 views

Assigning a Specific port to bluetooth detected device windows 7

I'm running into this problem : I'm able to connect and pair Bluetooth medical devices on a tablet. However, after a certain time, the pairing seems to be lost. I've installed bluetoothinstaller.com ...
0
votes
1answer
227 views

Client server multi-threaded application [closed]

I want to ask what is the best way to create a client server application .. The data that will be transferred from Server to client will be of a maximum of 15000 Bytes/Session (15 Kb) and the Client ...
1
vote
2answers
407 views

Simple Linux pipe program, data is not recieved

I have a simple Linux C program that I'm writing to help me better understand IPC, right now I'm trying to build it with pipes. I have a single code base that I run in two different terminal windows ...
0
votes
4answers
1k views

How to route an incoming call when I have multiple phone numbers with the same SIP provider?

I have a main phone number 0120120020 given by my SIP provider for my office. I've recently asked my SIP provider for a second phone number 0230230030 on the same SIP account. I want Asterisk to ring ...
0
votes
1answer
143 views

How can a notification widget get app's setting?

I am attemping to write a weather notification center widget which works the way like system's Yahoo weather widget: tap the widget, open my own weather app, select a city and the widget show the ...
2
votes
1answer
165 views

I have two ArrayLists in Processing, both of which I need to send to Arduino, and have the Arduino store them in its own arrays

I have the following sketch written in Processing, which scans an image, and stores the coordinates of each black pixel into two ArrayLists - xList, and yList. It currently then prints out the ...
2
votes
0answers
175 views

java networking slow on windows machine [closed]

I written some simple client server application - the server accept connection, the client send 100m data and then the connection closed. i have a dual boot machine, when the application running on ...
0
votes
0answers
39 views

Communication between modules based on XML messages

At work I was able to join the team that creates quite a large and complicated system. Before implementation, I would like to have my own thoughts and a little more understanding of the subject. ...
1
vote
0answers
200 views

Communicating with a hardware through RS485 Serial Cable

I have a smart electricity meter that connects to the pc through RS485 serial cable. This hardware has a software that you can read its internal registers and view them on the software. When I tried ...
0
votes
1answer
122 views

Two LPC1765 devices communicating through RS-485

I'm trying to implement a simple communication between two LPC1765 devices using RS-485. I'm using this example added to my menu system (it's a basic example for LPC17xx): ...
1
vote
3answers
319 views

Java communication between 2 applications

Considering application_A on a machine_1 needs information about machine_2, provided by application_B (which is located on machine_2) and that both machines are in the same network, what would you ...
3
votes
1answer
164 views

Detecting serial port settings

From time to time I suddenly have a need to connect to a device's console via its serial port. The problem is, I never remember what port settings (baud rate, data bits, stop bits, etc...) to use with ...
0
votes
3answers
392 views

How to communicate via Socket in Android 4.0.3

I already have a socket communication interface which works fine in 2.3 version, but It doesn't work on 4.0.3, I've heard that it's not possible to make this kind of communication in the same thread ...
0
votes
1answer
60 views

Server-to-Client: RMI and 2 JVM's (Distinct Computers)

I'm using RMI for a while now, and i would like to know: Is there a way that a RMI-SERVER can notify a RMI-CLIENT that his avaiable (online), passing his ip/port that should be used in ...
14
votes
1answer
1k views

Communication between Windows Store app and native desktop application

! For the sake of simplifying things I will refer to Windows Store applications (also known as Metro or Modern UI) as "app" and to common desktop applications as "application" ! I believe this is ...
2
votes
2answers
192 views

Communicating with class in a different process

I have class named worker, I want to create new instance of this class in a new process. But I want to be able to communicate with this class after it will be open in a new process and being able to ...
0
votes
2answers
109 views

Secured connection between processes in c#

I'm new to C# and also to Stackoverflow.com :) I have 2 Projects in my solution in VS2010, the first one is the Parent: Main Application built on C# WPF. and the other one is the Child: Built on C# ...
1
vote
3answers
250 views

PHP POST/GET request encrypted

I need to send sensitive data through a url like following. http://www.mydomain.com/handlingfile.php?username="abc"&password="pass"&BankAccount="0983479" What is the best way to encrypt the ...
1
vote
1answer
349 views

Communication between two WPF applications

I have two WPF applications, I need these two applications to be able to communicate with each other. I just need these applications to send some notifications to each other and nothing more. I have ...
11
votes
0answers
287 views

Serial Converter in Java [closed]

I'm searching for an industrial serial to USB converter. I want to use it within my JAVA application to communicate with various devices. Therefore the serial adapter has to provide a mode for RS232, ...
2
votes
3answers
560 views

Client Server Authentication

I am creating a client server communication based on Asynchronous Sockets, my client will send the username and password to the server then the server will replay whether the account is valid, so i ...
1
vote
1answer
166 views

Communication between web page and php script triggered from this web page

I have here an myAction function in some controller. And it has one class instance: public function myAction() { ... $myAnalyzer = new Analysis(); $myAnalyzer->analyze(); ... } ...
0
votes
0answers
137 views

Matlab binary offset carrier

I don’t know if I am asking in the correct place though, but please get into trouble to have a look at what I am asking. I am trying to implement a direct sequence spread spectrum scheme on MATLAB ...
4
votes
4answers
303 views

Handle communication in multi layer application

I am creating an application using Python. I first designed an API, that is working fine. I am now designing my GUI. The GUI starts a Thread that is used to perform tasks against the API. Up to ...
0
votes
0answers
78 views

Framing Manchester encoded bit sequence

Which technique is most appropriate for framing Manchester-encoded bit sequence? Using Manchester code violations or bit stuffing? I'm interested in the simplicity of implementation and reliability of ...
2
votes
1answer
71 views

WCF - Is it possible to listen to listen to a WCF ChannelFactory with a HttpListener or socket

I'm implementing a little communication library for fun and it work pretty weel like wcf. All implementation was base on webRequest and HttpListener. I'm asking if there is a way to listen or ...
2
votes
3answers
259 views

Purpose of using Shared Services PRISM

What is the purpose and usings of shared services in prism ? What things can make me think that I have to use shared services instead of EventAggegator?
1
vote
0answers
878 views

Transferring incoming communication to another computer

I have two computers, A and B. On computer A, I want to be able to specify for certain ports that incoming traffic from computers will be automatically routed to a different port on computer B as if ...
2
votes
1answer
1k views

Android app for reading data from external USB-Device

OK i know there are much threads about this topic. But most of em are like 2 years old. Because of that and the fact of new developments from googles side like ADK and stuff, im starting this question ...
0
votes
4answers
259 views

Simple algorithm for reliable communications

So, I have worked on large systems in the past, like an iso stack session layer, and something like that is too big for what I need, but I do have some understanding of the big picture. What I have ...
0
votes
1answer
54 views

Which structure for my Android Application?

I did a lot of research, but I didn't get through it, so that i don't know how to realize my App. The App consists of 2+ Activities, that contain content, that should be updated by a service in the ...
3
votes
1answer
3k views

How to send emails with an Arduino without using a computer?

I'm experimenting with my Arduino Mega. I also have an Arduino Ethernet Shield. I need to send emails using them, without the help of a computer (or any other device; like a smartphone, etc.). Though ...
0
votes
1answer
234 views

communication project using android

i'm doin my project in 8th sem telecomm engineering, and i'm plannin to create a DUPLEX(not confident whether it'd be full or half) communication app using bluetooth and wifi as channels,something ...
1
vote
1answer
287 views

communication between browser tab

i've an html page (main.html) opening a new tab in the same domain using javascript with window.open("newtab.html") method. In the new tab users do something ending his activity clicking a button. ...

1 3 4 5 6 7 23