Posts

Showing posts from May, 2011

Sharepoint Videos

http://www.bing.com/videos/watch/video/overview-of-the-sharepoint-2010-developer-platform-sharepoint-dev-conference-oct/10tt5unqa?from=sharepermalink&cpkey=93872598-0349-442f-85bd-9ee9487e5127%7c%7c%7c%7c

Delegates

http://www.akadia.com/services/dotnet_delegates_and_events.html

Sharepoint with Powershell

http://sharepoint.microsoft.com/blogs/zach/Lists/Posts/Post.aspx?ID=7 http://blumenthalit.net/blog/Lists/Posts/Post.aspx?ID=30

How does Sharepoint work?

Q.How Does SharePoint work? Ans. The browser sends a DAV packet to IIS asking to perform a document check in. PKMDASL.DLL, an ISAPI DLL, parses the packet and sees that it has the proprietary INVOKE command. Because of the existence of this command, the packet is passed off to msdmserv.exe, who in turn processes the packet and uses EXOLEDB to access the WSS, perform the operation and send the results back to the user in the form of XML. Ref: http://mysharepointwork.blogspot.com/2011/05/sharepoint-interview-questions-iii.html

SPWeb Dispose Patterns

http://blogs.msdn.com/b/rogerla/archive/2008/02/12/sharepoint-2007-and-wss-3-0-dispose-patterns-by-example.aspx

How to link your Site Definition with Site Template

When you have a new site definition (onet.xml) is ready, and in order to make that definition available into site template you have to create a webtemp*.xml file into 12\template\1033\xml\webtemp*.xml. The following is the thumb rule to create web temp file. The name of the template must match the name of the folder in which you store the site definition. Every site definition needs a unique identifier on your computer. The site definition allows for one configuration as you have defined it in Onet.xml. If you store your onet.xml in MyCustomSite folder ( 12\Template\SiteTemplates\MyCustomSite\XML\Onet.xml) you have to create your webtemp file as webtempMyCustomSite.xml in 12\Template\1033\XML\webtempMyCustomSite.xml. Make sure you have unique configuration ids maintained across the webtemp*.xml files on the computer. Ref: http://msdn.microsoft.com/en-us/library/dd583160(office.11).aspx

Enable Sharepoint Errors

By default Sharepoint won't show you actual error if any error occurs in the application. We have to disable custom errors & Callstack to true on web.config page. http://blog-sharepoint.blogspot.com/2009/12/sharepoint-webconfig-how-to-show-full.html