The communicate tag has no wiki summary.
4
votes
2answers
325 views
PHP to Java communication [closed]
I want to use PHP to communicate with a java using shared database to communicate, please help me with sample code or logic.
Thank you.
EDIT:
I appreciate your suggestions, Yes I will be using both ...
3
votes
3answers
120 views
Communicate Java and C#
I'm working on a project that uses an RFID reader, which only works with a library in C#. The thing is I'd really like to work with Java (develop the rest of the program, GUI, etc), and use the C# ...
3
votes
1answer
83 views
Python: sequential calls to subprocess (in this case, espeak)
I was wondering if there was a way to access espeak as you might in the command line:
laptop:~$espeak
say this line first
say this line second
...
Right now, the only ways I can do it in python is ...
2
votes
1answer
386 views
Communicating between multiple WPF Usercontrols in a grid (MVVM App)
Hi I would like to grow my application by having discrete units of functionality in UserControls, and then put several of these inside a grid of ContentControls on my main page. I will need to be able ...
1
vote
2answers
74 views
What and How the Java Swing concept related to Cloud?
One of my friend asking me something related to Client Software and Cloud.
Java Desktop Swing as Client and Web as Data Resource (Database -1 single hosting).
That's the main thing I've heard.
If ...
1
vote
1answer
181 views
Python3 subprocess communicate example
I'm new to subprocessing.
I just need a really simple win32 example of communicate() between a parent.py and child.py. A string sent from parent.py to child.py, altered by child.py and sent back to ...
1
vote
0answers
102 views
Arduino low frequency communication [closed]
I'm thinking about having two Arduino's (Nano) communicating with each other, but I'm not 100% sure how. So I was thinking about the ways that are possible:
Radio
Visible Light
Sound
Wi-Fi
3G
And ...
1
vote
3answers
199 views
Communicating between two threads
I have a thread, A which has a list. List holds some objects. Now I want to design a mechanisim by which I can send some message to thread A.
Thread A runs in a loop (it does not wait or sleep).
Some ...
1
vote
2answers
80 views
(website data exchange || communication between sites) via php
hihi
is there any way to send simple string
from websiteA.com -to-> websiteB.com with php
where websiteB.com "listens"(as not knowing the existence of websiteA.com) any incoming simple strings sent ...
1
vote
1answer
97 views
communication java Project with GWT project
How can I use a GWT project like a Front , java project like back end and do it communicate toghether
I want to know the communication protocal or the tool which can help me to do it.
1
vote
2answers
216 views
Share data and communicate between php code and .Net application on the same server
For my college project i wish to make a website(PHP) that communicates(possibly in realtime) with a .Net desktop app(WPF) on the same server.Being a complete noob with php,i do not see any way to do ...
1
vote
3answers
558 views
python subprocess block
I'm having a problem with the module subprocess.
I'm running a script from python through:
subprocess.Popen('./run_pythia.sh',shell=True).communicate()
and sometimes it just blocks and it doesn't ...
1
vote
1answer
136 views
What is the best practice for communicating with another thread in Qt?
I have a QThread derived class that communicates with the main thread by sending QEvents to it.
What is the best way for the main thread to communicate with the second thread?
The main thread has a ...
0
votes
4answers
126 views
iphone - communicate with previous viewcontroller after segue
Is it possible to communicate with a viewcontroller after a segue switched to another viewcontroller?
I want to know, because I need data from a viewcontroller passed on to the next viewcontroller,
...
0
votes
3answers
117 views
In C on Linux, how would I go about using 2 programs, the latter sending text data to the first displayed using stdout?
I am writing a simple instant messenger program in C on Linux.
Right now I have a program that binds a socket to a port on the local machine, and listens for text data being sent by another program ...
0
votes
2answers
69 views
communicate with computer that isn't on the same network
I want to communicate between two computers that aren't on the same network, i tried to use sockets, but I only found tutorials and examples for communicating in the same network.
I tried to search ...
0
votes
1answer
56 views
how can i connect to micro controller over a G3 usb modem, the reason is to connect over internet
My problem is to transfer a set of commands over internet to a microchip through long distance over gsm coverage. I will appreciate any help .
0
votes
1answer
73 views
Apply WSO2 WSF/C++ into client based on Https Protocol
I establish a server using WCF based on Https protocol, now i want to create a client using WSO2 WSF/C++(and the client code is generated by Code Generator Tool), however, i can't communicate with ...
0
votes
2answers
61 views
Comunicate between 2 android devices
I need a way to send messages between 2 android devices, 1 a phone and 1 a tablet. I'm using Java to create the app. I'm looking at servers but I can't figure out where to start. Thanks for any help ...
0
votes
1answer
161 views
Pass data to a BackgroundServiceAgent from wp7 application
I have two projects, one of them is a "Windows phone application" and the other is a "Windows phone Audio player Agent".
In order to provide the AudioPlayer with something like "the next track" I ...
0
votes
1answer
66 views
Python: calling Fortran with subprocess and giving commands via communicate
I want to call a Fortran program from python. I use the Popen statement from subprocess like this:
p = Popen(['./finput'], stdout=PIPE, stdin=PIPE, stderr=STDOUT)
I then want to send some file ...
0
votes
1answer
285 views
Subprocess wait() function doesn't seem to be waiting for the subprocess to complete
I'm trying to run a php script with python's subprocess module.
proc = subprocess.Popen(['php', '-f', test.php], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
retCode = proc.wait
print retCode
...
0
votes
0answers
282 views
python subprocess.popen communicate stdout=subprocess.PIPE encoding problem
i'm trying to execute a subproces in python3 using
# coding=cp1252
...
proc = subprocess.Popen(self.cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,universal_newlines=True)
bin = ...
0
votes
2answers
86 views
Can Python automatically communicate with SVN
I was hoping to implement an SVN communicator in my python program so that any file being worked on is automatically stored into the user's SVN account without any user interaction (username and ...
0
votes
1answer
130 views
Interacting servers using Twisted?
I have been dabling in some Twisted and I've come across a problem. I'm implementing a couple servers that can be connected to using telnet localhost x
My code handles it like this:
...
0
votes
2answers
479 views
App communication to iOS safari via cookies or whatever?
Am new to iphone dev.
I want authenticate a user before he goes to real portal through safari. I heard that we can not access safari;s cookies space to add a cookie...
this is not working as well, ...