随笔分类 -  TroubleShoot

1 2 下一页
'Add Solution': A timeout has occurred while invoking commands in SharePoint host process.
摘要:一、问题描述:在部署SharePoint solution的时候,出现Time out 的问题,错误提示:Error occurred in deployment step 'Add Solution': A timeout has occurred while invoking commands ... 阅读全文
posted @ 2015-07-04 15:32 欣静赏悦 阅读(548) 评论(0) 推荐(0)
TroubleShoot: Excel Services Fix - "The workbook cannot be opened".
摘要:1. 问题描述:在SharePoint 2013文档库中打开Excel文件提示"The workbook cannot be opened"错误提示框,文档不能正常显示。2、问题原因:这个错误的原因应该是ExcelService的帐号对Content Database没有合适的访问权限。当你上传一个... 阅读全文
posted @ 2015-05-12 09:43 欣静赏悦 阅读(455) 评论(0) 推荐(0)
TroubleShoot:The context has expired (0×80090317)
摘要:网上搜了一下,服务器上的时间不正确,在SharePoint 设置中,可以通过管理中心设置下Time Zone 和服务器的时间上一致. 阅读全文
posted @ 2015-01-10 13:36 欣静赏悦 阅读(191) 评论(0) 推荐(0)
TroubleShoot: SharePoint 2013: ExecuteOrDelayUntilScriptLoaded 页面发布后不执行的问题
摘要:SharePoint 2010 中的ExecuteOrDelayUntilScriptLoaded,在2013 中使用时没有效果的问题。Example:SharePoint 2013 Code:SP.SOD.executeFunc('sp.js', 'SP.ClientContext', share... 阅读全文
posted @ 2014-11-04 16:22 欣静赏悦 阅读(642) 评论(0) 推荐(0)
TroubleShoot: SPD 2013 工作流模板问题解决办法
摘要:1. 问题描述:SPD 2013 不能使用2013 工作流模板,在创建过程中,下载更新信息时出现以下错误描述:The server has tried to deliver this message, without success, and has stopped trying. Please t... 阅读全文
posted @ 2014-10-31 09:50 欣静赏悦 阅读(299) 评论(0) 推荐(0)
TroubleShoot:网站设置找不到术语管理
摘要:在SharePoint站点中找不到“术语管理”这个链接功能。解决方案:Enable-SPFeature -id “73EF14B1-13A9-416b-A9B5-ECECA2B0604C” -Url Stsadm.exe -o activatefeature -id 73EF14B1-13A9-416b-A9B5-ECECA2B0604C –url http:// –force 阅读全文
posted @ 2014-03-14 18:26 欣静赏悦 阅读(240) 评论(0) 推荐(0)
TroubleShoot:IE10安装后调试提示框信息
摘要:一、描述:安装了IE10后,使用VS2010调试网站时,会出现一个提示框信息“Attaching the Script debugger to process 'iexplore.exe' on machine '' failed. A debugger is already attached.”。二、原因:不详,估计IE10安装后,覆盖了原有的设置。三、解决方案:Run the following script from command prompt as Administrator:64-Bit Systems: regsvr32.exe "%Pr 阅读全文
posted @ 2013-04-02 16:06 欣静赏悦 阅读(403) 评论(0) 推荐(0)
OLEDB 连接EXCEL的连接字符串IMEX的问题
摘要:今天碰到一个问题需要想EXCEL表中写数据,折腾了好久才发现是IMEX惹得祸,所以记录下提醒自己,也希望大家不要出同样的错。碰到问题:使用语句 "insert into [Sheet1$] (大类) values ('test')" 无法插入 。原因:Provider=Microsoft.Jet.OLEDB.4.0;Data Source='2008-08.xls'; Extended Properties='Excel 8.0;HDR=Yes;IMEX=1'解决方法: 去掉IMEX=1补充:向EXCEL插入数据时 数据类型是 阅读全文
posted @ 2012-11-14 11:07 欣静赏悦 阅读(4657) 评论(0) 推荐(0)
SharePoint 2007 and 2010 的服务器场的端口
摘要:由于要把一台SharePoint Server放到外网去,就把IP改到DMZ区了,结果除了系统管理员,其他帐号都无法验证通过,肯定是一些端口没开.网上一查,SharePoint所需要的端口还真多,不过Client和WFE之间的应该开放80和443就OK了,其余的都是SharePoint Server之间,或者和公司网络环境的. 具体如下:SharePoint 2007 PortsInbound/Outbound From Port TypeTo Inbound Client IPs (as applicable) TCP 80 or 443 (SSL)HTTPISA Web Pub or WF 阅读全文
posted @ 2012-07-27 11:40 欣静赏悦 阅读(2468) 评论(0) 推荐(0)
TroubleShoot:WINDOWS 2008 配置 excel DCOM
摘要:一、Excel COM组件访问错误1.1、问题描述:客户端调用Excel Com组件进行程序操作时,出现以下错误:Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005. 1.2、错误原因:这个是由于Web程序的当前访问用户,无法操作服务器资源造成的。1.3、解决方案: 1.在"开始"->"运行"中输入dcomcnfg.exe 阅读全文
posted @ 2012-07-12 16:09 欣静赏悦 阅读(1493) 评论(1) 推荐(0)
TroubleShoot:.NET调用Java WebServices的问题解决
摘要:一、问题:项目中需要使用在Java项目中的WebService,添加引用也成功了,C#客户端可以识别到自定义对象,也生成了代理类,可是调用时无法获取到对象的属性值。不是报无法反序列化XX类,就是返回NULL,得不到结果。二、原因:直接在项目添加时,命名空间会出现问题,这位老兄说的比较透彻:http://www.ibm.com/developerworks/cn/webservices/ws-tip-j2eenet3/index.html?S_TACT=105AGX52&S_CMP=tag-csdn三、解决方案:网上找了一大堆,都是些说教的,怎么引用添加。解决办法很简单:不要在VS项目中 阅读全文
posted @ 2012-05-17 17:43 欣静赏悦 阅读(198) 评论(0) 推荐(0)
TroubleShoot:C#操作Excel的几个问题
摘要:一、异常提示找不到Excel.dll文件 问题解决了,具体异常没有记下来~ 这个是应用程序的32位、64位的问题。 解决方案: 1、安装64位的数据访问组件 AccessDatabaseEngine_x64_en.exe。 2、使用WebService、WCF。 3、Web程序的话,启用应用程序池,兼容32位程序。二、异常来自 HRESULT:0x800A03EC 这个问题怪怪的,按说是一个常规错误,结果搞得那么神秘。 原因是excel.Cells 是一个数组,下标不能从0开始。 解决方案:下标excel.Cells(i,j+1);三、读取时提示未知格式 应该是Excel文... 阅读全文
posted @ 2012-02-03 17:50 欣静赏悦 阅读(324) 评论(0) 推荐(0)
Linq to SharePoint中一个列表包含多个Content Type问题
摘要:在Parameters.xml文件中指定包含的内容类型:<List Name="SingleProblem" Member="SingleItems"> <ContentType Name="项目" class="SingleItem"/> <ContentType Name="TestCT" class="TestItem"/> </List>在内容类型XML中添加字段ContentType:<Column Name=& 阅读全文
posted @ 2012-01-30 22:57 欣静赏悦 阅读(245) 评论(0) 推荐(0)
TroubleShoot:分配对象查询的问题
摘要:一、问题:在使用SPQuery的时候,CAML查询分配对象是当前帐号的时候,查不出来与自己相关的。相关CAML如下:string caml = "<Where><Eq>";caml += "<FieldRef Name='AssignedTo' LookupId='True'/>";caml += "<Value Type='User'>" + SPContext.Current.Web.CurrentUser.ID + "< 阅读全文
posted @ 2012-01-09 16:55 欣静赏悦 阅读(180) 评论(0) 推荐(0)
This Task Is Currently Locked by a Running Workflow and Cannot Be Edited
摘要:Problem: In SharePoint Workflow, "This task is currently locked by a running workflow and cannot be edited" is the common exception, that we face.Solution: Generally this exception occurs 1. when the number of items in the Task List gets highThis exception says that the workflow is not abl 阅读全文
posted @ 2011-11-02 11:16 欣静赏悦 阅读(584) 评论(0) 推荐(0)
虚拟机克隆后改SID
摘要:一、Windows 2003操作系统改SID使用SYSPREP 修改:可以在Win2K或WinXP的完整安装光盘中或安装文件中找到,路径是\SUPPORT\TOOLS,文件名是deploy.cab。解压这个CAB包后可得到这个文件。运行时,选择“重新封装”、“不重置激活的使用期”。重新启动就可以了。二、Windows2008 SP2之前版本改SID使用NewSID这个小程序修改:可以在http://technet.microsoft.com/en-us/sysinternals/bb897418.aspx获得。运行时,按照提示一步一步执行。三、Windows2008 R2改SIDNEWSID工 阅读全文
posted @ 2011-09-01 11:05 欣静赏悦 阅读(2861) 评论(0) 推荐(0)
一次安装过程中的问题总结
摘要:一、Hyper-V的Virtual Machine Management(Vmms)不能启动 这个应该是Beta版的Windows 2008才会出现的问题,可以通过以下方式解决: 控制面板——区域和语言选项——把对话框中的四个选项卡都选择为“英语”——在“管理”选项卡选择复制到所有帐户卸载已安装的Hyper-V,再重新安装,OK;哎,谁让Windows是人家的呢!忍了~~ 装是装上了,可是打开Hyper-v的角色时,又有错误了,提示“User had not accepted the EULA ”。 在查资料后,需要安装一个补丁,具体地址http://www.microsoft.com... 阅读全文
posted @ 2011-08-26 18:02 欣静赏悦 阅读(272) 评论(0) 推荐(0)
TroubleShoot:SharePoint 2010中添加HttpModule问题
摘要:今天在SharePoint 2010中加个HttpModule,像以往一样加在了<httpModules>节点下。郁闷了,不管怎么整,就是不触发,不起作用。只好搜索一番,结果找到了原因,SharePoint 2010 默认将所有的 httpModule 配置在 IIS7 专有的system.webServer/modules节中。其实是因为IIS 7的原因,应该发布在&IIS 7上的站点都有这个问题。可以按一下方式解决:1、设置IIS 7的应用程序池为Classic(经典)模式,可以按照这种方式添加 <configuration> <system.web> 阅读全文
posted @ 2011-08-03 15:24 欣静赏悦 阅读(584) 评论(5) 推荐(0)
页面重定向Redirect时产生错误
摘要:一、错误描述:在调试工作流结束后重定向到新的页面时,执行下面代码,SPUtility.Redirect(taskList.DefaultViewUrl, SPRedirectFlags.UseSource, HttpContext.Current);产生了以下错误,这个错误在Response.Redirect方法使用时,也会产生。错误信息:Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.二、错误原因:在重定向时,Request的请求 阅读全文
posted @ 2011-07-12 18:07 欣静赏悦 阅读(557) 评论(0) 推荐(0)
TroubleShoot:该搜索请求无法连接到搜索服务
摘要:建了服务器场,包括2个DB,2个AP, 2个Web,测试通过。可是在网站搜索时出现了错误“该搜索请求无法连接到搜索服务”,重新爬了几次网,在日志里可以看到爬网正常,可还是出现这个错误。网上找了下,总结了从以下几个方面着手:1、在管理中心——管理服务器上的服务——Office SharePoint Server 搜索——进入搜索设置页面, 选中以下两个选项:使用此服务器索引内容、使用此服务器提供搜索查询服务2、"SharePoint 3.0 管理中心" -> 应用程序管理 -> 内容数据库 -> 管理内容数据库设置 -> 搜索服务器 中选择WSS安装所 阅读全文
posted @ 2011-07-08 15:21 欣静赏悦 阅读(611) 评论(0) 推荐(1)

1 2 下一页