Home | History | Annotate | Download | only in src

Lines Matching refs:XmlRpcUtil

33   XmlRpcUtil::log(2,"XmlRpcServerConnection: new socket %d.", fd);
42 XmlRpcUtil::log(4,"XmlRpcServerConnection dtor.");
75 XmlRpcUtil::error("XmlRpcServerConnection::readHeader: error while reading header (%s).",XmlRpcSocket::getErrorMsg().c_str());
79 XmlRpcUtil::log(4, "XmlRpcServerConnection::readHeader: read %d bytes.", _header.length());
101 XmlRpcUtil::log(4, "XmlRpcServerConnection::readHeader: EOF");
103 XmlRpcUtil::error("XmlRpcServerConnection::readHeader: EOF while reading header");
112 XmlRpcUtil::error("XmlRpcServerConnection::readHeader: No Content-length specified");
118 XmlRpcUtil::error("XmlRpcServerConnection::readHeader: Invalid Content-length specified (%d).", _contentLength);
122 XmlRpcUtil::log(3, "XmlRpcServerConnection::readHeader: specified content length is %d.", _contentLength);
136 XmlRpcUtil::log(3, "KeepAlive: %d", _keepAlive);
151 XmlRpcUtil::error("XmlRpcServerConnection::readRequest: read error (%s).",XmlRpcSocket::getErrorMsg().c_str());
158 XmlRpcUtil::error("XmlRpcServerConnection::readRequest: EOF while reading request");
166 XmlRpcUtil::log(3, "XmlRpcServerConnection::readRequest read %d bytes.", _request.length());
167 //XmlRpcUtil::log(5, "XmlRpcServerConnection::readRequest:\n%s\n", _request.c_str());
182 XmlRpcUtil::error("XmlRpcServerConnection::writeResponse: empty response.");
189 XmlRpcUtil::error("XmlRpcServerConnection::writeResponse: write error (%s).",XmlRpcSocket::getErrorMsg().c_str());
192 XmlRpcUtil::log(3, "XmlRpcServerConnection::writeResponse: wrote %d of %d bytes.", _bytesWritten, _response.length());
211 XmlRpcUtil::log(2, "XmlRpcServerConnection::executeRequest: server calling method '%s'",
223 XmlRpcUtil::log(2, "XmlRpcServerConnection::executeRequest: fault %s.",
235 XmlRpcUtil::log(5, "XmlRpcServerConnection::parseRequest:\n%s\n", _request.c_str());
237 std::string methodName = XmlRpcUtil::parseTag(METHODNAME_TAG, _request, &offset);
239 if (methodName.size() > 0 && XmlRpcUtil::findTag(PARAMS_TAG, _request, &offset))
242 while (XmlRpcUtil::nextTagIs(PARAM_TAG, _request, &offset)) {
244 (void) XmlRpcUtil::nextTagIs(PARAM_ETAG, _request, &offset);
247 (void) XmlRpcUtil::nextTagIs(PARAMS_ETAG, _request, &offset);
334 XmlRpcUtil::log(5, "XmlRpcServerConnection::generateResponse:\n%s\n", _response.c_str());