forked from justjavac/layoutit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.config
35 lines (35 loc) · 2.04 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Data.Entity.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
</assemblies>
<buildProviders>
<add extension=".edmx" type="System.Data.Entity.Design.AspNet.EntityDesignerBuildProvider" />
</buildProviders>
</compilation>
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="TenantsPageWebServiceSoap" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://192.168.1.103/MTAUIStudio/webservice/TenantsPageWebService.asmx" binding="basicHttpBinding" bindingConfiguration="TenantsPageWebServiceSoap" contract="TenantsPageWS.TenantsPageWebServiceSoap" name="TenantsPageWebServiceSoap" />
</client>
</system.serviceModel>
<connectionStrings>
<add name="utbEntities" connectionString="metadata=res://*/App_Code.dao.Model.csdl|res://*/App_Code.dao.Model.ssdl|res://*/App_Code.dao.Model.msl;provider=MySql.Data.MySqlClient;provider connection string="server=192.168.1.103;user id=root;password=p@ssw0rd1;database=utb"" providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
</entityFramework>
</configuration>