void ProductsSearchResponse::parseNormalResponse() {
  parseError();
  if (responseParser->hasName("products")) {
  QList<Parser *> listParser = responseParser->getListObjectParser("products");
  Parser *parser;
  foreach (parser, listParser) {
    Product tmp;
    tmp.setParser(parser);
    tmp.parseResponse();
    products.append(tmp);
  }