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>

  • 相关阅读:
    Hibernate的注释该如何使用?每一个注释代表什么意思?
    J2SE总结(一)-------容器
    解决hibernate向mysql插入中文乱码问题(更改MySQL字符集)
    android程序员成长路径的思考
    Fragment总结
    onCreateView的一个细节--Fragment
    屏幕适配
    表驱动法3
    表驱动法2
    表驱动法1
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11127199.html
Copyright © 2011-2022 走看看