I write chat client for Kaazing Gateway in qt c++. I use QTcpSocket. I call connectToHost and connection is ok. But when i call socket write function connection is disconnected. What wrong? How write message to kaazing server?
//connect to server
QTcpSocket _sok = new QTcpSocket(this);
connect(_sok, SIGNAL(connected()), this, SLOT(onSokConnected()));
connect(_sok, SIGNAL(disconnected()), this, SLOT(onSokDisconnected()));
_sok->connectToHost("localhost", 8000); //after this line run onSokConnected()
// write message
QByteArray arrBlock;
QDataStream out(&arrBlock, QIODevice::WriteOnly);
out.setVersion( QDataStream::Qt_4_5 );
out << quint16(0) <<sometext;
out.device()->seek(0);
out << quint16(arrBlock.size() - sizeof(quint16));
_sok->write(arrBlock); // after this line run onSokDisconnected()
_sok->flush();
If you follow these 2 steps you should be able to connect to the gateway without any problems!