Package cn.baiweigang.qtaf.toolkit.httpclient

Examples of cn.baiweigang.qtaf.toolkit.httpclient.HttpRequest


    this.httpUrl = "";
    this.headersMap = new TreeMap<String, String>();
    this.urlParaMap = new LinkedHashMap<String, String>();
    this.formParaMap = new LinkedHashMap<String, String>();
    if (IftConf.ProxyEnable.equals("Y")) {
      sendRequestCore = new HttpRequest(IftConf.ProxyIp,IftConf.PROXY_PORT);
    } else {
      sendRequestCore = new HttpRequest();
    }
  }
View Full Code Here

TOP

Related Classes of cn.baiweigang.qtaf.toolkit.httpclient.HttpRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.