打开 SPSite 对象时出现 Filenotfound 异常 - x64

发布于 2024-09-17 08:38:20 字数 758 浏览 6 评论 0原文

我创建了一个简单的 asp.net 应用程序来打开网站并显示相应网站的标题。但我在尝试打开该网站时遇到 FileNotFoundException。当我在控制台应用程序中运行相同的代码时,它可以完美地工作。

我的规格

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

我的 asp.net 应用程序目标设置为“任何 CPU”。

就权限而言,我已经检查了 VS2005 托管 asp.net 应用程序所使用的当前身份是否具有完整的权限。事实上,我在 IIS 中对应用程序池使用了相同的标识。

作为 asp.net Web 应用程序

alt text

作为控制台应用程序

alt text

有什么想法吗?

代码

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

alt text

As a console application

alt text

Any ideas?

Code

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

錯遇了你 2024-09-24 08:38:20

右键单击解决方案 -->proterties-->调试-->使用 url 启动浏览器->此处提供 url (("

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

薄暮涼年 2024-09-24 08:38:20

当使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文