Tagged Questions
The communication-protocol tag has no wiki summary.
12
votes
9answers
748 views
Protocols used to talk between an embedded CPU and a PC
I am building a small device with its own CPU (AVR Mega8) that is supposed to connect to a PC. Assuming that the physical connection and passing of bytes has been accomplished, what would be the best ...
10
votes
5answers
6k views
Objective-C networking - best practices?
I'm building an Objective-C app that has both a server and a client. The client can send updates to the server, and the server needs to be able to send updates to each connected client. I've been ...
5
votes
3answers
1k views
How does PDO know last inserted id in MySQL?
EDIT: This question title originally was: How does Doctrine know last inserted id in MySQL? and was related to Doctrine ORM mapper. After some digging I found out that this question is not related to ...
4
votes
4answers
419 views
.NET two-way socket realtime communication protocoll
I need to maintain a connection between a server and multiple clients so that the clients can send commands, and the server trigger events. The server is basically a music-player, and the clients send ...
3
votes
2answers
293 views
Difference between HTTPS and SSL
What is the difference between HTTPS and SSL? I read about them and found following:
HTTPS: HTTPS is a combination of HTTP with SSL/TLS. It means that HTTPS is basically HTTP connection which is ...
3
votes
3answers
603 views
Implementation communication protocols in C/C++
I am in the process of starting to implement some proprietary communication protocol stack in software but not sure where to start. It is the kind of work I have not done before and I am looking for ...
2
votes
1answer
173 views
SQL Server Shared Memory communication protocol usage
I read a lot of articles and answers of similar topics over the internet but didn't find the reason for my problem.
I have a .NET 4 Windows Service connecting to SQL Server Express on the same ...
2
votes
6answers
209 views
Communication between applications written in different languages
I am looking at linking a few applications together (all written in different languages like C#, C++, Python) and I am not sure how to go about it.
What I mean by linking? The system I am working on ...
2
votes
1answer
656 views
Implementation of Z-modem protocol in Java
I want to send a file from serial port and I have to use the Z-modem protocol in Java.
I saw the protocol and it looks defficult for me and I can't buy a commercial solution.
Any Idea how can I get ...
1
vote
1answer
49 views
How could I query my windows application from a website
I'm trying to figure something out regarding how I can create communication between 2 machines using the internet as the communication line.
Idea
I would like to have a windows service/application ...
1
vote
1answer
111 views
Finding the Encryption or Hashing method used
I am trying to find out what algorithm the client application is using to return the session key.
When I initiate a connection, the server first sends a unique session key. The Client has then to ...
1
vote
1answer
86 views
Voicemail Protocol Specification
Is there a public protocol for Voicemail systems? If so, any specifications out there?
1
vote
2answers
160 views
programs hangs during socket interaction
I have two programs, sendfile.py and recvfile.py that are supposed to interact to send a file across the network. They communicate over TCP sockets. The communication is supposed to go something like ...
1
vote
1answer
221 views
Memcache textual protocol cheatsheet?
Memcached interface is implemented using a textual protocol.
Sometimes it's very useful to be to fetch data stored on your remote server simply by invoking netcat with some shell kung fu, for ...
1
vote
4answers
233 views
Data serialization
Dear folks,
I've got an objective-c/cocoa based application that I'm working on. This app is client<->server. Currently, the communcation protocol is based upon some fairly simple XML. While XML ...
0
votes
0answers
19 views
AISG spec - data format
I am a newbie to Antenna Interface Standards Group (AISG) specifications. I need to implement a simulator for an AISG client. For this I need to send some commands in the AISG format to the ...
0
votes
0answers
157 views
Creating a Bluetooth Piconet using C# on Windows 7 PCs
How can I create a Bluetooth Piconet using C#!
Is it just by pairing 7 more bluetooth devices to my device or is there a special procedure like Bluetooth PAN
Are there any known code examples on ...
0
votes
0answers
34 views
How two Message Queues in a computer will communicate?
I am using a component based systems, all components reside in a single computer. I want Message Queue to be used as communication channel among components. In my system some parts should be kept ...
0
votes
1answer
472 views
Communicate with RTMP server with C++ or Objective C application
Is it possible communicate with rtmp server with C++ or Objective C application, like flash player do this ?
i know it must be possible because flash player was written on C++ and use C++ library. if ...
0
votes
4answers
36 views
Approaches to programming application-level protocols?
I'm doing some simple socket programming in C#. I am attempting to authenticate a user by reading the username and password from the client console, sending the credentials to the server, and ...
0
votes
1answer
237 views
What is a hierarchical communication protocol?
What is a hierarchical communication protocol?
I came across so many topics on hierarchical routing, hierarchical protocol and the basic idea of this hierarchical structure is to provide anonymity ...
0
votes
6answers
946 views
How are server side applications created, how is client - server communication done?
I would like to have a client-server application written in .NET which would do following:
server is running Linux
on the server there is SQL database (mySQL) containing document URLs
What we ...
0
votes
3answers
333 views
Python sockets, how to escape from infinite loop and handle exceptions
I have a script that connects to a remote server. The code is below
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((remote_host,remote_port))
s.setblocking(False)
while True:
...
0
votes
2answers
459 views
Do RMI and web services both use a socket connection?
In another question I was worried about using a web service that takes a five minutes to complete. I was thinking about using RMI instead of web services for this use case..
but at the end of the ...