The qtcpsocket tag has no wiki summary.
4
votes
1answer
672 views
Behavior of QTcpSocket::waitForBytesWritten?
I'm a little confused on the behavior of QTcpSocket::waitForBytesWritten()...
Until when does this function block?
Until the data is written to the OS's internal buffer for transmission over TCP?
...
2
votes
3answers
1k views
Sending an xml message in parts through a TCP socket using Qt
We are writing a project where there is a client who generates xml requests, sends them to a server, who parses the request and returns the requested information in an xml string.
The application ...
2
votes
2answers
188 views
How to properly determine that the end-of-input has been reached in a QTCPSocket?
I have the following code that reads from a QTCPSocket:
QString request;
while(pSocket->waitForReadyRead())
{
request.append(pSocket->readAll());
}
The problem with this code is that it ...
1
vote
1answer
25 views
Get remote host Ip address QTcpServer
I'm using Qt to create TCP server using QTcpServer. Every time a client connects to server, I would like to know the remote host's IP address and port number. I tried searching documentation but ...
1
vote
1answer
97 views
Pyqt ; QTcpSocket always in connectingState after server restart;
I've got a subclass of QTcpSocket. And problem is : when i firt time connect to server - everything ok, but after socket connected i restart server (python socketServer,just close and start script ...
1
vote
4answers
408 views
How to send integers over QTcpSocket?
I'm new to Qt, so if this is a completely stupid question...
I'm trying to use QTcpSocket.
If I do:
...
QTcpSocket * socket
socket = new QTcpSocket(this);
socket.write(1);
...
It complains about ...
1
vote
0answers
581 views
QTcpSocket problem
Writing a chat using Qt. Got a problem. My client's QTcpSocket remains in connecting state, but the server emits newConnection() signal. Network session is not required. Why is that? Here is some ...
1
vote
1answer
251 views
QTcpServer: Send HTTP/1.0 200 OK to connected client
I set up a QTcpServer to listen to a Shoutcast stream. The newConnection()-signal gets fired as it should:
connect(tcpServer, SIGNAL(newConnection()), this, SLOT(handleClientComm()));
void ...
0
votes
0answers
55 views
PyQt QTcpServer: How to return data to multiple clients?
I am looking to create a QTcpServer using PyQt that can simultaneously return data to 2 or more clients. I assume that this will require threading.
Using the threadedfortuneserver.py example as a ...
0
votes
0answers
14 views
QTcpServer + browser = “Connection closed by a remote server”
I wrote the simplest HTTP server on Qt (see below)
When I try open http://192.168.1.100:4639/ in a browser (Opera), it usually shows a text, but sometimes it shows "Connection closed by a remote ...
0
votes
0answers
109 views
cant read data from QTcpSocket
I use QTcpSocket to open a connection and receive the data. But I'm having issues reading data from then socket.
// header file
class PeerWireClient : public QTcpSocket
{
Q_OBJECT
public:
...
0
votes
1answer
34 views
Best convention of tcp-messaging
I'am using this message convetion : %total_msg_length%|%msg_body% to recieve string data over tcp-sockets (python/pyqt). Is this is the good convetion, or should i try something else?
0
votes
1answer
151 views
How to write on multiple QTcpSockets using QThreads?
I've been struggling for a couple of days now with this problem on QTcpSockets and QThreads.
I have a QTcpServer that listens on a port and creates a new Client using the nextPendingConnection(). So ...
0
votes
0answers
269 views
Omron FINS protocol realization at PC side using Qt(C++) [ Driver ]
I am working for a cross-platform desktop application . I develop it in C++ with usage of Qt and already implemented PC side Omron FINS TCP protocol driver via sockets
( QTcpSocket ).
When I read from ...
0
votes
1answer
340 views
Read and Send a file via QDataStream and QTcpSocket
My problem is that the variable content is always empty.
Here is my code:
QFile file("/home/qt/Client/file.txt");
if(file.open(QIODevice::ReadOnly)){
qDebug("File opened");
}
QDataStream ...
0
votes
0answers
39 views
QWebView and QTcpSocket
How can I make QWebPage to use custom(my) QTcpSocket?
Basically I need to change outgoing IP interface
Thanks.
0
votes
1answer
340 views
QTcpServer- QTcpSocket acknowledgement question
-->I am writing a program using QTcpSocket,QTcpServer. Do I need to add some code(i.e. an acknowledgement procedure) to guarantee that the packets are delivered?
If this is the case, I could not ...
0
votes
1answer
593 views
Problem with QTcpSocket and sending binary data
There is following code:
QFile in("c:\\test\\pic.bmp");
in.open(QFile::ReadOnly);
QByteArray imageBytes = in.readAll();
socket->write(bytesToSend);
On server, i'm receiving only header of .bmp ...
0
votes
1answer
288 views
QTcpSocket listen
Is it possible to listen on a QTcpSocket?
I have a simple p2p connection on Tcp.
But i cannot find a way to start a QTcpSocket on a random free port. Should i use a QTcpServer for it, or is that a ...
0
votes
0answers
241 views
QTcpSocket, SIGSEGV when using a pointer
I'm getting a SIGSEGV in 'QScopedPointer' when I try to use a pointer to QTcpSocket, if I use a variable instead, everything works fine...
I instantiate QTcpSocket as a pointer and connect the ...
0
votes
1answer
260 views
Passing a QLocalSocket* to a method expecting a QIODevice*
Perhaps I'm being over-ambitious, but I'm trying to write a server program which can accept connections over both QLocalSockets and QTcpSockets. The concept is to have a 'nexus' object with both a ...