Created
November 1, 2012 16:20
-
-
Save kerryjiang/3994765 to your computer and use it in GitHub Desktop.
SuperSocket multiple command assemblies configuration sample
This file contains hidden or 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" encoding="utf-8" ?> | |
<configuration> | |
<configSections> | |
<section name="superSocket" type="SuperSocket.SocketEngine.Configuration.SocketServiceConfig, SuperSocket.SocketEngine"/> | |
</configSections> | |
<appSettings> | |
<add key="ServiceName" value="BroardcastService"/> | |
</appSettings> | |
<superSocket> | |
<servers> | |
<server name="SampleServer" | |
serverType="SuperSocket.QuickStart.SampleServer.SampleAppServer, SuperSocket.QuickStart.SampleServer" | |
ip="Any" port="2012"> | |
<commandAssemblies> | |
<add assembly="SuperSocket.QuickStart.SampleServer.CommandAssemblyA"></add> | |
<add assembly="SuperSocket.QuickStart.SampleServer.CommandAssemblyB"></add> | |
<add assembly="SuperSocket.QuickStart.SampleServer.CommandAssemblyC"></add> | |
</commandAssemblies> | |
</server> | |
</servers> | |
</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