示例#1
0
  public NetResponse pullCookies(String strUrl, String strBody, IRhoSession oSession)
      throws Exception {
    Hashtable headers = new Hashtable();
    m_bIgnoreSuffixOnSim = false;
    m_bCancel = false;

    NetResponse resp = doRequest /*Try*/("POST", strUrl, strBody, oSession, headers);
    if (resp.isOK()) {
      resp.setCharData(resp.getCookies());
      LOG.INFO("pullCookies: " + resp.getCharData());
    }

    return resp;
  }