在 Windows Azure 中运行SuperSocket

Posted fanweisheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 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>

以上是关于在 Windows Azure 中运行SuperSocket的主要内容,如果未能解决你的问题,请参考以下文章

在 Windows Server Container 中运行 Azure Storage Emulator:运行在容器中

Azure Service Fabric 集群在 Windows 7 单机上运行 Windows 容器

azure VPN无法在Windows Server 2012上运行

在 Windows Server Container 中运行 Azure Storage Emulator:能否监听自定义地址?

微软azure云计算在门户中创建 Windows 虚拟机部署web网站

使用Azure Monitor监控服务运行状态