-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb.config
More file actions
77 lines (74 loc) · 3.57 KB
/
Web.config
File metadata and controls
77 lines (74 loc) · 3.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="EmTrac2SF.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<connectionStrings>
<add name="EmTrac" connectionString="Data Source=XXXX;Initial Catalog=ops;Persist Security Info=True;User ID=XXXX;Password=XXXX" providerName="System.Data.SqlClient" />
<add name="SalesforceLogin" connectionString="Username=XXXX;Password=XXXX;Token=" />
<add name="SalesforceDEV1" connectionString="Username=XXXX;Password=XXXX;Token=" />
<add name="SalesforcePRODUCTION" connectionString="Username=XXXX;Password=XXXX;Token=" />
</connectionStrings>
<appSettings>
<add key="LogDBErrors" value="0" />
<add key="DBRetries" value="1" />
<!-- <add key="User" value="XXXX" />
//-->
<add key="User" value="XXXX" />
<add key="Instance" value="XXXX" />
<!--
<add key="Instance" value="XXXX"/>
<add key="Instance" value="XXXX"/>
-->
<add key="LDAPUID" value="XXXX\XXXX" />
<add key="LDAPPwd" value="XXXX" />
<!--
<add key="LDAPUID" value="XXXX\XXXX"/>
<add key="LDAPPwd" value="XXXX"/>
-->
<add key="XXXX" value="XXXX.XXXX.root01.org" />
</appSettings>
<system.web>
<customErrors mode="Off"/>
<httpHandlers>
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
validate="false" />
</httpHandlers>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
</assemblies>
<buildProviders>
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</buildProviders>
</compilation>
<authorization>
<allow users="*" />
</authorization>
</system.web>
<!--
<value>https://test.salesforce.com/services/Soap/c/22.0/XXXX</value>
-->
<applicationSettings>
<EmTrac2SF.Properties.Settings>
<setting name="EmTrac2SF_EMSC_SF_SforceService" serializeAs="String">
<value>https://login.salesforce.com/services/Soap/c/23.0/XXXX</value>
</setting>
</EmTrac2SF.Properties.Settings>
</applicationSettings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</handlers>
</system.webServer>
</configuration>