12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Net;
- using System.Net.Security;
- using System.Security.Cryptography.X509Certificates;
- using System.Text;
- using Library;
- // using MongoDB.Bson;
- // using MongoDB.Driver;
- // using MongoDB.Driver.Linq;
- namespace MySystem
- {
- public class BankCardCheckForThree
- {
- public readonly static BankCardCheckForThree Instance = new BankCardCheckForThree();
- private BankCardCheckForThree()
- {
- }
- private const String host = "https://bankcard3c.shumaidata.com";
- private const String path = "/bankcard3c";
- private const String method = "GET";
- private const String appcode = "8e5704921ca3422f80f0deb935a7ddc6";
- public string Do(string bankcard, string idcard, string name)
- {
- String querys = "bankcard=" + bankcard + "&idcard=" + idcard + "&name=" + name;
- function.WriteLog(DateTime.Now.ToString(), "验证三要素日志");
- function.WriteLog(querys, "验证三要素日志");
- String bodys = "";
- String url = host + path;
- HttpWebRequest httpRequest = null;
- HttpWebResponse httpResponse = null;
- if (0 < querys.Length)
- {
- url = url + "?" + querys;
- }
- if (host.Contains("https://"))
- {
- ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
- httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
- }
- else
- {
- httpRequest = (HttpWebRequest)WebRequest.Create(url);
- }
- httpRequest.Method = method;
- httpRequest.Headers.Add("Authorization", "APPCODE " + appcode);
- if (0 < bodys.Length)
- {
- byte[] data = Encoding.UTF8.GetBytes(bodys);
- using (Stream stream = httpRequest.GetRequestStream())
- {
- stream.Write(data, 0, data.Length);
- }
- }
- try
- {
- httpResponse = (HttpWebResponse)httpRequest.GetResponse();
- }
- catch (WebException ex)
- {
- httpResponse = (HttpWebResponse)ex.Response;
- }
- Stream st = httpResponse.GetResponseStream();
- StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
- string result = reader.ReadToEnd();
- function.WriteLog(result, "验证三要素日志");
- function.WriteLog("\n\n", "验证三要素日志");
- return result;
- }
- public bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
- {
- return true;
- }
- }
- }
|