|
|
@@ -1,4 +1,4 @@
|
|
1
|
|
-<?xml version="1.0"?>
|
|
|
1
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
2
|
<!--
|
|
3
|
3
|
For more information on how to configure your ASP.NET application, please visit
|
|
4
|
4
|
http://go.microsoft.com/fwlink/?LinkId=301880
|
|
|
@@ -6,25 +6,27 @@
|
|
6
|
6
|
<configuration>
|
|
7
|
7
|
<configSections>
|
|
8
|
8
|
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
9
|
|
- <section name="CallCenterApi.Interface.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
|
|
|
9
|
+ <section name="CallCenterApi.Interface.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
|
10
|
10
|
</sectionGroup>
|
|
11
|
11
|
</configSections>
|
|
12
|
12
|
<appSettings>
|
|
13
|
|
- <add key="webpages:Version" value="3.0.0.0"/>
|
|
14
|
|
- <add key="webpages:Enabled" value="false"/>
|
|
15
|
|
- <add key="ClientValidationEnabled" value="true"/>
|
|
16
|
|
- <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
|
|
17
|
|
- <add key="DESKey" value="123456789"/>
|
|
|
13
|
+ <add key="webpages:Version" value="3.0.0.0" />
|
|
|
14
|
+ <add key="webpages:Enabled" value="false" />
|
|
|
15
|
+ <add key="ClientValidationEnabled" value="true" />
|
|
|
16
|
+ <add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
|
|
17
|
+ <add key="DESKey" value="123456789" />
|
|
18
|
18
|
<!--中鑫之宝短信配置-->
|
|
19
|
|
- <add key="smsurl" value="http://api.1086sms.com/api/"/>
|
|
20
|
|
- <add key="smsusername" value="zxzb"/>
|
|
21
|
|
- <add key="smspassword" value="zxzb123"/>
|
|
22
|
|
- <add key="smssign" value="中鑫之宝"/>
|
|
|
19
|
+ <add key="smsurl" value="http://api.1086sms.com/api/" />
|
|
|
20
|
+ <add key="smsusername" value="zxzb" />
|
|
|
21
|
+ <add key="smspassword" value="zxzb123" />
|
|
|
22
|
+ <add key="smssign" value="中鑫之宝" />
|
|
23
|
23
|
</appSettings>
|
|
24
|
24
|
<connectionStrings>
|
|
25
|
25
|
<!--<add name="ConnectionString" connectionString="Data Source=192.168.4.18;User ID=sa;pwd=800100;Initial Catalog=SQ12345;"/>-->
|
|
26
|
26
|
<!--<add name="ConnectionString" connectionString="Data Source=192.168.8.3;User ID=sa;pwd=800100;Initial Catalog=SQ12345;"/>-->
|
|
27
|
|
- <add name="ConnectionString" connectionString="Data Source=192.168.8.3;User ID=sa;pwd=800100;Initial Catalog=Gongyi_12345;"/>
|
|
|
27
|
+ <add name="ConnectionString" connectionString="Data Source=192.168.1.36;User ID=sa;pwd=hykj800100;Initial Catalog=Gongyiyq_12345;" />
|
|
|
28
|
+
|
|
|
29
|
+
|
|
28
|
30
|
</connectionStrings>
|
|
29
|
31
|
<!--
|
|
30
|
32
|
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。
|
|
|
@@ -37,58 +39,81 @@
|
|
37
|
39
|
|
|
38
|
40
|
<runtime>
|
|
39
|
41
|
<AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false;Switch.System.IO.BlockLongPaths=false" />
|
|
|
42
|
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
43
|
+ <dependentAssembly>
|
|
|
44
|
+ <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="neutral" />
|
|
|
45
|
+ <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
|
|
|
46
|
+ </dependentAssembly>
|
|
|
47
|
+ <dependentAssembly>
|
|
|
48
|
+ <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
|
|
49
|
+ <bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
|
|
|
50
|
+ </dependentAssembly>
|
|
|
51
|
+ <dependentAssembly>
|
|
|
52
|
+ <assemblyIdentity name="SuperSocket.SocketBase" publicKeyToken="6c80000676988ebb" culture="neutral" />
|
|
|
53
|
+ <bindingRedirect oldVersion="0.0.0.0-1.6.0.4" newVersion="1.6.0.4" />
|
|
|
54
|
+ </dependentAssembly>
|
|
|
55
|
+ <dependentAssembly>
|
|
|
56
|
+ <assemblyIdentity name="SuperSocket.Common" publicKeyToken="6c80000676988ebb" culture="neutral" />
|
|
|
57
|
+ <bindingRedirect oldVersion="0.0.0.0-1.6.0.4" newVersion="1.6.0.4" />
|
|
|
58
|
+ </dependentAssembly>
|
|
|
59
|
+ <dependentAssembly>
|
|
|
60
|
+ <assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
|
|
|
61
|
+ <bindingRedirect oldVersion="0.0.0.0-2.0.7.0" newVersion="2.0.7.0" />
|
|
|
62
|
+ </dependentAssembly>
|
|
|
63
|
+ </assemblyBinding>
|
|
|
64
|
+
|
|
40
|
65
|
</runtime>
|
|
41
|
66
|
|
|
42
|
67
|
<system.web>
|
|
43
|
|
- <compilation debug="true" targetFramework="4.6.1"/>
|
|
44
|
|
- <httpRuntime maxRequestLength="20971520" executionTimeout="3600"/>
|
|
|
68
|
+ <compilation debug="true" targetFramework="4.5" />
|
|
|
69
|
+ <httpRuntime maxRequestLength="20971520" executionTimeout="3600" />
|
|
45
|
70
|
<httpModules>
|
|
46
|
|
- <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web"/>
|
|
|
71
|
+ <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
|
|
47
|
72
|
</httpModules>
|
|
48
|
73
|
<authentication>
|
|
49
|
|
- <forms name=".MyCookie" cookieless="UseCookies" loginUrl="/Login/login" protection="All" timeout="60"/>
|
|
|
74
|
+ <forms name=".MyCookie" cookieless="UseCookies" loginUrl="/Login/login" protection="All" timeout="60" />
|
|
50
|
75
|
</authentication>
|
|
51
|
|
- <pages controlRenderingCompatibilityVersion="4.0"/>
|
|
|
76
|
+ <pages controlRenderingCompatibilityVersion="4.0" />
|
|
52
|
77
|
</system.web>
|
|
53
|
78
|
<runtime>
|
|
54
|
79
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
55
|
80
|
<dependentAssembly>
|
|
56
|
|
- <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
|
|
57
|
|
- <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
|
|
81
|
+ <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
|
|
|
82
|
+ <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
|
58
|
83
|
</dependentAssembly>
|
|
59
|
84
|
<dependentAssembly>
|
|
60
|
|
- <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
|
|
61
|
|
- <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
|
|
85
|
+ <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
|
|
|
86
|
+ <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
|
62
|
87
|
</dependentAssembly>
|
|
63
|
88
|
<dependentAssembly>
|
|
64
|
|
- <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
|
|
65
|
|
- <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
|
|
|
89
|
+ <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
|
|
90
|
+ <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
|
|
66
|
91
|
</dependentAssembly>
|
|
67
|
92
|
</assemblyBinding>
|
|
68
|
93
|
</runtime>
|
|
69
|
94
|
<system.codedom>
|
|
70
|
95
|
<compilers>
|
|
71
|
|
- <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701"/>
|
|
72
|
|
- <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+"/>
|
|
|
96
|
+ <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
|
|
|
97
|
+ <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" />
|
|
73
|
98
|
</compilers>
|
|
74
|
99
|
</system.codedom>
|
|
75
|
100
|
<system.webServer>
|
|
76
|
101
|
<staticContent>
|
|
77
|
|
- <mimeMap fileExtension=".apk" mimeType="application/vnd.android.package-archive"/>
|
|
|
102
|
+ <mimeMap fileExtension=".apk" mimeType="application/vnd.android.package-archive" />
|
|
78
|
103
|
</staticContent>
|
|
79
|
104
|
<!--cors 支持跨域 clq新增 strat-->
|
|
80
|
105
|
<httpProtocol>
|
|
81
|
106
|
<customHeaders>
|
|
82
|
|
- <add name="Access-Control-Allow-Origin" value="*"/>
|
|
83
|
|
- <add name="Access-Control-Allow-Headers" value="Content-Type"/>
|
|
84
|
|
- <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS"/>
|
|
|
107
|
+ <add name="Access-Control-Allow-Origin" value="*" />
|
|
|
108
|
+ <add name="Access-Control-Allow-Headers" value="Content-Type" />
|
|
|
109
|
+ <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" />
|
|
85
|
110
|
</customHeaders>
|
|
86
|
111
|
</httpProtocol>
|
|
87
|
112
|
<!--cors 支持跨域 end-->
|
|
88
|
|
- <validation validateIntegratedModeConfiguration="false"/>
|
|
|
113
|
+ <validation validateIntegratedModeConfiguration="false" />
|
|
89
|
114
|
<modules>
|
|
90
|
|
- <remove name="ApplicationInsightsWebTracking"/>
|
|
91
|
|
- <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler"/>
|
|
|
115
|
+ <remove name="ApplicationInsightsWebTracking" />
|
|
|
116
|
+ <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
|
|
92
|
117
|
</modules>
|
|
93
|
118
|
</system.webServer>
|
|
94
|
119
|
<applicationSettings>
|