Commit 42744033087bc4a7d5bc79113b89a73dd0350c58
1 parent
9b6ca490
changed versions of assemblies
Showing
1 changed file
with
95 additions
and
95 deletions
400-SOURCECODE/AIAHTML5.API/Web.config
1 | -<?xml version="1.0" encoding="utf-8"?> | ||
2 | -<!-- | ||
3 | - For more information on how to configure your ASP.NET application, please visit | ||
4 | - http://go.microsoft.com/fwlink/?LinkId=301879 | ||
5 | - --> | ||
6 | -<configuration> | ||
7 | - <configSections> | ||
8 | - <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> | ||
9 | - <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||
10 | - <section name="AIAHTML5.API.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> | ||
11 | - </sectionGroup> | ||
12 | - </configSections> | ||
13 | - | ||
14 | - <log4net debug="true"> | ||
15 | - <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> | ||
16 | - <file value="Logs\AIALogs.log" /> | ||
17 | - <appendToFile value="true" /> | ||
18 | - <rollingStyle value="Size" /> | ||
19 | - <maxSizeRollBackups value="10" /> | ||
20 | - <maximumFileSize value="10MB" /> | ||
21 | - <staticLogFileName value="true" /> | ||
22 | - <layout type="log4net.Layout.PatternLayout"> | ||
23 | - <conversionPattern value="%-5p %d %5rms %-22.22c{1} %-18.18M - %m%n" /> | ||
24 | - </layout> | ||
25 | - </appender> | ||
26 | - | ||
27 | - <root> | ||
28 | - <level value="DEBUG" /> | ||
29 | - <appender-ref ref="RollingLogFileAppender" /> | ||
30 | - </root> | ||
31 | - </log4net> | ||
32 | - | ||
33 | - <appSettings> | ||
34 | - <add key="SenderEmailAddress" value="support@interactiveanatomy.com" /> | ||
35 | - <add key="ErrorNotificationEmailAddress" value="support@interactiveanatomy.com" /> | ||
36 | - <add key="SenderPassword" value="" /> | ||
37 | - <add key="SMTPAddress" value="10.100.12.13" /> | ||
38 | - <add key="SMTPPort" value="25" /> | ||
39 | - <add key="EnableSSL" value="false" /> | ||
40 | - <add key="Site_Url" value ="http://qa.beta.interactiveanatomy.com/"/> | ||
41 | - <add key ="HostAddress" value="10.100.12.13" /> | ||
42 | - <add key="AdminSupport" value="amrita.vishnoi@ebix.com,nikita.kulshreshtha@ebix.com"/> | ||
43 | - <add key ="AIADatabaseV5Context" value="Data Source=192.168.90.53;Initial Catalog=AIADatabaseV5;User ID=AIA_Dev;Password=india123;"/> | ||
44 | - <add key ="LogoPath" value="~/content/images/logo.png"/> | ||
45 | - <add key ="UnblockUserEmailTemplate" value="~/Templates/unblock-User.html"/> | ||
46 | - <add key ="ForgotPasswordEmailTemplate" value="~/Templates/forgot-Password.html"/> | ||
47 | - <add key ="ForgotUserIdEmailTemplate" value="~/Templates/forgot-UserId.html"/> | ||
48 | - | ||
49 | - | ||
50 | - <!--<add key ="AIADatabaseV5Context" value="Data Source=52.6.248.70;Initial Catalog=AIADatabase;User ID=amrita;Password=Ebix@2017;"/>--> | ||
51 | - | ||
52 | - </appSettings> | ||
53 | - <system.web> | ||
54 | - <compilation debug="true" targetFramework="4.5" /> | ||
55 | - <httpRuntime targetFramework="4.5" /> | ||
56 | - </system.web> | ||
57 | - | ||
58 | - <applicationSettings> | ||
59 | - <AIAHTML5.API.Properties.Settings> | ||
60 | - <setting name="AIAConnectionString" serializeAs="String"> | ||
61 | - <value>localhost:27017</value> | ||
62 | - </setting> | ||
63 | - <setting name="database" serializeAs="String"> | ||
64 | - <value>AIA</value> | ||
65 | - </setting> | ||
66 | - </AIAHTML5.API.Properties.Settings> | ||
67 | - </applicationSettings> | ||
68 | - <runtime> | ||
69 | - <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
70 | - <dependentAssembly> | ||
71 | - <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | ||
72 | - <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" /> | ||
73 | - </dependentAssembly> | ||
74 | - <dependentAssembly> | ||
75 | - <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | ||
76 | - <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | ||
77 | - </dependentAssembly> | ||
78 | - <dependentAssembly> | ||
79 | - <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | ||
80 | - <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | ||
81 | - </dependentAssembly> | ||
82 | - <dependentAssembly> | ||
83 | - <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
84 | - <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> | ||
85 | - </dependentAssembly> | ||
86 | - </assemblyBinding> | ||
87 | - </runtime> | ||
88 | - <system.webServer> | ||
89 | - <handlers> | ||
90 | - <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> | ||
91 | - <remove name="OPTIONSVerbHandler" /> | ||
92 | - <remove name="TRACEVerbHandler" /> | ||
93 | - <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> | ||
94 | - </handlers> | ||
95 | - </system.webServer> | 1 | +<?xml version="1.0" encoding="utf-8"?> |
2 | +<!-- | ||
3 | + For more information on how to configure your ASP.NET application, please visit | ||
4 | + http://go.microsoft.com/fwlink/?LinkId=301879 | ||
5 | + --> | ||
6 | +<configuration> | ||
7 | + <configSections> | ||
8 | + <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> | ||
9 | + <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||
10 | + <section name="AIAHTML5.API.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> | ||
11 | + </sectionGroup> | ||
12 | + </configSections> | ||
13 | + | ||
14 | + <log4net debug="true"> | ||
15 | + <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> | ||
16 | + <file value="Logs\AIALogs.log" /> | ||
17 | + <appendToFile value="true" /> | ||
18 | + <rollingStyle value="Size" /> | ||
19 | + <maxSizeRollBackups value="10" /> | ||
20 | + <maximumFileSize value="10MB" /> | ||
21 | + <staticLogFileName value="true" /> | ||
22 | + <layout type="log4net.Layout.PatternLayout"> | ||
23 | + <conversionPattern value="%-5p %d %5rms %-22.22c{1} %-18.18M - %m%n" /> | ||
24 | + </layout> | ||
25 | + </appender> | ||
26 | + | ||
27 | + <root> | ||
28 | + <level value="DEBUG" /> | ||
29 | + <appender-ref ref="RollingLogFileAppender" /> | ||
30 | + </root> | ||
31 | + </log4net> | ||
32 | + | ||
33 | + <appSettings> | ||
34 | + <add key="SenderEmailAddress" value="support@interactiveanatomy.com" /> | ||
35 | + <add key="ErrorNotificationEmailAddress" value="support@interactiveanatomy.com" /> | ||
36 | + <add key="SenderPassword" value="" /> | ||
37 | + <add key="SMTPAddress" value="10.100.12.13" /> | ||
38 | + <add key="SMTPPort" value="25" /> | ||
39 | + <add key="EnableSSL" value="false" /> | ||
40 | + <add key="Site_Url" value ="http://qa.beta.interactiveanatomy.com/"/> | ||
41 | + <add key ="HostAddress" value="10.100.12.13" /> | ||
42 | + <add key="AdminSupport" value="amrita.vishnoi@ebix.com,nikita.kulshreshtha@ebix.com"/> | ||
43 | + <add key ="AIADatabaseV5Context" value="Data Source=192.168.90.53;Initial Catalog=AIADatabaseV5;User ID=AIA_Dev;Password=india123;"/> | ||
44 | + <add key ="LogoPath" value="~/content/images/logo.png"/> | ||
45 | + <add key ="UnblockUserEmailTemplate" value="~/Templates/unblock-User.html"/> | ||
46 | + <add key ="ForgotPasswordEmailTemplate" value="~/Templates/forgot-Password.html"/> | ||
47 | + <add key ="ForgotUserIdEmailTemplate" value="~/Templates/forgot-UserId.html"/> | ||
48 | + | ||
49 | + | ||
50 | + <!--<add key ="AIADatabaseV5Context" value="Data Source=52.6.248.70;Initial Catalog=AIADatabase;User ID=amrita;Password=Ebix@2017;"/>--> | ||
51 | + | ||
52 | + </appSettings> | ||
53 | + <system.web> | ||
54 | + <compilation debug="true" targetFramework="4.5" /> | ||
55 | + <httpRuntime targetFramework="4.5" /> | ||
56 | + </system.web> | ||
57 | + | ||
58 | + <applicationSettings> | ||
59 | + <AIAHTML5.API.Properties.Settings> | ||
60 | + <setting name="AIAConnectionString" serializeAs="String"> | ||
61 | + <value>localhost:27017</value> | ||
62 | + </setting> | ||
63 | + <setting name="database" serializeAs="String"> | ||
64 | + <value>AIA</value> | ||
65 | + </setting> | ||
66 | + </AIAHTML5.API.Properties.Settings> | ||
67 | + </applicationSettings> | ||
68 | + <runtime> | ||
69 | + <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
70 | + <dependentAssembly> | ||
71 | + <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | ||
72 | + <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="6.0.0.0" /> | ||
73 | + </dependentAssembly> | ||
74 | + <dependentAssembly> | ||
75 | + <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | ||
76 | + <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | ||
77 | + </dependentAssembly> | ||
78 | + <dependentAssembly> | ||
79 | + <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | ||
80 | + <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | ||
81 | + </dependentAssembly> | ||
82 | + <dependentAssembly> | ||
83 | + <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
84 | + <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.0.0" /> | ||
85 | + </dependentAssembly> | ||
86 | + </assemblyBinding> | ||
87 | + </runtime> | ||
88 | + <system.webServer> | ||
89 | + <handlers> | ||
90 | + <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> | ||
91 | + <remove name="OPTIONSVerbHandler" /> | ||
92 | + <remove name="TRACEVerbHandler" /> | ||
93 | + <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> | ||
94 | + </handlers> | ||
95 | + </system.webServer> | ||
96 | </configuration> | 96 | </configuration> |
97 | \ No newline at end of file | 97 | \ No newline at end of file |