Filenotfound exception while opening an SPSite object - x64

烈酒焚心 提交于 2019-12-25 01:44:14

问题


I've created a simple asp.net application to open a site and display the title of the corresponding web. But i'm getting FileNotFoundException while trying to open the site. The same code works perfectly when i run it in a console app.

My spec

Windows Server 2008 R2 x64, SharePoint 2007 x64, Visual Studio 2005

My target for the asp.net app is set to 'Any CPU'.

As far as permissions is considered i've checked that the current identity using under which VS2005 hosts the asp.net app is having full rights. In fact i've used the same identity for app pools in IIS.

As an asp.net web application

As a console application

Any ideas?

Code

using (SPSite site = new SPSite("http://dev01/"))
{
    using (SPWeb web = site.OpenWeb())
    {
         Response.Write(web.Title);
    }
}

回答1:


Right click on the solution -->proterties-->Debug-->Start browser with url->here provide the url (("http://dev01/").




回答2:


When developing a solution for SharePoint 2007 with VS 2010 i'm getting this problem. When i create the same solution with VS 2005 i dont have any issues. I guess some of the dlls are mismatching between x86 and x64. Guess i would need to tweak a bit to make VS 2010 working with SharePoint 2007.



来源:https://stackoverflow.com/questions/3615754/filenotfound-exception-while-opening-an-spsite-object-x64

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!