2025-03-27 15:05:14 +08:00

115 lines
5.4 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
<connectionStrings>
<add name="Oracle" connectionString="Data Source=(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = {0})(PORT = {1}))(CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_NAME = {2}))); User ID={3}; PassWord={4}"
providerName="System.Data.OracleClient" />
<add name="OracleDataAccessClient" connectionString="Data Source=(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = {0})(PORT = {1}))(CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_NAME = {2}))); User ID={3}; PassWord={4}"
providerName="Oracle.DataAccess.Client" />
<add name="Access" connectionString="Provider=Microsoft.Ace.oledb.12.0;Data Source={0};"
providerName="System.Data.OleDb" />
<add name="Excel" connectionString="Provider=Microsoft.Ace.oledb.12.0;Data Source={0};Extended Properties='Excel 12.0;HDR=No;IMEX=1;'"
providerName="System.Data.OleDb" />
<add name="SqlServer" connectionString="Data Source={0};Initial Catalog={1};User Id={2};Password={3};"
providerName="System.Data.SqlClient" />
<add name="PrintLable.Properties.Settings.ConnectionString" connectionString="DATA SOURCE=192.168.10.110:1521/orcl;PASSWORD=qrwl;USER ID=HIGHWAY_STORAGE"
providerName="Oracle.ManagedDataAccess.Client" />
</connectionStrings>
<appSettings>
<add key="SERVERPART_NAME" value="'公司本部','临安服务区'"></add>
<add key="BUSINESSTYPE" value="1000"></add>
<add key="PAGELEFT" value="0"></add>
<add key="PAGERIGHT" value="0"></add>
<add key="PAGETOP" value="0"></add>
<add key="PAGEBOTTOM" value="0"></add>
<add key="PAGELEFTI" value="0"></add>
<add key="PAGERIGHTI" value="0"></add>
<add key="PAGETOPI" value="0"></add>
<add key="PAGEBOTTOMI" value="0"></add>
</appSettings>
<system.serviceModel>
<client>
<!--ClickOnce部署配置-->
<endpoint address="http://183.129.232.100:8010/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.100:7010/CoreFrameWork/Dictionary/Service.svc"
binding="wsHttpBinding" bindingConfiguration="RealEstate_Binding"
behaviorConfiguration="RealEstate_EndPointBehavior" contract="CoreFrameWork.Dictionary.References.IService">
<identity>
<dns value="SuperMap_RealEstate_Server" />
</identity>
</endpoint>
<!--高速驿站-->
<endpoint address="http://183.129.232.100:7010/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.100:7010/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>