码迷,mamicode.com
首页 > Windows程序 > 详细

在 Windows Azure 中运行SuperSocket

时间:2019-07-03 16:53:19      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:name   server   存储   super   version   文件   应用程序   rem   rac   

关键字: 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

标签:name   server   存储   super   version   文件   应用程序   rem   rac   

原文地址:https://www.cnblogs.com/fanweisheng/p/11127199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!