在BTSNTSvc64.exe.config文件中的<system.runtime.remoting> </system.runtime.remoting>下应该是什么?

时间:2014-12-05 12:42:06

标签: c# .net biztalk

任何人都可以告诉我应该在

之下 BTSNTSvc64.exe.config文件中的

<system.runtime.remoting>

1 个答案:

答案 0 :(得分:1)

http://msdn.microsoft.com/en-us/library/aa560795.aspx

<system.runtime.remoting>

    <channelSinkProviders>
        <serverProviders>
            <provider id="sspi" type="Microsoft.BizTalk.XLANGs.BTXEngine.SecurityServerChannelSinkProvider,Microsoft.XLANGs.BizTalk.Engine" securityPackage="ntlm" authenticationLevel="packetPrivacy" />
        </serverProviders>
    </channelSinkProviders>

    <application>
        <channels>
            <channel ref="tcp" port="0" name="">
            <serverProviders>
                <provider ref="sspi" />
                    <formatter ref="binary" typeFilterLevel="Full"/>
                </serverProviders>
            </channel>
        </channels>
    </application>
</system.runtime.remoting>
相关问题