zoukankan      html  css  js  c++  java
  • 在 Windows Azure 中运行SuperSocket

    关键字: Windows Azure, WorkRole, InputEndPoint, 云计算, 微软云

    什么是 Windows Azure?

    Windows Azure 是微软的云计算平台!微软的Windows Azure通过它的数据中心提供了按需分配的计算能力和存储空间用于在互联网上托管,扩展和管理应用程序。

    这些在 Windows Azure 上运行的应用有很高的可靠性和可扩展能力。基于SuperSocket开发的服务器程序一样也能够很方便的运行在 Windows Azure 平台上。

    SuperSocket 配置

    用于在 Windows Azure 上运行的配置文件 app.config 和直接运行的SuperSocket的配置文件相同。

    <?xml version="1.0" encoding="utf-8" ?>

    <configuration>

      <configSections>

        <section name="superSocket" type="SuperSocket.SocketEngine.Configuration.SocketServiceConfig, SuperSocket.SocketEngine"/>

      </configSections>

      <superSocket>

        <servers>

          <server name="RemoteProcessServer"

              serverTypeName="remoteProcess"

              ip="Any" port="2012" />

        </servers>

        <serverTypes>

          <add name="remoteProcess"

           type="SuperSocket.QuickStart.RemoteProcessService.RemoteProcessServer, SuperSocket.QuickStart.RemoteProcessService" />

        </serverTypes>

      </superSocket>

      <system.diagnostics>

        <trace>

          <listeners>

            <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"

            name="AzureDiagnostics">

            </add>

          </listeners>

        </trace>

      </system.diagnostics>

    </configuration>

  • 相关阅读:
    腾讯// 反转字符串
    腾讯//Multiply Strings 字符串相乘
    腾讯//盛最多水的容器
    腾讯//删除排序数组中的重复项
    腾讯//删除排序数组中的重复项
    C语言中的预处理命令
    Python十大应用领域与就业方向
    Python的主要应用领域及应用场景
    Git命令_git status
    Git命令_git add快速添加文件到暂存区
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11127199.html
Copyright © 2011-2022 走看看