1
1
<?xml version =" 1.0" ?>
2
2
<configuration >
3
- <configSections >
4
- <sectionGroup name =" system.web.extensions" type =" System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" >
5
- <sectionGroup name =" scripting" type =" System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" >
6
- <section name =" scriptResourceHandler" type =" System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission =" false" allowDefinition =" MachineToApplication" />
7
- <sectionGroup name =" webServices" type =" System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" >
8
- <section name =" jsonSerialization" type =" System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission =" false" allowDefinition =" Everywhere" />
9
- <section name =" profileService" type =" System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission =" false" allowDefinition =" MachineToApplication" />
10
- <section name =" authenticationService" type =" System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission =" false" allowDefinition =" MachineToApplication" />
11
- <section name =" roleService" type =" System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission =" false" allowDefinition =" MachineToApplication" />
12
- </sectionGroup >
13
- </sectionGroup >
14
- </sectionGroup >
15
- </configSections >
16
- <appSettings >
17
- <add key =" ApiLogin" value =" ApiLogin" />
18
- <add key =" TransactionKey" value =" TransactionKey" />
19
- <add key =" MerchantHash" value =" MERCHANT_HASH" />
20
- </appSettings >
21
- <connectionStrings />
22
- <system .web>
23
- <!--
3
+ <appSettings >
4
+ <add key =" ApiLogin" value =" ApiLogin" />
5
+ <add key =" TransactionKey" value =" TransactionKey" />
6
+ <add key =" MerchantHash" value =" MERCHANT_HASH" />
7
+ </appSettings >
8
+ <connectionStrings />
9
+ <!--
10
+ For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
11
+
12
+ The following attributes can be set on the <httpRuntime> tag.
13
+ <system.Web>
14
+ <httpRuntime targetFramework="4.5" />
15
+ </system.Web>
16
+ -->
17
+ <system .web>
18
+ <!--
24
19
Set compilation debug="true" to insert debugging
25
20
symbols into the compiled page. Because this
26
21
affects performance, set this value to true only
27
22
during development.
28
23
-->
29
- <compilation debug =" false" >
30
- <assemblies >
31
- <add assembly =" System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
32
- <add assembly =" System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
33
- <add assembly =" System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
34
- <add assembly =" System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
35
- </assemblies >
36
- </compilation >
37
- <!--
24
+ <compilation debug =" false" targetFramework =" 4.5" />
25
+ <!--
38
26
The <authentication> section enables configuration
39
27
of the security authentication mode used by
40
28
ASP.NET to identify an incoming user.
41
29
-->
42
- <authentication mode =" Windows" />
43
- <!--
30
+ <authentication mode =" Windows" />
31
+ <!--
44
32
The <customErrors> section enables configuration
45
33
of what to do if/when an unhandled error occurs
46
34
during the execution of a request. Specifically,
52
40
<error statusCode="404" redirect="FileNotFound.htm" />
53
41
</customErrors>
54
42
-->
55
- <pages >
56
-
57
- <controls >
58
-
59
- <add tagPrefix =" asp" namespace =" System.Web.UI" assembly =" System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
60
- <add tagPrefix =" asp" namespace =" System.Web.UI.WebControls" assembly =" System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
61
- </controls >
62
- </pages >
63
- <httpHandlers >
64
- <remove verb =" *" path =" *.asmx" />
65
- <add verb =" *" path =" *.asmx" validate =" false" type =" System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
66
- <add verb =" *" path =" *_AppService.axd" validate =" false" type =" System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
67
- <add verb =" GET,HEAD" path =" ScriptResource.axd" type =" System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate =" false" />
68
- </httpHandlers >
69
- <httpModules >
70
- <add name =" ScriptModule" type =" System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
71
- </httpModules >
72
- </system .web>
73
- <system .codedom>
74
- <compilers >
75
- <compiler language =" c#;cs;csharp" extension =" .cs" warningLevel =" 4" type =" Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
76
- <providerOption name =" CompilerVersion" value =" v3.5" />
77
- <providerOption name =" WarnAsError" value =" false" />
78
- </compiler >
79
- </compilers >
80
- </system .codedom>
81
- <!--
43
+ <pages controlRenderingCompatibilityVersion =" 3.5" clientIDMode =" AutoID" />
44
+ </system .web>
45
+ <!--
82
46
The system.webServer section is required for running ASP.NET AJAX under Internet
83
47
Information Services 7.0. It is not necessary for previous version of IIS.
84
48
-->
85
- <system .webServer>
86
- <validation validateIntegratedModeConfiguration =" false" />
87
- <modules >
88
- <remove name =" ScriptModule" />
89
- <add name =" ScriptModule" preCondition =" managedHandler" type =" System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
90
- </modules >
91
- <handlers >
92
- <remove name =" WebServiceHandlerFactory-Integrated" />
93
- <remove name =" ScriptHandlerFactory" />
94
- <remove name =" ScriptHandlerFactoryAppServices" />
95
- <remove name =" ScriptResource" />
96
- <add name =" ScriptHandlerFactory" verb =" *" path =" *.asmx" preCondition =" integratedMode" type =" System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
97
- <add name =" ScriptHandlerFactoryAppServices" verb =" *" path =" *_AppService.axd" preCondition =" integratedMode" type =" System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
98
- <add name =" ScriptResource" preCondition =" integratedMode" verb =" GET,HEAD" path =" ScriptResource.axd" type =" System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
99
- </handlers >
100
- </system .webServer>
101
- <runtime >
102
- <assemblyBinding xmlns =" urn:schemas-microsoft-com:asm.v1" >
103
- <dependentAssembly >
104
- <assemblyIdentity name =" System.Web.Extensions" publicKeyToken =" 31bf3856ad364e35" />
105
- <bindingRedirect oldVersion =" 1.0.0.0-1.1.0.0" newVersion =" 3.5.0.0" />
106
- </dependentAssembly >
107
- <dependentAssembly >
108
- <assemblyIdentity name =" System.Web.Extensions.Design" publicKeyToken =" 31bf3856ad364e35" />
109
- <bindingRedirect oldVersion =" 1.0.0.0-1.1.0.0" newVersion =" 3.5.0.0" />
110
- </dependentAssembly >
111
- </assemblyBinding >
112
- </runtime >
113
- </configuration >
49
+ </configuration >
0 commit comments