-
Notifications
You must be signed in to change notification settings - Fork 6
/
Web.config
59 lines (47 loc) · 1.59 KB
/
Web.config
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="ApplicationServices"
connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="1.0.0.0"/>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
<add key="Server" value="121.43.107.106" />
<add key="Port" value="1972" />
<add key="NameSpace" value="CDMISrestful" />
<!--<add key="Server" value="10.12.43.94" />
<add key="Port" value="56773" />
<add key="NameSpace" value="TEST" />-->
<add key="UserID" value="_system" />
<add key="Password" value="SYS" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="157286400" />
</requestFiltering>
</security>
<directoryBrowse enabled="true" />
<defaultDocument>
<files>
<add value="Services.asmx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>