攀枝花当升项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
3.7 KiB

3 months ago
<?xml version="1.0"?>
<configuration>
<startup>
3 months ago
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
<appSettings>
<!--记录通讯黑匣子的文件大小单位字节,默认2097152,代表2M-->
3 months ago
<add key="DarkCasketSize" value="2097152"/>
<!--只保留最近记录通讯黑匣子的文件个数,默认60,代表60个-->
3 months ago
<add key="DarkCasketSum" value="60"/>
<!--路径搜索方式:0,按照最优路径选择固定路线;1,每个正在工作的节点作为起始点,向末端节点重新搜索下一个最优路径的节点-->
3 months ago
<add key="RouteSearchMode" value="0"/>
<!--OPC服务器的主机IP-->
<!--<add key="HostName" value="192.168.0.100:55101" />-->
3 months ago
<add key="HostName" value="10.11.140.250"/>
<!--OPC服务的ProgID-->
3 months ago
<add key="OPCProgID" value="OPC.SimaticNET.S7"/>
<!--WCS语言Chinese English-->
<add key="Language" value="English"/>
<!--移动设备是否被提前触发将取-->
3 months ago
<add key="MovedDeviceAheadTrigger" value="1"/>
<!--堆垛机出库是否检测目标输送机空闲和有物-->
3 months ago
<add key="OutDetectArrowIdleGoods" value="1"/>
<!--设备发生故障自动变更路径-->
3 months ago
<add key="DeviceErrorAutoModifyRoutePath" value="1"/>
<!--输送超时最大允许时间单位(分钟):默认5分钟-->
3 months ago
<add key="TransportTimeout" value="5"/>
<!--双叉关联入库任务允许等待的时间单位(秒):默认30秒-->
3 months ago
<add key="DoubleForkWaitTime" value="30"/>
<!--AGV是否允许单叉动作,:默认双叉一起动作 0-->
3 months ago
<add key="AGVAllowSingleFork" value="1"/>
<!--登陆OPC Server的用户标识-->
3 months ago
<add key="OPCUsername" value="siasun"/>
<!--登陆OPC Server的密码-->
3 months ago
<add key="OPCPassword" value="{opc123}"/>
<!--调度系统显示的名称-->
3 months ago
<add key="SystemName" value="智能物流系统-【WCS客户端】"/>
<add key="ClientSettingsProvider.ServiceUri" value=""/>
<add key="ClientSettingsProvider.ConnectionStringName" value="DefaultConnection"/>
</appSettings>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
3 months ago
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" connectionStringName="DefaultConnection" credentialsProvider=""/>
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
3 months ago
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" connectionStringName="DefaultConnection"/>
</providers>
</roleManager>
</system.web>
<system.serviceModel>
<bindings>
<netTcpBinding>
3 months ago
<binding name="NetTcpBinding_IControlMonitor" receiveTimeout="23:59:59" maxBufferPoolSize="5242888" maxReceivedMessageSize="6553688">
<security mode="None"/>
</binding>
</netTcpBinding>
</bindings>
<client>
3 months ago
<endpoint address="net.tcp://10.11.140.250:1028/" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IControlMonitor" contract="WcfControlMonitor.IControlMonitor" name="NetTcpBinding_IControlMonitor">
<identity>
3 months ago
<dns value="10.11.140.250"/>
</identity>
</endpoint>
</client>
</system.serviceModel>
<connectionStrings>
3 months ago
<add name="DefaultConnection" connectionString="Data Source = |SQL/CE|"/>
</connectionStrings>
3 months ago
</configuration>