摘要: 在SharePoint2007中,自定义写代码,如何在SharePoint中使用该功能,简单总结为:1)写代码。2)创建一个强签名strong-name的Assembly.3)用程序注册.以下这篇博客写了creating and adding an event handler的全过程。http://farhanfaiz.wordpress.com/2007/12/31/creating-adding-an-event-handler/15/1)site下new doc lib - DLOne,add column - Comment。2)In VS->new project->Cl 阅读全文
posted @ 2012-05-24 00:46 l'oiseau 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 全局程序集缓存(GAC): 计算机范围内的代码缓存,它存储专门安装的程序集,这些程序集由计算机上的许多应用程序共享。在全局程序集缓存中部署的应用程序必须具有强名称。GAC全称是Global Assembly Cache,他的作用是可以存放一些有很多程序都要用到的公共Assembly,例如System.Data、System.Windows.Forms等等。这样,很多程序就可以从GAC里面取得Assembly,而不需要再把所有要用到的Assembly都拷贝到应用程序的执行目录下面。举例而言,如果没有GAC,那么势必每个WinForm程序的目录下就都要从C:\WINDOWS\Microsoft.N 阅读全文
posted @ 2012-05-24 00:07 l'oiseau 阅读(8020) 评论(0) 推荐(0) 编辑
摘要: 简单来说,当客户端得到503的报错时,一般是由于IIS中的Application pools和sites引起的。1. 检查App pool是否是started的状态.2. sites是否是start的状态.3.App pool的Advanced settings->Process Model->Identity 用户重置一下.503是一种HTTP状态码。英文名503 Service Unavailable与404(404 Service Unavailable)是同属一种网页状态出错码。前者是服务器出错的一种返回状态,后者是网页程序没有相关结果后返回的一种状态。出现503错误,其日 阅读全文
posted @ 2012-05-21 20:56 l'oiseau 阅读(1414) 评论(0) 推荐(0) 编辑
摘要: The components that are involved in a crawl.1.Content Host This is the server that hosts/stores the content that your indexer is crawling. For example, if you have a content source that crawls a SharePoint site, the content host would be the web front end server that hosts the site. If you are crawl 阅读全文
posted @ 2012-05-20 21:00 l'oiseau 阅读(406) 评论(0) 推荐(0) 编辑
摘要: The indexing processContent Source(Start Addresses)->Protocol Handler(ie.HTTP)->IFilters(Office Docs, HTML files PDFs, etc.)->Word Breakers->Stemmers->Noise Word->index Catalog.Indexing process start with the content source and the start address(es). Once the protocol handler and I 阅读全文
posted @ 2012-05-20 20:58 l'oiseau 阅读(168) 评论(0) 推荐(0) 编辑
摘要: wokrflow可以实现很多功能,在sharepoint designer里file->new->workflow。在07中,用system account不能自动触发workflow。 阅读全文
posted @ 2012-05-14 13:42 l'oiseau 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 当在managed service application 中new 一个service Application,就相当于new了一个service application instance, 就好像是新建了一个类的实体。然后在services on server中start service,相当于start service instance,类似于在一台电脑中加载了之前的class去运行。 阅读全文
posted @ 2012-05-14 13:36 l'oiseau 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Type: Get-ChildItem|ForEach-object{$_.name, $_.length}Type: get-childItem|select name, lengthC:\>Get-Alias| Get-Member -MemberType Property Get-Alias | Where-Object {$_.Definition -eq "Clear-Host"}用Powershell 命令能获得某个List,并对 List 视图进行修改:Add-PSSnapIn Microsoft.SharePoint.Powershell$site = 阅读全文
posted @ 2012-05-14 13:34 l'oiseau 阅读(214) 评论(0) 推荐(0) 编辑
摘要: NTLM: rely on IIS. need authentication every time you access to secure resources. Kerberos: rely on a ticket system (KDC). access to multiple secure resources after a single successful authentication. Safer and faster. SPN is essential.首先客户向IIS询问支持哪些认证方式,IIS回答支持NTLM、Kerberos等,客户端选择NTLM方式发送用户名和密码,IIS 阅读全文
posted @ 2012-04-19 10:53 l'oiseau 阅读(510) 评论(0) 推荐(0) 编辑
摘要: SharePoint2010中涉及到Import Profile,可以查看三个地方的参数:1.Service.msc FIM的状态;2.Program Files\Microsoft Office Services\14\Synchronization Service\MaData;3.Regedit HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\FIMSynchronizationService. 阅读全文
posted @ 2012-04-16 11:34 l'oiseau 阅读(221) 评论(0) 推荐(0) 编辑