| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- <?xml version="1.0" encoding="utf-8"?>
 
- <configuration>
 
- 	
 
- 	<configSections>
 
- 		<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net " />
 
- 	</configSections>
 
- 	<log4net>
 
- 		<appender name="UIfileAppender" type="log4net.Appender.RollingFileAppender">
 
- 			<param name="Encoding" value="utf-8" />
 
- 			<param name="File" value="Logs/log" />
 
- 			<param name="AppendToFile" value="true" />
 
- 			<param name="RollingStyle" value="Date" />
 
- 			<param name="StaticLogFileName" value="false" />
 
- 			<datePattern value="yyyyMMdd'.txt'" />
 
- 			<layout type="log4net.Layout.PatternLayout,log4net">
 
- 				<param name="ConversionPattern" value="%d%8p %m%n" />
 
- 				<param name="Header" value="
----------------------UI Start running--------------------------
" />
 
- 			</layout>
 
- 		</appender>
 
- 		<root>
 
- 			<level value="ALL" />
 
- 			<appender-ref ref="UIfileAppender" />
 
- 		</root>
 
- 	</log4net>
 
- 	
 
- 	<startup>
 
- 		<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
 
- 	</startup>
 
- 	<system.serviceModel>
 
- 		<bindings>
 
- 			<netTcpBinding>
 
- 				<binding name="Aitex_netTcpBinding" maxReceivedMessageSize="2147483647" openTimeout="00:00:05" closeTimeout="00:03:00" receiveTimeout="00:30:00" sendTimeout="00:30:00">
 
- 					<readerQuotas maxDepth="132" maxStringContentLength="1048576" maxArrayLength="163840000" maxBytesPerRead="14096" maxNameTableCharCount="116384"/>
 
- 					<security mode="None"/>
 
- 				</binding>
 
- 			</netTcpBinding>
 
- 		</bindings>
 
- 		<behaviors>
 
- 			<endpointBehaviors>
 
- 				<behavior name="EndpointBehavior">
 
- 					<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
 
- 				</behavior>
 
- 			</endpointBehaviors>
 
- 		</behaviors>
 
- 		<client>
 
- 			<endpoint address="net.tcp://localhost:8751/InvokeService" behaviorConfiguration="EndpointBehavior" binding="netTcpBinding" bindingConfiguration="Aitex_netTcpBinding" contract="MECF.Framework.Common.OperationCenter.IInvokeService" name="Client_IInvokeService"/>
 
- 			<endpoint address="net.tcp://localhost:8752/EventService" behaviorConfiguration="EndpointBehavior" binding="netTcpBinding" bindingConfiguration="Aitex_netTcpBinding" contract="Aitex.Core.WCF.Interface.IEventService" name="Client_IEventService"/>
 
- 			<endpoint address="net.tcp://localhost:8771/QueryDataService" behaviorConfiguration="EndpointBehavior" binding="netTcpBinding" bindingConfiguration="Aitex_netTcpBinding" contract="MECF.Framework.Common.DataCenter.IQueryDataService" name="Client_IQueryDataService"/>
 
- 			<endpoint address="net.tcp://localhost:8773/RecipeService" behaviorConfiguration="EndpointBehavior" binding="netTcpBinding" bindingConfiguration="Aitex_netTcpBinding" contract="MECF.Framework.Common.RecipeCenter.IRecipeService" name="Client_IRecipeService"/>
 
- 			<endpoint address="net.tcp://localhost:8775/AccountService" behaviorConfiguration="EndpointBehavior" binding="netTcpBinding" bindingConfiguration="Aitex_netTcpBinding" contract="Aitex.Core.Account.IAccountService" name="Client_IAccountService"/>
 
- 			<endpoint address="net.tcp://localhost:8777/WaferHolderDataService" behaviorConfiguration="EndpointBehavior" binding="netTcpBinding" bindingConfiguration="Aitex_netTcpBinding" contract="MECF.Framework.Common.WaferHolder.IWaferHolderDataService" name="Client_IWaferHolderDataService"/>
 
- 		</client>
 
- 	</system.serviceModel>
 
- </configuration>
 
 
  |