| <?xml version="1.0" encoding="utf-8"?> | 
| <configuration> | 
|   <appSettings> | 
|     <!-- 语言配置 配置  0 中文 1 英文 --> | 
|     <add key="LanguageFlg" value="0"/> | 
|     <!-- 站点的PLC 配置 --> | 
|       <!--<add key="Station_Address" value="172.17.51.202"/> --> | 
|      <add key="Station_Address" value="192.168.10.100"/> | 
|     <add key="Station_Rack" value="0"/> | 
|     <add key="Station_Slot" value="1"/> | 
|     <add key="Station_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.StationService"> | 
|         <endpoint address="" binding="basicHttpBinding" contract="iWareSda.IStationService"> | 
|           <identity> | 
|             <dns value="localhost" /> | 
|           </identity> | 
|         </endpoint> | 
|         <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> | 
|         <host> | 
|           <baseAddresses> | 
|             <add baseAddress="http://localhost:8733/Design_Time_Addresses/iWareSda/StationService/" /> | 
|           </baseAddresses> | 
|         </host> | 
|       </service> | 
|     </services> | 
|   </system.serviceModel> | 
| </configuration> |