HttpService.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Web;
  4. using System.Net;
  5. using System.IO;
  6. using System.Text;
  7. using System.Net.Security;
  8. using System.Security.Authentication;
  9. using System.Security.Cryptography.X509Certificates;
  10. namespace LYFZ.WxPayAPI
  11. {
  12. /// <summary>
  13. /// http连接基础类,负责底层的http通信
  14. /// </summary>
  15. public class HttpService
  16. {
  17. public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
  18. {
  19. //直接确认,否则打不开
  20. return true;
  21. }
  22. public static string Post(string xml, string url, bool isUseCert, int timeout)
  23. {
  24. System.GC.Collect();//垃圾回收,回收没有正常关闭的http连接
  25. string result = "";//返回结果
  26. HttpWebRequest request = null;
  27. HttpWebResponse response = null;
  28. Stream reqStream = null;
  29. try
  30. {
  31. //设置最大连接数
  32. ServicePointManager.DefaultConnectionLimit = 200;
  33. //设置https验证方式
  34. if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
  35. {
  36. ServicePointManager.ServerCertificateValidationCallback =
  37. new RemoteCertificateValidationCallback(CheckValidationResult);
  38. }
  39. /***************************************************************
  40. * 下面设置HttpWebRequest的相关属性
  41. * ************************************************************/
  42. System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
  43. request = (HttpWebRequest)WebRequest.Create(url);
  44. request.Method = "POST";
  45. request.Timeout = timeout * 1000;
  46. //设置代理服务器
  47. //WebProxy proxy = new WebProxy(); //定义一个网关对象
  48. //proxy.Address = new Uri(WxPayConfig.PROXY_URL); //网关服务器端口:端口
  49. //request.Proxy = proxy;
  50. //设置POST的数据类型和长度
  51. request.ContentType = "text/xml";
  52. byte[] data = System.Text.Encoding.UTF8.GetBytes(xml);
  53. request.ContentLength = data.Length;
  54. //是否使用证书
  55. if (isUseCert)
  56. {
  57. string path = HttpContext.Current.Request.PhysicalApplicationPath;
  58. X509Certificate2 cert = new X509Certificate2(path + WxPayConfig.SSLCERT_PATH, WxPayConfig.SSLCERT_PASSWORD);
  59. request.ClientCertificates.Add(cert);
  60. Log.Debug("WxPayApi", "PostXml used cert");
  61. }
  62. //往服务器写入数据
  63. reqStream = request.GetRequestStream();
  64. reqStream.Write(data, 0, data.Length);
  65. reqStream.Close();
  66. //获取服务端返回
  67. response = (HttpWebResponse)request.GetResponse();
  68. //获取服务端返回数据
  69. StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
  70. result = sr.ReadToEnd().Trim();
  71. sr.Close();
  72. }
  73. catch (System.Threading.ThreadAbortException e)
  74. {
  75. Log.Error("HttpService", "Thread - caught ThreadAbortException - resetting.");
  76. Log.Error("Exception message: {0}", e.Message);
  77. System.Threading.Thread.ResetAbort();
  78. }
  79. catch (WebException e)
  80. {
  81. Log.Error("HttpService", e.ToString());
  82. if (e.Status == WebExceptionStatus.ProtocolError)
  83. {
  84. Log.Error("HttpService", "StatusCode : " + ((HttpWebResponse)e.Response).StatusCode);
  85. Log.Error("HttpService", "StatusDescription : " + ((HttpWebResponse)e.Response).StatusDescription);
  86. }
  87. throw new WxPayException(e.ToString());
  88. }
  89. catch (Exception e)
  90. {
  91. Log.Error("HttpService", e.ToString());
  92. throw new WxPayException(e.ToString());
  93. }
  94. finally
  95. {
  96. //关闭连接和流
  97. if (response != null)
  98. {
  99. response.Close();
  100. }
  101. if(request != null)
  102. {
  103. request.Abort();
  104. }
  105. }
  106. return result;
  107. }
  108. /// <summary>
  109. /// 处理http GET请求,返回数据
  110. /// </summary>
  111. /// <param name="url">请求的url地址</param>
  112. /// <returns>http GET成功后返回的数据,失败抛WebException异常</returns>
  113. public static string Get(string url)
  114. {
  115. System.GC.Collect();
  116. string result = "";
  117. HttpWebRequest request = null;
  118. HttpWebResponse response = null;
  119. //请求url以获取数据
  120. try
  121. {
  122. //设置最大连接数
  123. ServicePointManager.DefaultConnectionLimit = 200;
  124. //设置https验证方式
  125. if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
  126. {
  127. ServicePointManager.ServerCertificateValidationCallback =
  128. new RemoteCertificateValidationCallback(CheckValidationResult);
  129. }
  130. /***************************************************************
  131. * 下面设置HttpWebRequest的相关属性
  132. * ************************************************************/
  133. request = (HttpWebRequest)WebRequest.Create(url);
  134. request.Method = "GET";
  135. //设置代理
  136. //WebProxy proxy = new WebProxy();
  137. //proxy.Address = new Uri(WxPayConfig.PROXY_URL);
  138. //request.Proxy = proxy;
  139. //获取服务器返回
  140. response = (HttpWebResponse)request.GetResponse();
  141. //获取HTTP返回数据
  142. StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
  143. result = sr.ReadToEnd().Trim();
  144. sr.Close();
  145. }
  146. catch (System.Threading.ThreadAbortException e)
  147. {
  148. Log.Error("HttpService","Thread - caught ThreadAbortException - resetting.");
  149. Log.Error("Exception message: {0}", e.Message);
  150. System.Threading.Thread.ResetAbort();
  151. }
  152. catch (WebException e)
  153. {
  154. Log.Error("HttpService", e.ToString());
  155. if (e.Status == WebExceptionStatus.ProtocolError)
  156. {
  157. Log.Error("HttpService", "StatusCode : " + ((HttpWebResponse)e.Response).StatusCode);
  158. Log.Error("HttpService", "StatusDescription : " + ((HttpWebResponse)e.Response).StatusDescription);
  159. }
  160. throw new WxPayException(e.ToString());
  161. }
  162. catch (Exception e)
  163. {
  164. Log.Error("HttpService", e.ToString());
  165. throw new WxPayException(e.ToString());
  166. }
  167. finally
  168. {
  169. //关闭连接和流
  170. if (response != null)
  171. {
  172. response.Close();
  173. }
  174. if (request != null)
  175. {
  176. request.Abort();
  177. }
  178. }
  179. return result;
  180. }
  181. }
  182. }