91 lines
4.3 KiB
XML
91 lines
4.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<startup>
|
|
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
|
</startup>
|
|
<connectionStrings>
|
|
<add name="Oracle" providerName="System.Data.OracleClient" connectionString="Data Source=(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = {0})(PORT = {1}))(CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_NAME = {2}))); User ID={3}; PassWord={4}"/>
|
|
<add name="OracleDataAccessClient" providerName="Oracle.DataAccess.Client" connectionString="Data Source=(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = {0})(PORT = {1}))(CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_NAME = {2}))); User ID={3}; PassWord={4}"/>
|
|
<add name="Access" providerName="System.Data.OleDb" connectionString="Provider=Microsoft.Ace.oledb.12.0;Data Source={0};"/>
|
|
<add name="Excel" providerName="System.Data.OleDb" connectionString="Provider=Microsoft.Ace.oledb.12.0;Data Source={0};Extended Properties='Excel 12.0;HDR=No;IMEX=1;'"/>
|
|
<add name="SqlServer" providerName="System.Data.SqlClient" connectionString="Data Source={0};Initial Catalog={1};User Id={2};Password={3};"/>
|
|
</connectionStrings>
|
|
<appSettings>
|
|
<add key="SERVERPART_NAME" value="'公司本部','松阳服务区'"></add>
|
|
</appSettings>
|
|
<system.serviceModel>
|
|
<client>
|
|
<!--ClickOnce部署配置-->
|
|
<endpoint address="http://183.129.232.106:8000/PortalService/NetworkDeployed/Service.svc"
|
|
binding="wsHttpBinding"
|
|
bindingConfiguration="RealEstate_Binding"
|
|
behaviorConfiguration="RealEstate_EndPointBehavior"
|
|
contract="NetworkDeployed.References.IService">
|
|
<identity>
|
|
<dns value="SuperMap_RealEstate_Server" />
|
|
</identity>
|
|
</endpoint>
|
|
<!--高速驿站-->
|
|
<endpoint address="http://183.129.232.106:7000/HighWay/Running/Service.svc"
|
|
binding="wsHttpBinding"
|
|
bindingConfiguration="RealEstate_Binding"
|
|
behaviorConfiguration="RealEstate_EndPointBehavior"
|
|
contract="HighWay.Running.References.IService">
|
|
<identity>
|
|
<dns value="SuperMap_RealEstate_Server" />
|
|
</identity>
|
|
</endpoint>
|
|
<endpoint address="http://183.129.232.106:7000/HighWay/Storage/Service.svc"
|
|
binding="wsHttpBinding"
|
|
bindingConfiguration="RealEstate_Binding"
|
|
behaviorConfiguration="RealEstate_EndPointBehavior"
|
|
contract="HighWay.Storage.References.IService">
|
|
<identity>
|
|
<dns value="SuperMap_RealEstate_Server" />
|
|
</identity>
|
|
</endpoint>
|
|
</client>
|
|
<bindings>
|
|
<wsHttpBinding>
|
|
<binding name="RealEstate_Binding" maxReceivedMessageSize="655360000">
|
|
<readerQuotas maxArrayLength="163840000"></readerQuotas>
|
|
<security mode="Message">
|
|
<message clientCredentialType="Certificate"
|
|
negotiateServiceCredential="True"
|
|
establishSecurityContext="True" />
|
|
</security>
|
|
</binding>
|
|
</wsHttpBinding>
|
|
</bindings>
|
|
<behaviors>
|
|
<endpointBehaviors>
|
|
<behavior name="RealEstate_EndPointBehavior">
|
|
<clientCredentials>
|
|
<serviceCertificate>
|
|
<authentication certificateValidationMode="Custom"
|
|
customCertificateValidatorType="SuperMap.RealEstate.Certificate.ClientX509CertificateValidator,RealEstate.Core" />
|
|
</serviceCertificate>
|
|
</clientCredentials>
|
|
</behavior>
|
|
</endpointBehaviors>
|
|
<serviceBehaviors>
|
|
<behavior name="RealEstate_ServiceBehavior">
|
|
<serviceCredentials>
|
|
<clientCertificate>
|
|
<authentication certificateValidationMode="Custom"
|
|
customCertificateValidatorType="SuperMap.RealEstate.Certificate.ServiceX509CertificateValidator,RealEstate.Core" />
|
|
</clientCertificate>
|
|
</serviceCredentials>
|
|
<serviceMetadata httpGetEnabled="true" />
|
|
<serviceDebug includeExceptionDetailInFaults="true" />
|
|
</behavior>
|
|
<behavior>
|
|
<serviceMetadata httpGetEnabled="true" />
|
|
<serviceDebug includeExceptionDetailInFaults="true" />
|
|
</behavior>
|
|
</serviceBehaviors>
|
|
</behaviors>
|
|
</system.serviceModel>
|
|
</configuration>
|