123456789101112131415161718192021222324 |
- <?xml version="1.0"?>
- <configuration>
- <configSections>
- <section name="superSocket" type="SuperSocket.SocketEngine.Configuration.SocketServiceConfig, SuperSocket.SocketEngine"/>
- </configSections>
- <appSettings>
- <add key="ServiceName" value="SupperSocketService"/>
- </appSettings>
- <superSocket>
- <servers>
- <server name="YourServerInstanceName" serverTypeName="YourService" ip="Any" port="2020" maxConnectionNumber="100">
- </server>
- </servers>
- <serverTypes>
- <add name="YourService" type="YourServiceServerType, YourServiceAssembly"/>
- </serverTypes>
- </superSocket>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
- </startup>
- <runtime>
- <gcServer enabled="true"/>
- </runtime>
- </configuration>
|