| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
- </startup>
- <appSettings>
- <!--本机外网IP-->
- <add key="ip" value="Any"/>
- <!--本机外网端口-->
- <add key="port" value="2022"/>
- <!--客户端连接最大数-->
- <add key="maxnumber" value="1000"/>
- <!--每页数量-->
- <add key="pagenumer" value="10"/>
- <!--游客简称-->
- <add key="anyname" value="游客"/>
- <!--首次连接欢迎词-->
- <add key="welcome" value="欢迎你!"/>
- <!--客服不在线-->
- <add key="busy" value="客服不在线,请稍后咨询!"/>
- <!--客户ip是黑名单-->
- <add key="black" value="当前状态异常,请电话联系!"/>
-
- <!--智能机器人回复 - 客服不在线时-->
- <add key="busy_robotreply" value="对不起,我已经很努力了,未能找到。请试试其他信息吧"/>
- <!--提示欢迎词(默认)-->
- <add key="welcome" value="你好,见到你很开心"/>
- <!--提示欢迎词时间间隔(秒)-->
- <add key="welcome_maxtime" value="60"/>
- <!--IP获取地址url 没有用-->
- <!--<add key="ipurl" value="http://ip.taobao.com/service/getIpInfo2.php"/>-->
- </appSettings>
- <connectionStrings>
- <add name="ConnectionString" connectionString="Data Source=192.168.8.3;User ID=sa;pwd=800100;Initial Catalog=IM12345;"/>
- </connectionStrings>
- <runtime>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly>
- <assemblyIdentity name="SuperSocket.SocketBase" publicKeyToken="6c80000676988ebb" culture="neutral"/>
- <bindingRedirect oldVersion="0.0.0.0-1.6.0.4" newVersion="1.6.0.4"/>
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="SuperSocket.Common" publicKeyToken="6c80000676988ebb" culture="neutral"/>
- <bindingRedirect oldVersion="0.0.0.0-1.6.0.4" newVersion="1.6.0.4"/>
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral"/>
- <bindingRedirect oldVersion="0.0.0.0-1.2.13.0" newVersion="1.2.13.0"/>
- </dependentAssembly>
- </assemblyBinding>
- </runtime>
- </configuration>
|