Selaa lähdekoodia

添加项目文件。

czt 4 päivää sitten
vanhempi
commit
4ecd2ce61d

+ 22 - 0
TimedUpload.sln

@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.26430.14
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimedUpload", "TimedUpload\TimedUpload.csproj", "{54D76C85-4B6F-44D6-9B95-8B4BB411FC4D}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{54D76C85-4B6F-44D6-9B95-8B4BB411FC4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{54D76C85-4B6F-44D6-9B95-8B4BB411FC4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{54D76C85-4B6F-44D6-9B95-8B4BB411FC4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{54D76C85-4B6F-44D6-9B95-8B4BB411FC4D}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+EndGlobal

+ 89 - 0
TimedUpload/Program.cs

@@ -0,0 +1,89 @@
+
+using Quartz;
+using Quartz.Impl;
+using RDIFramework.Utilities;
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.IO;
+using System.Linq;
+using System.Text;
+using Topshelf;
+
+namespace TimedUpload
+{
+    class Program
+    {
+        private static string programName = ConfigurationManager.AppSettings["serverName"];
+        static void Main(string[] args)
+        {
+            
+            log4net.Config.XmlConfigurator.ConfigureAndWatch(new FileInfo(AppDomain.CurrentDomain.BaseDirectory + "log4net.config"));
+            try
+            {
+                HostFactory.Run(x =>
+                {
+                    x.UseLog4Net();
+
+                    x.Service<ServiceRunner>();
+
+                    x.SetDescription(programName);
+                    x.SetDisplayName(programName);
+                    x.SetServiceName(programName);
+
+                    x.EnablePauseAndContinue();
+                });
+             
+
+            }
+            catch (Exception ex)
+            {
+                Console.Write(ex.Message);
+            }
+
+        }
+    }
+    public class DataUploadService
+    {
+        private readonly IScheduler scheduler;
+
+        public DataUploadService()
+        {
+            scheduler = StdSchedulerFactory.GetDefaultScheduler();
+        }
+
+        public bool Start()
+        {
+            scheduler.Start();
+            return true;
+        }
+
+        public bool Stop()
+        {
+            scheduler.Shutdown(false);
+            return true;
+        }
+
+        public bool Continue()
+        {
+            scheduler.ResumeAll();
+            return true;
+        }
+
+        public bool Pause()
+        {
+            scheduler.PauseAll();
+            return true;
+        }
+
+        public bool AddJobTrigger(IJobDetail jobDetail, ITrigger trigger)
+        {
+            if (scheduler != null)
+            {
+                scheduler.ScheduleJob(jobDetail, trigger);
+            }
+            return true;
+        }
+    }
+}

+ 36 - 0
TimedUpload/Properties/AssemblyInfo.cs

@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// 有关程序集的一般信息由以下
+// 控制。更改这些特性值可修改
+// 与程序集关联的信息。
+[assembly: AssemblyTitle("TimedUpload")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Microsoft")]
+[assembly: AssemblyProduct("TimedUpload")]
+[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// 将 ComVisible 设置为 false 会使此程序集中的类型
+//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
+//请将此类型的 ComVisible 特性设置为 true。
+[assembly: ComVisible(false)]
+
+// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
+[assembly: Guid("54d76c85-4b6f-44d6-9b95-8b4bb411fc4d")]
+
+// 程序集的版本信息由下列四个值组成: 
+//
+//      主版本
+//      次版本
+//      生成号
+//      修订号
+//
+// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
+// 方法是按如下所示使用“*”: :
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 296 - 0
TimedUpload/QuartzJobs/DataUploadJob.cs

@@ -0,0 +1,296 @@
+
+using log4net;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
+using Quartz;   
+using RDIFramework.Utilities;
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.IO;
+using System.Linq;    
+using System.Net;
+using System.Security.Cryptography;
+using System.Text;
+
+namespace TimedUpload.QuartzJobs
+{
+    public class DataUploadJob : IJob
+    {
+        private readonly ILog log = LogManager.GetLogger(typeof(DataUploadJob));
+
+        static IDbProvider NBHelper
+        {
+            get
+            {
+                var DbDefine = DbFactoryProvider.GetProvider(CurrentDbType.SqlServer, Config.GetValue("NBConn"));
+                return DbDefine;
+            }
+        }
+        static IDbProvider DbHelper
+        {
+            get
+            {
+                var DbDefine = DbFactoryProvider.GetProvider(CurrentDbType.SqlServer, Config.GetValue("DbConn"));
+                return DbDefine;
+            }
+        }
+
+        public void Execute(IJobExecutionContext context)
+        {
+            try
+            {
+                UploadData();
+            }
+            catch (Exception ex)
+            {
+                log.Error("上传数据错误:" + ex.Message);
+            }
+        } 
+        #region 增加设备
+        /// <summary>
+        /// 设备同步
+        /// </summary>
+     
+      
+        #region DataTable转换成json
+        public void UploadData()
+        {   
+            String result;
+            Dictionary<String, String> dic;
+            String sql;
+
+            //try
+            //{
+            //    log.Info("~~~~~~~~~~~~~~~~开始上传数据~~~~~~~~~~~~~~~~~~");
+            //    sql = "  select ElecAddress,NowReading,NowRadingDT, '0' ValueControlState from  RMRS_MeterInfo where   NowRadingDT>DataUploadTime and DeleteMark=0 and RoomID is not null  and CompanyID ='" + Config.GetValue("CompanyId") + "'";
+            //    DataTable dt = NBHelper.Fill(sql);
+            //    if (dt != null && dt.Rows.Count > 0)
+            //    {
+            //        StringBuilder stb = new StringBuilder();
+            //        foreach (DataRow row in dt.Rows)
+            //        {
+            //            stb.Clear();
+            //            stb.Append("{");
+            //            stb.Append("\"encrypt\":\"" + encryptThreeDESECB(getTimeStamp() + "_" + Config.GetValue("appId"), Config.GetValue("Userkey")) + "\",");
+            //            stb.Append("\"appId\":\"" + Config.GetValue("appId") + "\",");
+            //            stb.Append("\"uptime\":" + getTimeStamp() + ",");
+            //            stb.Append("\"appType\":\"JC\",");
+            //            stb.Append("\"order_type\":null,");
+            //            stb.Append("\"seq\":\"0\",");
+            //            stb.Append("\"param\":null,");
+            //            stb.Append("\"order_result\":null,");
+            //            stb.Append("\"datas\":[{");
+            //            stb.Append("\"code\":\"" + row["ElecAddress"] + "01\",");
+            //            stb.Append("\"value\":" + row["NowReading"] + ",");
+            //            stb.Append("\"time\":" + getTimeStamp(Convert.ToDateTime(row["NowRadingDT"])) + "");
+
+            //            stb.Append("}]");
+            //            stb.Append("}");
+            //            result = postSend(Config.GetValue("UploadDataUrl"), stb.ToString());
+            //            log.Debug("~~~~~~~~~返回result:" + result);
+            //            stb.Clear();
+            //            if (result == "ok")
+            //            {
+            //                sql = "update RMRS_MeterInfo set DataUploadTime='" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'  where  ElecAddress='" + row["ElecAddress"] + "'";
+            //                NBHelper.ExecuteNonQuery(sql);
+            //                log.Info("上传成功" + row["ElecAddress"]);
+            //            }
+            //            //dic = JsonConvert.DeserializeObject<Dictionary<String, String>>(result);
+            //            //if (dic !=null )
+            //            //{
+            //            //    if (dic["code"] =="1")
+            //            //    {
+
+            //            //    }
+            //            //}
+            //        }
+
+            //    }
+            //}
+            //catch (Exception ex)
+            //{
+
+            //    log.Error(ex.ToString());
+            //}
+            try
+            {
+                log.Info("定时任务开始了!" );
+                sql = "  select  表地址,表读数,ReviseDT  from Bsc_MeterInfo where ReviseDT>DataUploadTime or  DataUploadTime is null ";
+                DataTable meterDt = DbHelper.Fill(sql);
+                log.Info("有"+ meterDt.Rows.Count+"条未上报数据!");
+                if (meterDt != null && meterDt.Rows.Count > 0)
+                {
+                    StringBuilder stb = new StringBuilder();
+                    foreach (DataRow row in meterDt.Rows)
+                    {
+                        try
+                        {
+                            stb.Clear();
+                            stb.Append("{");
+                            stb.Append("\"encrypt\":\"" + encryptThreeDESECB(getTimeStamp() + "_" + Config.GetValue("appId"), Config.GetValue("Userkey")) + "\",");
+                            stb.Append("\"appId\":\"" + Config.GetValue("appId") + "\",");
+                            stb.Append("\"uptime\":" + getTimeStamp() + ",");
+                            stb.Append("\"appType\":\"JC\",");
+                            stb.Append("\"order_type\":null,");
+                            stb.Append("\"seq\":\"0\",");
+                            stb.Append("\"param\":null,");
+                            stb.Append("\"order_result\":null,");
+                            stb.Append("\"datas\":[{");
+                            stb.Append("\"code\":\"" + row["表地址"] + "01\",");
+                            stb.Append("\"value\":" + row["表读数"] + ",");
+                            stb.Append("\"time\":" + getTimeStamp(Convert.ToDateTime(row["ReviseDT"])) + "");
+
+                            stb.Append("}]");
+                            stb.Append("}");
+                            result = postSend(Config.GetValue("UploadDataUrl"), stb.ToString());
+                            log.Debug("~~~~~~~~~返回result:" + result);
+                            stb.Clear();
+                            if (result.Contains("ok"))
+                            {
+                                sql = "update Bsc_MeterInfo set DataUploadTime='" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'  where  表地址='" + row["表地址"] + "'";
+                                DbHelper.ExecuteNonQuery(sql);
+                                log.Info("上传成功" + row["表地址"]);
+                            }
+                        }
+                        catch (Exception)
+                        {
+                            log.Info("error");
+                        }
+
+                        //dic = JsonConvert.DeserializeObject<Dictionary<String, String>>(result);
+                        //if (dic != null)
+                        //{
+                        //    if (dic["code"] == "1")
+                        //    {
+                               
+                        //    }
+                        //}
+                    }
+
+                }
+                log.Info("定时任务结束了!");
+
+            }
+            catch (Exception ex)
+            {
+                log.Info("出现异常了!"+ex.InnerException);
+                throw;
+            }
+
+
+
+        }
+        /// <summary>
+        /// 自动维护AccessToken
+        /// </summary>
+        public string GetAccessToken() {
+            String GetAccessTokenUrl = Config.GetValue("GetAccessTokenUrl");
+            String param = "";
+            String result = "";
+            try
+            {
+                param = "{\"CompanyCode\":\"" + Config.GetValue("CompanyCode") + "\",\"Userkey\":\"" + Config.GetValue("Userkey") + "\"}";
+                result = postSend(GetAccessTokenUrl, param);
+                Dictionary<String, String> dic = JsonConvert.DeserializeObject<Dictionary<String, String>>(result);
+                if (dic != null && !string.IsNullOrEmpty(dic["Token"]))
+                {
+                    Config.SetValue("Token", dic["Token"]);
+                }
+            
+            }
+            catch (Exception ex)
+            {
+                //重新获取AccessToken
+                param = "{\"CompanyCode\":\"" + Config.GetValue("CompanyCode") + "\",\"Userkey\":\"" + Config.GetValue("Userkey") + "\"";
+                result = postSend(GetAccessTokenUrl, param);
+                Dictionary<String, String> dic = JsonConvert.DeserializeObject<Dictionary<String, String>>(result);
+                if (dic != null && !string.IsNullOrEmpty(dic["Token"]))
+                {
+                    Config.SetValue("Token", dic["Token"]);
+                }
+            }
+            
+            return Config.GetValue("Token");
+
+        }   
+        #endregion
+        #region 请求接口
+        public string postSend(string url, string param)
+        {
+            string strResult = "";
+            Encoding myEncode = Encoding.GetEncoding("UTF-8");
+            byte[] postBytes = Encoding.UTF8.GetBytes(param);
+
+            HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
+            req.Method = "POST";
+            req.ContentType = "application/json;";
+            req.ContentLength = postBytes.Length;
+
+            try
+            {
+                using (Stream reqStream = req.GetRequestStream())
+                {
+                    reqStream.Write(postBytes, 0, postBytes.Length);
+                }
+                using (WebResponse res = req.GetResponse())
+                {
+                    using (StreamReader sr = new StreamReader(res.GetResponseStream(), myEncode))
+                    {
+                        strResult = sr.ReadToEnd();
+                        return strResult;
+                    }
+                }
+            }
+            catch (WebException ex)
+            {
+                log.Error("Post数据出错:" + ex.Message);
+                return "";
+            }
+        }
+        #endregion
+        #region 3DES加密
+        public String encryptThreeDESECB(String text,  String key)
+        {
+            var tripleDESCipher = new TripleDESCryptoServiceProvider();
+            tripleDESCipher.Mode = CipherMode.ECB;
+            tripleDESCipher.Padding = PaddingMode.PKCS7;
+            byte[] pwdBytes = System.Text.Encoding.UTF8.GetBytes(key);
+            byte[] keyBytes = new byte[24];
+            int len = pwdBytes.Length;
+            if (len > keyBytes.Length)
+                len = keyBytes.Length;
+            System.Array.Copy(pwdBytes, keyBytes, len);
+            tripleDESCipher.Key = keyBytes;
+          //  tripleDESCipher.IV = Encoding.ASCII.GetBytes(iv);
+
+            ICryptoTransform transform = tripleDESCipher.CreateEncryptor();
+            byte[] plainText = Encoding.UTF8.GetBytes(text);
+            byte[] cipherBytes = transform.TransformFinalBlock(plainText, 0, plainText.Length);
+            return Convert.ToBase64String(cipherBytes);
+
+        }
+
+        #endregion
+        public String getTimeStamp()
+        { 
+            TimeSpan ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0);
+            return Convert.ToInt64(ts.TotalMilliseconds).ToString();
+        }
+        public String getTimeStamp(DateTime dateTime)
+        {
+            TimeSpan ts = dateTime - new DateTime(1970, 1, 1, 0, 0, 0, 0);
+            return Convert.ToInt64(ts.TotalMilliseconds).ToString();
+        }
+
+    }
+
+
+}
+
+
+
+
+
+#endregion 

+ 45 - 0
TimedUpload/ServiceRunner.cs

@@ -0,0 +1,45 @@
+using Quartz;
+using Quartz.Impl;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Topshelf;
+
+namespace TimedUpload
+{
+    public class ServiceRunner : ServiceControl, ServiceSuspend
+    {
+        private readonly IScheduler scheduler;
+
+        public ServiceRunner()
+        {
+            scheduler = StdSchedulerFactory.GetDefaultScheduler();
+        }
+
+        public bool Start(HostControl hostControl)
+        {
+            scheduler.Start();
+            return true;
+        }
+
+        public bool Stop(HostControl hostControl)
+        {
+            scheduler.Shutdown(false);
+            return true;
+        }
+
+        public bool Continue(HostControl hostControl)
+        {
+            scheduler.ResumeAll();
+            return true;
+        }
+
+        public bool Pause(HostControl hostControl)
+        {
+            scheduler.PauseAll();
+            return true;
+        }
+
+    }
+}

+ 157 - 0
TimedUpload/TimedUpload.csproj

@@ -0,0 +1,157 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{54D76C85-4B6F-44D6-9B95-8B4BB411FC4D}</ProjectGuid>
+    <OutputType>Exe</OutputType>
+    <RootNamespace>TimedUpload</RootNamespace>
+    <AssemblyName>ChargeDataUpload</AssemblyName>
+    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <IsWebBootstrapper>false</IsWebBootstrapper>
+    <PublishUrl>publish\</PublishUrl>
+    <Install>true</Install>
+    <InstallFrom>Disk</InstallFrom>
+    <UpdateEnabled>false</UpdateEnabled>
+    <UpdateMode>Foreground</UpdateMode>
+    <UpdateInterval>7</UpdateInterval>
+    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
+    <UpdatePeriodically>false</UpdatePeriodically>
+    <UpdateRequired>false</UpdateRequired>
+    <MapFileExtensions>true</MapFileExtensions>
+    <ApplicationRevision>0</ApplicationRevision>
+    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
+    <UseApplicationTrust>false</UseApplicationTrust>
+    <BootstrapperEnabled>true</BootstrapperEnabled>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>x86</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>x86</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="aliyun-net-sdk-core">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\aliyun-net-sdk-core.dll</HintPath>
+    </Reference>
+    <Reference Include="aliyun-net-sdk-dybaseapi">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\aliyun-net-sdk-dybaseapi.dll</HintPath>
+    </Reference>
+    <Reference Include="aliyun-net-sdk-dysmsapi">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\aliyun-net-sdk-dysmsapi.dll</HintPath>
+    </Reference>
+    <Reference Include="Aliyun.MNS">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\Aliyun.MNS.dll</HintPath>
+    </Reference>
+    <Reference Include="cn.jpush.api">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\cn.jpush.api.dll</HintPath>
+    </Reference>
+    <Reference Include="Common.Logging, Version=3.3.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\Common.Logging.dll</HintPath>
+    </Reference>
+    <Reference Include="Common.Logging.Core, Version=3.3.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\Common.Logging.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\log4net.dll</HintPath>
+    </Reference>
+    <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\Newtonsoft.Json.dll</HintPath>
+    </Reference>
+    <Reference Include="Quartz, Version=2.6.0.0, Culture=neutral, PublicKeyToken=f6b8c98a402cc8a4, processorArchitecture=MSIL">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\Quartz.dll</HintPath>
+    </Reference>
+    <Reference Include="RDIFramework.Utilities">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\RDIFramework.Utilities.dll</HintPath>
+    </Reference>
+    <Reference Include="System" />
+    <Reference Include="System.configuration" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Web" />
+    <Reference Include="System.Web.Extensions" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="Microsoft.CSharp" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Xml" />
+    <Reference Include="Topshelf">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\Topshelf.dll</HintPath>
+    </Reference>
+    <Reference Include="Topshelf.Log4Net">
+      <HintPath>..\..\TimedUpload\TimedUpload\bin\Debug\Topshelf.Log4Net.dll</HintPath>
+    </Reference>
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Program.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+    <Compile Include="QuartzJobs\DataUploadJob.cs" />
+    <Compile Include="ServiceRunner.cs" />
+    <Compile Include="utils\Config.cs" />
+    <Compile Include="utils\WebHelper.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="app.config">
+      <SubType>Designer</SubType>
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+    </None>
+    <None Include="job_scheduling_data_2_0.xsd">
+      <SubType>Designer</SubType>
+    </None>
+    <None Include="log4net.config">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+      <SubType>Designer</SubType>
+    </None>
+    <None Include="packages.config" />
+    <None Include="quartz.config">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+      <SubType>Designer</SubType>
+    </None>
+  </ItemGroup>
+  <ItemGroup>
+    <Content Include="quartz_jobs.xml">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+      <SubType>Designer</SubType>
+    </Content>
+  </ItemGroup>
+  <ItemGroup>
+    <BootstrapperPackage Include=".NETFramework,Version=v4.0">
+      <Visible>False</Visible>
+      <ProductName>Microsoft .NET Framework 4 %28x86 和 x64%29</ProductName>
+      <Install>true</Install>
+    </BootstrapperPackage>
+    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
+      <Visible>False</Visible>
+      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
+      <Install>false</Install>
+    </BootstrapperPackage>
+    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
+      <Visible>False</Visible>
+      <ProductName>.NET Framework 3.5 SP1</ProductName>
+      <Install>false</Install>
+    </BootstrapperPackage>
+    <BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
+      <Visible>False</Visible>
+      <ProductName>Windows Installer 4.5</ProductName>
+      <Install>true</Install>
+    </BootstrapperPackage>
+  </ItemGroup>
+  <ItemGroup>
+    <Folder Include="Model\" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+</Project>

+ 43 - 0
TimedUpload/app.config

@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+  <appSettings>
+    <!--数据同步参数-->
+    <add key="DbConn" value="Data Source=60.205.104.179;Initial Catalog=广州南粤市政;uid=sdwwkj;password=$$wwkj@yanfa" />
+    <add key="UploadDataUrl" value="http://59.37.13.29:9997/updata.api"/>
+    <add key="appId" value="00040" />
+    <add key="Userkey" value="334020171058533420221111" />
+    <add key="CompanyId" value="c6b3b94e-ac5d-4ca1-a185-078a495a87ec"/>
+    <add key="size" value="2000" />
+    <add key="uploadTime" value="2020/07/20 16:26:00" />
+   
+    <!--公司ID-->
+  
+    <add key="serverName" value="广州南粤市政数据对接" />
+    
+    <add key="ClientSettingsProvider.ServiceUri" value="" />
+  </appSettings>
+  <runtime>
+    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+      <dependentAssembly>
+        <assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-2.0.8.0" newVersion="2.0.8.0" />
+      </dependentAssembly>
+      <dependentAssembly>
+        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
+      </dependentAssembly>
+    </assemblyBinding>
+  </runtime>
+  <system.web>
+    <membership defaultProvider="ClientAuthenticationMembershipProvider">
+      <providers>
+        <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
+      </providers>
+    </membership>
+    <roleManager defaultProvider="ClientRoleProvider" enabled="true">
+      <providers>
+        <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
+      </providers>
+    </roleManager>
+  </system.web>
+</configuration>

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 364 - 0
TimedUpload/job_scheduling_data_2_0.xsd


+ 53 - 0
TimedUpload/log4net.config

@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+  <configSections>
+    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
+  </configSections>
+
+  <log4net>
+    <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
+      <!--日志路径-->
+      <param name= "File" value= "./logs/"/>
+      <!--是否是向文件中追加日志-->
+      <param name= "AppendToFile" value= "true"/>
+      <!--log保留天数-->
+      <param name= "MaxSizeRollBackups" value= "10"/>
+      <!--日志文件名是否是固定不变的-->
+      <param name= "StaticLogFileName" value= "false"/>
+      <!--日志文件名格式为:2008-08-31.log-->
+      <param name= "DatePattern" value= "yyyy-MM-dd&quot;.read.log&quot;"/>
+      <!--日志根据日期滚动-->
+      <param name= "RollingStyle" value= "Date"/>
+      <layout type="log4net.Layout.PatternLayout">
+        <param name="ConversionPattern" value="%d [%t] %-5p %c - %m%n %loggername" />
+      </layout>
+    </appender>
+
+    <!-- 控制台前台显示日志 -->
+    <appender name="ColoredConsoleAppender" type="log4net.Appender.ColoredConsoleAppender">
+      <mapping>
+        <level value="ERROR" />
+        <foreColor value="Red, HighIntensity" />
+      </mapping>
+      <mapping>
+        <level value="Info" />
+        <foreColor value="Green" />
+      </mapping>
+      <layout type="log4net.Layout.PatternLayout">
+        <conversionPattern value="%n%date{HH:mm:ss,fff} [%-5level] %m" />
+      </layout>
+
+      <filter type="log4net.Filter.LevelRangeFilter">
+        <param name="LevelMin" value="Info" />
+        <param name="LevelMax" value="Fatal" />
+      </filter>
+    </appender>
+
+    <root>
+      <!--(高) OFF > FATAL > ERROR > WARN > INFO > DEBUG > ALL (低) -->
+      <level value="all" />
+      <appender-ref ref="ColoredConsoleAppender"/>
+      <appender-ref ref="RollingLogFileAppender"/>
+    </root>
+  </log4net>
+</configuration>

+ 8 - 0
TimedUpload/packages.config

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+  <package id="Common.Logging" version="3.3.1" targetFramework="net40" />
+  <package id="Common.Logging.Core" version="3.3.1" targetFramework="net40" />
+  <package id="log4net" version="2.0.8" targetFramework="net40" />
+  <package id="Newtonsoft.Json" version="10.0.3" targetFramework="net40" />
+  <package id="Quartz" version="2.6.0" targetFramework="net40" />
+</packages>

+ 21 - 0
TimedUpload/quartz.config

@@ -0,0 +1,21 @@
+# You can configure your scheduler in either <quartz> configuration section
+# or in quartz properties file
+# Configuration section has precedence
+
+quartz.scheduler.instanceName = QuartzTest
+
+# configure thread pool info
+quartz.threadPool.type = Quartz.Simpl.SimpleThreadPool, Quartz
+quartz.threadPool.threadCount = 10
+quartz.threadPool.threadPriority = Normal
+
+# job initialization plugin handles our xml reading, without it defaults are used
+quartz.plugin.xml.type = Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz
+quartz.plugin.xml.fileNames = ~/quartz_jobs.xml
+
+# export this server to remoting context
+#quartz.scheduler.exporter.type = Quartz.Simpl.RemotingSchedulerExporter, Quartz
+#quartz.scheduler.exporter.port = 555
+#quartz.scheduler.exporter.bindName = QuartzScheduler
+#quartz.scheduler.exporter.channelType = tcp
+#quartz.scheduler.exporter.channelName = httpQuartz

+ 33 - 0
TimedUpload/quartz_jobs.xml

@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- This file contains job definitions in schema version 2.0 format -->
+
+<job-scheduling-data xmlns="http://quartznet.sourceforge.net/JobSchedulingData" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0">
+
+  <processing-directives>
+    <overwrite-existing-data>true</overwrite-existing-data>
+  </processing-directives>
+
+  <schedule>
+
+    <!--淮安数据定时上报-->
+    <job>
+      <name>DataUploadJob</name>
+      <group>DataUpload</group>
+      <description>数据定时上传服务</description>
+      <job-type>TimedUpload.QuartzJobs.DataUploadJob,ChargeDataUpload</job-type>
+      <durable>true</durable>
+      <recover>false</recover>
+    </job>
+    <trigger>
+      <cron>
+        <name>DataUploadJobTrigger</name>
+        <group>DataUpload</group>
+        <job-name>DataUploadJob</job-name>
+        <job-group>DataUpload</job-group>
+        <start-time>2018-05-30T00:00:00+08:00</start-time>
+        <cron-expression>0 45 23 * * ?</cron-expression>
+      </cron>
+    </trigger>
+  </schedule>
+</job-scheduling-data>

+ 33 - 0
TimedUpload/utils/Config.cs

@@ -0,0 +1,33 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Linq;
+using System.Text;
+using System.Web;
+
+namespace TimedUpload
+{
+    public class Config
+    {
+        /// <summary>
+        /// 根据Key取Value值
+        /// </summary>
+        /// <param name="key"></param>
+        public static string GetValue(string key)
+        {
+            return ConfigurationManager.AppSettings[key].ToString().Trim();
+        }
+        /// <summary>
+        /// 根据Key修改Value
+        /// </summary>
+        /// <param name="key">要修改的Key</param>
+        /// <param name="value">要修改为的值</param>
+        public static void SetValue(string key, string value)
+        {
+            var cfg = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
+            cfg.AppSettings.Settings[key].Value = value;
+            cfg.Save();
+            ConfigurationManager.RefreshSection("appSettings");
+        }
+    }
+}

+ 636 - 0
TimedUpload/utils/WebHelper.cs

@@ -0,0 +1,636 @@
+using System.Collections.Generic;
+using System.IO;
+using System.Net;
+using System.Text;
+using System.Web;
+
+using System;
+using System.Text.RegularExpressions;
+using System.Web.SessionState;
+using System.Net.Security;
+using System.Security.Cryptography.X509Certificates;
+
+namespace LeaRun.Util
+{
+    /// <summary>
+    /// Web操作
+    /// </summary>
+    public static class WebHelper
+    {
+        #region Host(获取主机名)
+
+        /// <summary>
+        /// 获取主机名,即域名,
+        /// 范例:用户输入网址http://www.a.com/b.htm?a=1&amp;b=2,
+        /// 返回值为: www.a.com
+        /// </summary>
+        public static string Host
+        {
+            get
+            {
+                return HttpContext.Current.Request.Url.Host;
+            }
+        }
+        #endregion
+
+        #region ResolveUrl(解析相对Url)
+
+        /// <summary>
+        /// 解析相对Url
+        /// </summary>
+        /// <param name="relativeUrl">相对Url</param>
+        public static string ResolveUrl(string relativeUrl)
+        {
+            if (string.IsNullOrWhiteSpace(relativeUrl))
+                return string.Empty;
+            relativeUrl = relativeUrl.Replace("\\", "/");
+            if (relativeUrl.StartsWith("/"))
+                return relativeUrl;
+            if (relativeUrl.Contains("://"))
+                return relativeUrl;
+            return VirtualPathUtility.ToAbsolute(relativeUrl);
+        }
+
+        #endregion
+
+        #region HtmlEncode(对html字符串进行编码)
+
+        /// <summary>
+        /// 对html字符串进行编码
+        /// </summary>
+        /// <param name="html">html字符串</param>
+        public static string HtmlEncode(string html)
+        {
+            return HttpUtility.HtmlEncode(html);
+        }
+        /// <summary>
+        /// 对html字符串进行解码
+        /// </summary>
+        /// <param name="html">html字符串</param>
+        public static string HtmlDecode(string html)
+        {
+            return HttpUtility.HtmlDecode(html);
+        }
+
+        #endregion
+
+        #region UrlEncode(对Url进行编码)
+
+        /// <summary>
+        /// 对Url进行编码
+        /// </summary>
+        /// <param name="url">url</param>
+        /// <param name="isUpper">编码字符是否转成大写,范例,"http://"转成"http%3A%2F%2F"</param>
+        public static string UrlEncode(string url, bool isUpper = false)
+        {
+            return UrlEncode(url, Encoding.UTF8, isUpper);
+        }
+
+        /// <summary>
+        /// 对Url进行编码
+        /// </summary>
+        /// <param name="url">url</param>
+        /// <param name="encoding">字符编码</param>
+        /// <param name="isUpper">编码字符是否转成大写,范例,"http://"转成"http%3A%2F%2F"</param>
+        public static string UrlEncode(string url, Encoding encoding, bool isUpper = false)
+        {
+            var result = HttpUtility.UrlEncode(url, encoding);
+            if (!isUpper)
+                return result;
+            return GetUpperEncode(result);
+        }
+
+        /// <summary>
+        /// 获取大写编码字符串
+        /// </summary>
+        private static string GetUpperEncode(string encode)
+        {
+            var result = new StringBuilder();
+            int index = int.MinValue;
+            for (int i = 0; i < encode.Length; i++)
+            {
+                string character = encode[i].ToString();
+                if (character == "%")
+                    index = i;
+                if (i - index == 1 || i - index == 2)
+                    character = character.ToUpper();
+                result.Append(character);
+            }
+            return result.ToString();
+        }
+
+        #endregion
+
+        #region UrlDecode(对Url进行解码)
+
+        /// <summary>
+        /// 对Url进行解码,对于javascript的encodeURIComponent函数编码参数,应使用utf-8字符编码来解码
+        /// </summary>
+        /// <param name="url">url</param>
+        public static string UrlDecode(string url)
+        {
+            return HttpUtility.UrlDecode(url);
+        }
+
+        /// <summary>
+        /// 对Url进行解码,对于javascript的encodeURIComponent函数编码参数,应使用utf-8字符编码来解码
+        /// </summary>
+        /// <param name="url">url</param>
+        /// <param name="encoding">字符编码,对于javascript的encodeURIComponent函数编码参数,应使用utf-8字符编码来解码</param>
+        public static string UrlDecode(string url, Encoding encoding)
+        {
+            return HttpUtility.UrlDecode(url, encoding);
+        }
+
+        #endregion
+
+        #region Session操作
+        /// <summary>
+        /// 写Session
+        /// </summary>
+        /// <typeparam name="T">Session键值的类型</typeparam>
+        /// <param name="key">Session的键名</param>
+        /// <param name="value">Session的键值</param>
+        public static void WriteSession<T>(string key, T value)
+        {
+            //if (key.IsEmpty())
+            //    return;
+            HttpContext.Current.Session[key] = value;
+            HttpContext.Current.Session.Timeout = 60;//设置默认的时间60分钟
+        }
+
+        /// <summary>
+        /// 写Session
+        /// </summary>
+        /// <param name="key">Session的键名</param>
+        /// <param name="value">Session的键值</param>
+        public static void WriteSession(string key, string value)
+        {
+            WriteSession<string>(key, value);
+        }
+
+        /// <summary>
+        /// 读取Session的值
+        /// </summary>
+        /// <param name="key">Session的键名</param>        
+        public static string GetSession(string key)
+        {
+            //if (key.IsEmpty())
+            //    return string.Empty;
+            if (HttpContext.Current.Session[key] != null)
+                return HttpContext.Current.Session[key] as string;
+            else
+                return "";
+        }
+        /// <summary>
+        /// 删除指定Session
+        /// </summary>
+        /// <param name="key">Session的键名</param>
+        public static void RemoveSession(string key)
+        {
+            //if (key.IsEmpty())
+            //    return;
+            HttpContext.Current.Session.Contents.Remove(key);
+        }
+
+        #endregion
+
+        #region Cookie操作
+        /// <summary>
+        /// 写cookie值
+        /// </summary>
+        /// <param name="strName">名称</param>
+        /// <param name="strValue">值</param>
+        public static void WriteCookie(string strName, string strValue)
+        {
+            HttpCookie cookie = HttpContext.Current.Request.Cookies[strName];
+            if (cookie == null)
+            {
+                cookie = new HttpCookie(strName);
+            }
+            cookie.Value = strValue;
+            HttpContext.Current.Response.AppendCookie(cookie);
+        }
+        /// <summary>
+        /// 写cookie值
+        /// </summary>
+        /// <param name="strName">名称</param>
+        /// <param name="strValue">值</param>
+        /// <param name="strValue">过期时间(分钟)</param>
+        public static void WriteCookie(string strName, string strValue, int expires)
+        {
+            HttpCookie cookie = HttpContext.Current.Request.Cookies[strName];
+            if (cookie == null)
+            {
+                cookie = new HttpCookie(strName);
+            }
+            cookie.Value = strValue;
+            cookie.Expires = DateTime.Now.AddMinutes(expires);
+            HttpContext.Current.Response.AppendCookie(cookie);
+        }
+        /// <summary>
+        /// 读cookie值
+        /// </summary>
+        /// <param name="strName">名称</param>
+        /// <returns>cookie值</returns>
+        public static string GetCookie(string strName)
+        {
+            if (HttpContext.Current.Request.Cookies != null && HttpContext.Current.Request.Cookies[strName] != null)
+            {
+                return HttpContext.Current.Request.Cookies[strName].Value.ToString();
+            }
+            return "";
+        }
+        /// <summary>
+        /// 删除Cookie对象
+        /// </summary>
+        /// <param name="CookiesName">Cookie对象名称</param>
+        public static void RemoveCookie(string CookiesName)
+        {
+            HttpCookie objCookie = new HttpCookie(CookiesName.Trim());
+            objCookie.Expires = DateTime.Now.AddYears(-5);
+            HttpContext.Current.Response.Cookies.Add(objCookie);
+        }
+        #endregion
+
+        #region GetFileControls(获取客户端文件控件集合)
+
+        /// <summary>
+        /// 获取有效客户端文件控件集合,文件控件必须上传了内容,为空将被忽略,
+        /// 注意:Form标记必须加入属性 enctype="multipart/form-data",服务器端才能获取客户端file控件.
+        /// </summary>
+        public static List<HttpPostedFile> GetFileControls()
+        {
+            var result = new List<HttpPostedFile>();
+            var files = HttpContext.Current.Request.Files;
+            if (files.Count == 0)
+                return result;
+            for (int i = 0; i < files.Count; i++)
+            {
+                var file = files[i];
+                if (file.ContentLength == 0)
+                    continue;
+                result.Add(files[i]);
+            }
+            return result;
+        }
+
+        #endregion
+
+        #region GetFileControl(获取第一个有效客户端文件控件)
+
+        /// <summary>
+        /// 获取第一个有效客户端文件控件,文件控件必须上传了内容,为空将被忽略,
+        /// 注意:Form标记必须加入属性 enctype="multipart/form-data",服务器端才能获取客户端file控件.
+        /// </summary>
+        public static HttpPostedFile GetFileControl()
+        {
+            var files = GetFileControls();
+            if (files == null || files.Count == 0)
+                return null;
+            return files[0];
+        }
+
+        #endregion
+
+        #region HttpWebRequest(请求网络资源)
+
+        /// <summary>
+        /// 请求网络资源,返回响应的文本
+        /// </summary>
+        /// <param name="url">网络资源地址</param>
+        public static string HttpWebRequest(string url)
+        {
+            return HttpWebRequest(url, string.Empty, Encoding.GetEncoding("utf-8"));
+        }
+
+        /// <summary>
+        /// 请求网络资源,返回响应的文本
+        /// </summary>
+        /// <param name="url">网络资源Url地址</param>
+        /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
+        public static string HttpWebRequest(string url, string parameters)
+        {
+            return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), "POST");
+        }
+
+        /// <summary>
+        /// 请求网络资源,返回响应的文本
+        /// </summary>
+        /// <param name="url">网络资源Url地址</param>
+        /// <param name="parameters"></param>
+        public static string HttpWebRequest(string url, string parameters, string contentType, string Authorization, string app_key)
+        {
+            return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), "POST", contentType, Authorization, app_key);
+        }
+
+        /// <summary>
+        /// 请求网络资源,返回响应的文本
+        /// </summary>
+        /// <param name="url">网络资源Url地址</param>
+        /// <param name="parameters"></param>
+        public static string HttpWebRequest(string url, string parameters, string mehtod, string contentType, string Authorization, string app_key)
+        {
+            return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), mehtod, contentType, Authorization, app_key);
+        }
+
+        /// <summary>
+        /// 请求网络资源,返回响应的文本
+        /// </summary>
+        /// <param name="url">网络资源地址</param>
+        /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
+        /// <param name="encoding">字符编码</param>
+        /// <param name="isPost">是否Post提交</param>
+        /// <param name="contentType">内容类型</param>
+        /// <param name="cookie">Cookie容器</param>
+        /// <param name="timeout">超时时间</param>
+        public static string HttpWebRequest(string url, string parameters, Encoding encoding, string mehtod = "POST",
+             string contentType = "application/x-www-form-urlencoded", string Authorization = null, string app_key = null, CookieContainer cookie = null, int timeout = 120000)
+        {
+            HttpWebRequest request = null;
+            try
+            {
+                //如果是发送HTTPS请求  
+                if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
+                {
+                    //ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;
+                    //ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
+                    ////X509Certificate cerCaiShang = new X509Certificate(System.Web.HttpContext.Current.Server.MapPath(Config.GetValue("NB_PfxPath")), Config.GetValue("NB_PfxKey"));
+                    ////X509Certificate2 cerCaiShang = GetSentosaCertificate();
+                    //X509Certificate2 cerCaiShang = new X509Certificate2(Config.GetValue("NB_PfxPath"), Config.GetValue("NB_PfxKey"));
+                    //request = WebRequest.Create(url) as HttpWebRequest;
+                    //request.ClientCertificates.Add(cerCaiShang);
+                    //request.ProtocolVersion = HttpVersion.Version10;
+                }
+                else
+                {
+                    request = WebRequest.Create(url) as HttpWebRequest;
+                }
+
+                request.Timeout = timeout;
+                if (!string.IsNullOrEmpty(Authorization))
+                {
+                    request.Headers["Authorization"] = Authorization;
+                }
+                if (!string.IsNullOrEmpty(app_key))
+                {
+                    request.Headers["app_key"] = app_key;
+                }
+                request.CookieContainer = cookie;
+                request.ContentType = contentType;
+                request.Method = mehtod;
+                if (mehtod == "POST")
+                {
+                    byte[] postData = encoding.GetBytes(parameters);
+                    request.Method = "POST";
+                    request.ContentType = contentType;
+                    request.ContentLength = postData.Length;
+                    using (Stream stream = request.GetRequestStream())
+                    {
+                        stream.Write(postData, 0, postData.Length);
+                    }
+                }
+                if (mehtod == "PUT")
+                {
+                    using (StreamWriter requestStream = new StreamWriter(request.GetRequestStream()))
+                    {
+                        requestStream.Write(parameters);
+                    }
+                }
+
+                var response = (HttpWebResponse)request.GetResponse();
+                string result;
+                using (Stream stream = response.GetResponseStream())
+                {
+                    if (stream == null)
+                        return string.Empty;
+                    using (var reader = new StreamReader(stream, encoding))
+                    {
+                        result = reader.ReadToEnd();
+                    }
+                }
+                return result;
+            }
+            catch (Exception ex)
+            {
+                throw ex;
+            }
+        }
+
+        private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
+        {
+            return true;
+        }
+        private static X509Certificate2 GetSentosaCertificate()
+        {
+            X509Store userCaStore = new X509Store(StoreName.My, StoreLocation.LocalMachine);
+            try
+            {
+                userCaStore.Open(OpenFlags.ReadOnly);
+                X509Certificate2Collection certificatesInStore = userCaStore.Certificates;
+                X509Certificate2Collection findResult = certificatesInStore.Find(X509FindType.FindBySubjectName, "server", true);
+                X509Certificate2 clientCertificate = null;
+                if (findResult.Count == 1)
+                {
+                    clientCertificate = findResult[0];
+                }
+                else
+                {
+                    throw new Exception("Unable to locate the correct client certificate.");
+                }
+                return clientCertificate;
+            }
+            catch
+            {
+                throw;
+            }
+            finally
+            {
+                userCaStore.Close();
+            }
+        }
+        #endregion
+
+        #region 去除HTML标记
+        /// <summary>
+        /// 去除HTML标记
+        /// </summary>
+        /// <param name="NoHTML">包括HTML的源码 </param>
+        /// <returns>已经去除后的文字</returns>
+        public static string NoHtml(string Htmlstring)
+        {
+            //删除脚本
+            Htmlstring = Regex.Replace(Htmlstring, @"<script[^>]*?>.*?</script>", "", RegexOptions.IgnoreCase);
+            //删除HTML
+            Htmlstring = Regex.Replace(Htmlstring, @"<(.[^>]*)>", "", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"([\r\n])[\s]+", "", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"-->", "", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"<!--.*", "", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(quot|#34);", "\"", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(amp|#38);", "&", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(lt|#60);", "<", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(gt|#62);", ">", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(nbsp|#160);", " ", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(iexcl|#161);", "\xa1", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(cent|#162);", "\xa2", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(pound|#163);", "\xa3", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&(copy|#169);", "\xa9", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&#(\d+);", "", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&hellip;", "", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&mdash;", "", RegexOptions.IgnoreCase);
+            Htmlstring = Regex.Replace(Htmlstring, @"&ldquo;", "", RegexOptions.IgnoreCase);
+            Htmlstring.Replace("<", "");
+            Htmlstring = Regex.Replace(Htmlstring, @"&rdquo;", "", RegexOptions.IgnoreCase);
+            Htmlstring.Replace(">", "");
+            Htmlstring.Replace("\r\n", "");
+            Htmlstring = HttpContext.Current.Server.HtmlEncode(Htmlstring).Trim();
+            return Htmlstring;
+
+        }
+        #endregion
+
+        #region 格式化文本(防止SQL注入)
+        /// <summary>
+        /// 格式化文本(防止SQL注入)
+        /// </summary>
+        /// <param name="str"></param>
+        /// <returns></returns>
+        public static string Formatstr(string html)
+        {
+            System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"<script[\s\S]+</script *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            System.Text.RegularExpressions.Regex regex2 = new System.Text.RegularExpressions.Regex(@" href *= *[\s\S]*script *:", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            System.Text.RegularExpressions.Regex regex3 = new System.Text.RegularExpressions.Regex(@" on[\s\S]*=", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            System.Text.RegularExpressions.Regex regex4 = new System.Text.RegularExpressions.Regex(@"<iframe[\s\S]+</iframe *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            System.Text.RegularExpressions.Regex regex5 = new System.Text.RegularExpressions.Regex(@"<frameset[\s\S]+</frameset *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            System.Text.RegularExpressions.Regex regex10 = new System.Text.RegularExpressions.Regex(@"select", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            System.Text.RegularExpressions.Regex regex11 = new System.Text.RegularExpressions.Regex(@"update", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            System.Text.RegularExpressions.Regex regex12 = new System.Text.RegularExpressions.Regex(@"delete", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            html = regex1.Replace(html, ""); //过滤<script></script>标记
+            html = regex2.Replace(html, ""); //过滤href=javascript: (<A>) 属性
+            html = regex3.Replace(html, " _disibledevent="); //过滤其它控件的on...事件
+            html = regex4.Replace(html, ""); //过滤iframe
+            html = regex10.Replace(html, "s_elect");
+            html = regex11.Replace(html, "u_pudate");
+            html = regex12.Replace(html, "d_elete");
+            html = html.Replace("'", "’");
+            html = html.Replace("&nbsp;", " ");
+            return html;
+        }
+        #endregion
+
+
+
+        #region  根据OneNet平台的鉴权修改Http请求
+        /// <summary>
+        /// 请求网络资源,返回响应的文本
+        /// </summary>
+        /// <param name="url">网络资源地址</param>
+        /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
+        /// <param name="encoding">字符编码</param>
+        /// <param name="isPost">是否Post提交</param>
+        /// <param name="contentType">内容类型</param>
+        /// <param name="cookie">Cookie容器</param>
+        /// <param name="timeout">超时时间</param>
+        public static string HttpWebRequest_oneNet(string url, string parameters, Encoding encoding, string mehtod = "POST",
+             string contentType = "application/x-www-form-urlencoded", string Authorization = null, string api_key = null, CookieContainer cookie = null, int timeout = 120000)
+        {
+            mehtod = mehtod.ToUpper();
+            HttpWebRequest request = null;
+            try
+            {
+                //如果是发送HTTPS请求  
+                if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
+                {
+                    //ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;
+                    //ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
+                    ////X509Certificate cerCaiShang = new X509Certificate(System.Web.HttpContext.Current.Server.MapPath(Config.GetValue("NB_PfxPath")), Config.GetValue("NB_PfxKey"));
+                    ////X509Certificate2 cerCaiShang = GetSentosaCertificate();
+                    //X509Certificate2 cerCaiShang = new X509Certificate2(Config.GetValue("NB_PfxPath"), Config.GetValue("NB_PfxKey"));
+                    //request = WebRequest.Create(url) as HttpWebRequest;
+                    //request.ClientCertificates.Add(cerCaiShang);
+                    //request.ProtocolVersion = HttpVersion.Version10;
+                }
+                else
+                {
+                    request = WebRequest.Create(url) as HttpWebRequest;
+                }
+
+                request.Timeout = timeout;
+                if (!string.IsNullOrEmpty(Authorization))
+                {
+                    request.Headers["Authorization"] = Authorization;
+                }
+                if (!string.IsNullOrEmpty(api_key))
+                {
+                    request.Headers["api-key"] = api_key;
+                }
+                request.CookieContainer = cookie;
+                request.ContentType = contentType;
+                request.Method = mehtod;
+                if (mehtod == "POST")
+                {
+                    byte[] postData = encoding.GetBytes(parameters);
+                    request.Method = "POST";
+                    request.ContentType = contentType;
+                    request.ContentLength = postData.Length;
+                    using (Stream stream = request.GetRequestStream())
+                    {
+                        stream.Write(postData, 0, postData.Length);
+                    }
+                }
+                if (mehtod == "PUT")
+                {
+                    using (StreamWriter requestStream = new StreamWriter(request.GetRequestStream()))
+                    {
+                        requestStream.Write(parameters);
+                    }
+                }
+
+                var response = (HttpWebResponse)request.GetResponse();
+                string result;
+                using (Stream stream = response.GetResponseStream())
+                {
+                    if (stream == null)
+                        return string.Empty;
+                    using (var reader = new StreamReader(stream, encoding))
+                    {
+                        result = reader.ReadToEnd();
+                    }
+                }
+                return result;
+            }
+            catch (Exception ex)
+            {
+                return "接口调用错误";
+            }
+        }
+
+
+        /// <summary>
+        /// 请求网络资源,返回响应的文本 HttpWebRequest_oneNet(string url, string parameters, string mehtod, string contentType, string Authorization, string api_key)
+        /// </summary>
+        /// <param name="url">请求地址</param>
+        /// <param name="parameters">参数</param>
+        /// <param name="mehtod">请求方式</param>
+        /// <param name="contentType"></param>
+        /// <param name="Authorization"></param>
+        /// <param name="api_key"></param>
+        /// <returns></returns>
+        //public static string HttpWebRequest_oneNet(string url, string parameters, string mehtod, string contentType, string Authorization, string api_key)
+        //{
+        //    if (api_key == null)
+        //    {
+        //        api_key = Config.GetValue("APIkey");
+        //    }
+        //    return HttpWebRequest_oneNet(url, parameters, Encoding.GetEncoding("utf-8"), mehtod, contentType, Authorization, api_key);
+        //}
+
+
+
+        #endregion
+
+
+
+    }
+
+}