Oracle的Webservice版本和客户端版本不同的解决方法

来源:互联网 发布:微信连接不了网络 编辑:程序博客网 时间:2024/05/19 02:45

在connectionStrings标签下追加下面标签。

  <runtime>

    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Oracle.DataAccess" publicKeyToken="89b483f429c47342" />
        <bindingRedirect oldVersion="2.112.3.0" newVersion="2.112.1.0" />
      </dependentAssembly>
    </assemblyBinding>

  </runtime>

oldVersion是Webservice版本。

newVersion是客户端版本。

阅读全文
0 0
原创粉丝点击