Remoting伺服器端如果伺服器有多塊網卡,多個IP地址的情況下會出現用戶端callback失敗的問題,debug以後發現用戶端會callback到伺服器端另外一個IP地址(例如外網地址,而不是內網地址)。大家知道一般情況下Remoting伺服器端的配置方式如下:
<channel ref="tcp" port="55555">
或者用代碼的方式:
IDictionary props = new Hashtable();
props["port"] = 55555;
IChannel channel = new TcpChannel(props, clientProvider, serverProvider);
該問題有幾種解決方案:
1. 將Channel綁定到機器名(使用“machineName”),而非IP。但這樣要求我們不同網段的客戶都能通過同一個DNS名找到這個伺服器。 而且使用此屬性將覆蓋useIpAddress屬性設定。
<channel ref="tcp" port="55555" machineName="firewall.yourdomain.com" />
代碼方式:
IDictionary props = new Hashtable();
props["port"] = 55555;
props["machineName"] = "firewall.yourdomain.com";
IChannel channel = new TcpChannel(props, clientProvider, serverProvider);
有關“machineName”屬性的詳細資料,請查閱MSDN:
http://msdn.microsoft.com/en-us/library/c5zztdc3%28VS.80%29.aspx
2. 為伺服器每一個IP都開一個Channel,並使用“bindTo”。
有關bindTo屬性的詳細定義查看MSDN:specify an IP address of the NIC to bind to when more than one NIC is installed in a machine. This attribute can only be used in the server side.
配置樣本:
<channel ref="tcp" port="55555" bindTo="197.118.137.8">
<serverProviders>
<formatter ref="soap" typeFilterLevel="Full" />
<formatter ref="binary" typeFilterLevel="Full" />
</serverProviders>
</channel>
3. 通過伺服器端的Sink取得Client端的IP,並通過手動設定的類似路由表一樣的對應表,通過用戶端的IP來選擇一個正確的伺服器IP。
我們可以用 TrackingHandler在伺服器端Marshal MarshalByRefObject的時候用一個正確的IP。
實現方法,參考張逸轉載的這篇文章:http://www.cnblogs.com/wayfarer/articles/69104.html