3

I am just creating one application which is start Solr from code side using ASP.NET Web Application. http://localhost:8080/solr/admin/ this link working perfect but am i startup initialize from code side it's give me error like file not found exception so please help me

code line :: Startup.Init("http://localhost:8080/solr");

error message :: System.IO.FileNotFoundException Could not load file or assembly 'HttpWebAdapters, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.

Thanks.

4

1 回答 1

5

异常表示您缺少对 HttpWebAdapters 的引用,它是通常合并到 SolrNet 中的程序集。所有版本都将它合并到 SolrNet.dll 中,所以我猜你抓取了源代码,编译它,但没有运行合并目标,然后没有引用 HttpWebAdapters。

解决方案:

  • 使用二进制版本,或
  • 如果您需要尚未发布的内容,请使用构建服务器中的每晚构建,或者
  • 如果您确实需要从源代码构建,请确保您运行合并目标或在您的引用中包含 HttpWebAdapters.dll。
于 2010-11-17T22:06:01.547 回答