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>

  • 相关阅读:
    回溯算法
    cannot import name 'np' in mxnet
    Linux后台运行任务 nohup &
    为Windows Terminal添加右键菜单
    Outlook设置QQ邮箱
    逻辑回归 logistic regression
    Python添加自定义目录到sys.path
    强化学习 策略梯度
    为Windows terminal preview添加右键菜单
    双系统使用Linux引导
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11127199.html
Copyright © 2011-2022 走看看