1

我正在尝试<system.runtime.remoting>channels\channel ref="tcp" port="9090". App.config配置文件如下所示。

<?xml version="1.0"?>
<configuration>
<system.runtime.remoting>
    <application Name="MyServer">
      <service>
        <wellknown mode="Singleton" type="MyServer.Servers.SvrConnection, MyServer" objectUri="MyConnection" />
      </service>
      <channels>
       <channel ref="tcp" port="9090">
          <serverProviders>
            <formatter ref="binary" typeFilterLevel="Full" />
          </serverProviders>
          <clientProviders>
            <formatter ref="binary" />
          </clientProviders>
        </channel>
      </channels>
    </application>
  </system.runtime.remoting>
</configuration>

我将如何实现这一目标?请帮忙。

4

1 回答 1

0

我通过读取App.configC# 中的 XML 文档并使用 XML 元素读取端口号解决了这个问题。请告知是否有更好的方法来做到这一点。

于 2014-07-31T09:55:34.277 回答