我有一个 Web 服务,一旦部署就神秘地需要其他 DLL 才能工作。
我有一个在C:\inetpub\wwwroot\MyWebsite中运行的网站和在C:\inetpub\wwwroot\MyWebsite\WebService中运行的 Web 服务
我在 IIS 中的 MyWebsite 网站下创建了一个应用程序(WebService,指向 C:\inetpub\wwwroot\MyWebsite\WebService)
运行 WebService 的 .svc 之一时,我得到:
Could not load file or assembly 'Blah.Web' or one of its dependencies. The system cannot find the file specified.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.IO.FileNotFoundException: Could not load file or assembly 'Blah.Web' or one of its dependencies. The system cannot find the file specified.
Blah.web 是用于 MyWebsite 的 DLL。为什么我的 WebService 突然需要这个 VS 2010 中甚至没有引用的 DLL?
它是 web.config 的东西吗?
谢谢,