zoukankan      html  css  js  c++  java
  • [BTS] BizTalk Oracle Adapter Error 02

    --------------------------- WCF-Custom Transport Properties --------------------------- Error saving properties.

    (System.ArgumentException) Invalid binding.

      (System.IO.FileNotFoundException) Could not load file or assembly 'Oracle.DataAccess, Version=2.111.7.0, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. 系统找不到指定的文件。

     Resolution:

    Change BTSNTSrv.exe.config:

     1 <?xml version="1.0" ?>
     2 <configuration>
     3     <startup useLegacyV2RuntimeActivationPolicy="true">
     4         <supportedRuntime version="v4.0" />
     5     </startup>
     6     <runtime>
     7         <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
     8             <probing privatePath="BizTalk Assemblies;Developer Tools;Tracking;Tracking\interop" />
     9         </assemblyBinding>
    10       <dependentAssembly>
    11         <assemblyIdentity name="Oracle.DataAccess" publicKeyToken="89b483f429c47342" culture="neutral" />
    12         <bindingRedirect oldVersion="2.111.7.00" newVersion="2.111.7.20"/>
    13       </dependentAssembly>
    14     </runtime>
    15     
    16     <system.runtime.remoting>
    17     
    18         <channelSinkProviders>
    19             <serverProviders>
    20                 <provider id="sspi" type="Microsoft.BizTalk.XLANGs.BTXEngine.SecurityServerChannelSinkProvider,Microsoft.XLANGs.BizTalk.Engine" securityPackage="ntlm" authenticationLevel="packetPrivacy" />
    21             </serverProviders>
    22         </channelSinkProviders>
    23     
    24         <application>
    25             <channels>
    26                 <channel ref="tcp" port="0" name="">
    27                     <serverProviders>
    28                         <provider ref="sspi" />
    29                         <formatter ref="binary" typeFilterLevel="Full"/>
    30                     </serverProviders>
    31                 </channel>
    32             </channels>
    33         </application>
    34     </system.runtime.remoting>
    35     
    36 </configuration>
  • 相关阅读:
    Windows安装Linux虚拟机(CentOS7)
    模拟随机双色球
    git忽略文件夹提交以及gitignore修改后不生效的解决办法
    PHP随手记2--获取随机n位不重复字符
    PHP随手记1--内置函数date
    cocos2d-x源码分析-----触摸事件的实现
    cocos2d-x源码分析-----主循环(android)
    2014年的计划
    cocos2d-x源码分析-----入口分析(android)
    C++中二进制数据强制转换问题
  • 原文地址:https://www.cnblogs.com/xuzhong/p/3138897.html
Copyright © 2011-2022 走看看