对象引用未设置为构建网站上的对象实例

时间:2013-04-29 14:17:22

标签: asp.net .net .net-remoting

我有一个网站,它只是作为远程服务器服务器,并在其web.config文件中有远程配置。

<system.runtime.remoting>
    <application>
      <service>
        <activated type="abc.def.ghi"/>
      </service>
      <channels>
        <channel ref="http" machineName="localhost"/>
      </channels>
    </application>
  </system.runtime.remoting>

除了这个web.config文件外,它只包含这些文件:

dataConfiguration.config
enterpriseLibrary.config
log.config
website.publishproj
bin文件夹 - 具有通过远程处理从此项目提供的DLL

当我构建网站时,我收到构建错误:

  

“对象引用未设置为对象的实例”。

如何调试导致此错误的原因以及如何删除它?

请告知。

1 个答案:

答案 0 :(得分:3)

问题已解决。我在web.config中有一个程序集引用,其中它与bin文件夹中存在的程序集之间存在版本不匹配:

<add assembly="Oracle.DataAccess, Version=4.112.3.0, Culture=neutral, PublicKeyToken=89B483F429C47342"/>