hello , please help me
i got some problem with my centre and road services
please help !!!
Imageshack - 88622322.png
this is my config (centre services )
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="LanguagePath" value="Languages\Language-vn.txt"/>
<add key="conString" value="Data Source=.\SQLEXPRESS;Initial Catalog=Db_Tank;Persist Security Info=True;User ID=sa;Password=123456"/>
<add key="countDb" value="Data Source=.\SQLEXPRESS;Initial Catalog=Db_Count;Persist Security Info=True;User ID=sa;Password=123456"/>
<add key="IP" value="127.0.0.1"/>
<add key="Port" value="9202"/>
<add key="LoginLapseInterval" value="1"/>
<add key="SaveInterval" value="1"/>
<add key="SaveRecordInterval" value="1"/>
<add key="ScanAuctionInterval" value="60"/>
<add key="ScanMailInterval" value="120"/>
<add key="ScanConsortiaInterval" value="1"/>
<add key="ServerID" value="1"/>
<add key="GameType" value="1"/>
<add key="AreaID" value="1"/>
<add key="LogPath" value="RecordLog"/>
<add key="TxtRecord" value="true"/>
<add key="HelpStr" value="退出:exit;重新加载:reload;系统公告:notice;ssssssss"/>
<!--anti-addiction system-->
<add key="AAS" value="false"/>
<!--Daily-Award-Open-->
<add key="DailyAwardState" value="true"/>
</appSettings>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="Center.Server.CenterServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<netTcpBinding>
<binding name="CenterService">
<security mode="None">
</security>
</binding>
</netTcpBinding>
</bindings>
<services>
<service behaviorConfiguration="Center.Server.CenterService Behavior" name="Center.Server.CenterService">
<host>
<baseAddresses>
<add baseAddress="http://127.0.0.1:2008/CenterService/"/>
</baseAddresses>
</host>
<endpoint address="net.tcp://127.0.0.1:2009/" binding="netTcpBinding" bindingConfiguration="CenterService" contract="Center.Server.ICenterService">
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
</system.serviceModel>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>

