Created
November 1, 2012 16:18
-
-
Save kerryjiang/3994742 to your computer and use it in GitHub Desktop.
SuperSocket AppDomain level isolation configuration sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 logFactory="ConsoleLogFactory"> | |
<servers> | |
<server name="EchoServer" serverTypeName="EchoService"> | |
<listeners> | |
<add ip="Any" port="80" /> | |
</listeners> | |
</server> | |
</servers> | |
<serverTypes> | |
<add name="EchoService" | |
type="SuperSocket.QuickStart.EchoService.EchoServer, SuperSocket.QuickStart.EchoService" /> | |
</serverTypes> | |
<logFactories> | |
<add name="ConsoleLogFactory" | |
type="SuperSocket.SocketBase.Logging.ConsoleLogFactory, SuperSocket.SocketBase" /> | |
</logFactories> | |
</superSocket> | |
<startup> | |
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> | |
</startup> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment