49 lines
2.2 KiB
XML
49 lines
2.2 KiB
XML
<configuration>
|
|
<configSections>
|
|
<sectionGroup name="SuperMap.RealEstate" >
|
|
<section name="FrameWork" type="System.Configuration.NameValueSectionHandler" />
|
|
<section name="HousingSecurity" type="System.Configuration.NameValueSectionHandler" />
|
|
</sectionGroup>
|
|
</configSections>
|
|
<SuperMap.RealEstate>
|
|
<FrameWork configSource="Configuration\RealEstate.FrameWork.config" />
|
|
<HousingSecurity configSource="Configuration\RealEstate.HousingSecurity.config" />
|
|
</SuperMap.RealEstate>
|
|
<system.web>
|
|
<httpRuntime maxRequestLength="999999999" maxQueryStringLength="2097151" />
|
|
<sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" />
|
|
<compilation debug="true" targetFramework="4.0">
|
|
</compilation>
|
|
</system.web>
|
|
<system.webServer>
|
|
<security>
|
|
<requestFiltering>
|
|
<requestLimits maxAllowedContentLength="2147483647" maxQueryString="2147483647"/>
|
|
</requestFiltering>
|
|
</security>
|
|
<httpProtocol>
|
|
<customHeaders>
|
|
<add name="X-UA-Compatible" value="IE=Edge"/>
|
|
<add name="Access-Control-Allow-Origin" value="*" />
|
|
<add name="Access-Control-Allow-Headers" value="*" />
|
|
<add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE" />
|
|
</customHeaders>
|
|
</httpProtocol>
|
|
<modules runAllManagedModulesForAllRequests="true" />
|
|
</system.webServer>
|
|
<appSettings configSource="Configuration\appSetting.config" />
|
|
<connectionStrings configSource="Configuration\connectionStrings.config" />
|
|
<system.serviceModel>
|
|
<!--客户端终结点配置-->
|
|
<client configSource="Configuration\serviceModel.client.config" />
|
|
<!--服务端的服务配置-->
|
|
<services configSource="Configuration\serviceModel.services.config" />
|
|
<!--标准绑定和自定义绑定的配置-->
|
|
<bindings configSource="Configuration\serviceModel.bindings.config" />
|
|
<!--终结点和服务的行为配置-->
|
|
<behaviors configSource="Configuration\serviceModel.behaviors.config" />
|
|
<!--服务承载环境要为特定传输实例化的类型-->
|
|
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"
|
|
aspNetCompatibilityEnabled="true" />
|
|
</system.serviceModel>
|
|
</configuration> |