Docker Windows容器内的多播MSMQ

时间:2018-10-30 18:28:17

标签: msmq multicast docker-windows

我们有一个旧的Windows项目,我们想对其进行容器化。

这使用MSMQ多播(Telerik已过时的ORM的一部分)。

如果我尝试在Windows容器内

Enable-WindowsOptionalFeature -Oneline -FeatureName MSMQ-Multicast -All

此操作失败:

Enable-WindowsOptionalFeature : One or several parent features are disabled so current feature can not be enabled.
At line:1 char:1
+ Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-Multicast -Al ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Enable-WindowsOptionalFeature], COMException
    + FullyQualifiedErrorId : Microsoft.Dism.Commands.EnableWindowsOptionalFeatureCommand

也:

PS C:\scripts> netcfg -c p -i ms_rmcast
Trying to install ms_rmcast ...

... failed. Error code: 0x800106d9.

容器通过“透明”网络类型连接,因此已桥接到本地网络。

对此有任何解决方案,还是(尚)不支持? 1809版是否有帮助? 还有其他聪明的主意吗?

1 个答案:

答案 0 :(得分:0)