<?xml version="1.0" encoding="utf-8"?>
|
<configuration>
|
<appSettings>
|
<!-- 语言配置 配置 0 中文 1 英文 -->
|
<add key="LanguageFlg" value="0"/>
|
<!-- 堆垛机的PLC 配置 -->
|
<add key="Srm1_Address" value="192.168.10.60"/>
|
<add key="Srm2_Address" value="192.168.10.68"/>
|
<add key="Srm3_Address" value="192.168.10.76"/>
|
<add key="Srm4_Address" value="192.168.10.84"/>
|
<add key="Srm_Rack" value="0"/>
|
<add key="Srm_Slot" value="1"/>
|
<add key="Srm_Port" value="102"/>
|
<!-- RGV的PLC 配置 -->
|
<add key="RGV_Address" value="192.168.10.10"/>
|
<add key="RGV_Rack" value="0"/>
|
<add key="RGV_Slot" value="1"/>
|
<add key="RGV_Port" value="102"/>
|
</appSettings>
|
<startup>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
</startup>
|
<system.serviceModel>
|
<behaviors>
|
<serviceBehaviors>
|
<behavior name="">
|
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
</behavior>
|
</serviceBehaviors>
|
</behaviors>
|
<services>
|
<service name="iWareSda.SrmService">
|
<endpoint address="" binding="basicHttpBinding" contract="iWareSda.ISrmService">
|
<identity>
|
<dns value="localhost" />
|
</identity>
|
</endpoint>
|
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
|
<host>
|
<baseAddresses>
|
<add baseAddress="http://localhost:8733/Design_Time_Addresses/iWareSda/SrmService/" />
|
</baseAddresses>
|
</host>
|
</service>
|
<service name="iWareSda.RgvService">
|
<endpoint address="" binding="basicHttpBinding" contract="iWareSda.IRgvService">
|
<identity>
|
<dns value="localhost" />
|
</identity>
|
</endpoint>
|
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
|
<host>
|
<baseAddresses>
|
<add baseAddress="http://localhost:8733/Design_Time_Addresses/iWareSda/RgvService/" />
|
</baseAddresses>
|
</host>
|
</service>
|
</services>
|
</system.serviceModel>
|
</configuration>
|