Search:

Type: Posts; User: nice_guy_mel

Search: Search took 0.00 seconds.

  1. Solved

    Great job guys, that's the problem. Cached pages apparently were sending the extra \r\n that I needed to readLine(). I simply put an extra <input type="hidden" name="End" Value="\r\n"> at the end of...
  2. more info

    QString pageReq;
    QSocket* socket = (QSocket*)sender();
    if( socket->canReadLine() && m_HttpPageInfo.size() != 0) {
    QStringList tokens = QStringList::split(QRegExp("[ \r\n][ \r\n]*"),...
  3. Trying to capture POST method from Web Page

    I have a C++ application that listens on a local port for incomming requests from web pages. We used to only listen for GET methods, which were easy, but now we want to listen for POST methods...
Results 1 to 3 of 3