打开 SPSite 对象时出现 Filenotfound 异常 - x64
我创建了一个简单的 asp.net 应用程序来打开网站并显示相应网站的标题。但我在尝试打开该网站时遇到 FileNotFoundException。当我在控制台应用程序中运行相同的代码时,它可以完美地工作。
我的规格
Windows Server 2008 R2 x64, SharePoint 2007 x64, Visual Studio 2005
我的 asp.net 应用程序目标设置为“任何 CPU”。
就权限而言,我已经检查了 VS2005 托管 asp.net 应用程序所使用的当前身份是否具有完整的权限。事实上,我在 IIS 中对应用程序池使用了相同的标识。
作为 asp.net Web 应用程序
作为控制台应用程序
有什么想法吗?
代码
using (SPSite site = new SPSite("http://dev01/"))
{
using (SPWeb web = site.OpenWeb())
{
Response.Write(web.Title);
}
}
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);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
右键单击解决方案 -->proterties-->调试-->使用 url 启动浏览器->此处提供 url (("
Right click on the solution -->proterties-->Debug-->Start browser with url->here provide the url (("http://dev01/").
当使用 VS 2010 开发 SharePoint 2007 的解决方案时,我遇到了这个问题。当我使用 VS 2005 创建相同的解决方案时,我没有任何问题。我猜想某些 dll 在 x86 和 x64 之间不匹配。我想我需要稍微调整一下才能使 VS 2010 与 SharePoint 2007 一起工作。
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.