- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在控制台应用程序中的场服务器上实例化 SPSite 实例,并在参数中提供整个网站 ( http://sp2010/ )。我还确保运行 MyApp.exe 的帐户是网站集管理员。
但是,无论我想做什么,我都无法创建 SPSite 的实例。我总是返回“FileNotFoundException”。
有人有想法吗?
堆栈跟踪:
System.IO.FileNotFoundException: The Web application at http://localhost/sandbox could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application. at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken) at Microsoft.SharePoint.SPSite..ctor(String requestUrl) at Conchango.xyzzy.GetExistingDocument(String minId, String maxId, String titleFilter) in C:\Documents and Settings\Paul\My Documents\Visual Studio 2005\Projects\xyzzy\BDC_DocReview\BDC_DocReview\DocReviewFacade.asmx.cs:line 69
最佳答案
运行控制台应用程序的用户至少需要对 SharePoint 数据库具有读取权限,否则您将看到此类错误
关于sharepoint - 带有 SPSite 构造函数的 Sharepoint 2010 的 FileNotFound 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3775033/
为什么某些 SharePoint 示例使用 using (SPSite site = new SPSite(SPContext.Current.Web.Url)) { ... } 而不仅仅是简
我正在尝试为共享点搜索创建一个对象的 spsite,但由于找不到网站,我在生产中遇到异常 SPSite site = new SPSite("sitename"); ServerContext sco
我找不到 SPSite 的 namespace 到目前为止我已经导入了这些: using System; using System.Collections.Generic; using System.
我的场景是在 SPJobDefinition 的 Execute 方法中,我想遍历 Web 应用程序中的每个 SPSite。所以我有以下代码: foreach (SPSite site in this
我们有几个包含许多 DAL 的项目。许多共享点列表,如反射(reflect)在 C# 类中的客户、销售、提供商。我们通过抽象母类让每个对象都实现 IDisposable。例如,每次我们实例化一个对象以
我正在使用 sharpdevelop编写一个程序,将项目添加到 SharePoint 网站上的预先存在的列表中。 这是我的代码: using System.IO; us
我正在尝试获取远程 SharePoint URL 的 SPSite: SPSite site = new SPSite("http://remoteserver"); ...但我得到一个异常(exce
我很高兴继承了一个写得很糟糕的 SharePoint 项目。 显然,最初的开发人员是可重用代码的忠实粉丝(30% 的代码在 20 个项目中重用,而没有使用任何库——你猜怎么着?)。 我经常会发现他的代
我目前正在研究一个 TimerJob,它进行一些网站集管理。当作业运行时,它会查看一个列表以检索网站集的 Url,然后它会调用 SPSite.Exists()。检查该站点是否仍然存在。 为了测试 Ti
我有这个代码: using ( var site = new SPSite( myUrl ) ) { using ( var web = site.AllWebs[0] ) {
我正在开发一个使用对象模型将文档上传到 sharepoint 文档库的应用程序。我的应用程序在 LocalSystem 用户下作为 Windows 服务运行。在这里,上传时我需要将上下文设置为另一个用
我尝试在控制台应用程序中的场服务器上实例化 SPSite 实例,并在参数中提供整个网站 ( http://sp2010/ )。我还确保运行 MyApp.exe 的帐户是网站集管理员。 但是,无论我想做
我创建了一个以 32 位模式运行的批处理作业,因为它使用 32 位 COM 对象,这需要连接到 SharePoint 以更新列表。它在我的开发环境中工作,因为它是完整的 32 位。但在我的测试和生产环
有人知道为什么 SPSite.Exists(url) 返回 false 尽管 url 存在。 如果我检查上面的语句,它返回 false。 但是如果我直接使用,我可以毫无问题地打开网站 SPSite m
我们有一个基于混合(表单和 Windows)的 SharePoint 2010 站点,我正在尝试在 c# 中使用对象模型(命令行控制台应用程序,引用 Microsoft.SharePoint,解决方案
我是一名优秀的程序员,十分优秀!