Author Archives: Pankaj

Unknown's avatar

About Pankaj

I am a Developer and my linked profile is https://www.linkedin.com/in/pankajsurti/

New to InfoPath 2010? Try this…

4 Labs http://www.infopathdev.com/blogs/jennifer/archive/2010/07/01/free-training-design-your-infopath-form-template-lab-1.aspx http://www.infopathdev.com/blogs/jennifer/archive/2010/07/08/free-training-lab-2-make-your-infopath-form-template-look-and-work-better.aspx http://www.infopathdev.com/blogs/jennifer/archive/2010/07/14/free-training-lab-3-making-it-smarter.aspx http://www.infopathdev.com/blogs/jennifer/archive/2010/07/23/free-training-lab-4-track-responses-from-your-event-form.aspx Also download Chaper09 code from the Professinal SharePoint 2010 Development book. http://www.wrox.com/WileyCDA/WroxTitle/Professional-SharePoint-2010-Development.productCd-0470529423,descCd-DOWNLOAD.html

Posted in Uncategorized | Leave a comment

“The HTTP request is unauthorized with client authentication scheme ‘Anonymous’. The authentication header received from the server was ‘NTLM’.”

I spent more than 4 hours to resolve the following error. “The HTTP request is unauthorized with client authentication scheme ‘Anonymous’. The authentication header received from the server was ‘NTLM’.” I got this error when I tried to write a … Continue reading

Posted in Uncategorized | 2 Comments

Content Type Hub in 2010

The following links were helpful whenever I have done Content Type Hub worl. View error logs for content type publishing http://office.microsoft.com/en-us/sharepoint-server-help/view-error-logs-for-content-type-publishing-HA101631504.aspx Republish all hub content types in SharePoint using PowerShell http://get-spscripts.com/2010/11/republish-all-hub-content-types-in.html Content Type Hub (Sharing or Syndication) SharePoint Server 2010 … Continue reading

Posted in Uncategorized | Leave a comment

Extract WSP Solutions from SharePoint using PowerShell

I used this blog (http://www.sharepointbleached.com/2011/03/extract-wsp-solutions-from-sharepoint.html) to get the script. The following simple PowerShell script will iterate through the solution store and write the WSP packages to file: Start-Transcript “c:\wsp\transcript.txt” [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”)   $solutions = [Microsoft.SharePoint.Administration.SPFarm]::Local.Solutions; foreach ($solution in $solutions) {    $solution.SolutionFile.SaveAs(“c:\wsp\” … Continue reading

Posted in MOSS 2007, SharePoint, SharePoint 2010, Technical Stuff | Leave a comment

The Ultimate Guide to Visual Studio 2010

Summary I had an opportunity to attend the following MS Event at the Downers Grove IL office. The Ultimate Guide to Visual Studio 2010 (Coding, Debugging, Modeling, Testing, Building and Deployment) By Clint Edmonson & Zain Nabouski I would like … Continue reading

Posted in Technical Stuff | Leave a comment

Unknown SPRequest error occurred. More information: 0x80020009

I got the following exception when I add the custom web part. Unable to add selected web part(s). WPIndexingOutcomeSummary: Exception occured. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION) There is very little information MOSS 2007 leaves for such exception. (The SharePoint 2010 … Continue reading

Posted in MOSS 2007, SharePoint, Technical Stuff | 1 Comment

Orphanded Site objectes in MOSS 2007

At the client side I was asked to create a site using their legacy code. The code failed to create a new site and gave an error the “site already exists”. In the CA I was able to see the … Continue reading

Posted in MOSS 2007, SharePoint, Technical Stuff | Leave a comment

Cricket 2011 Schedule

Day Date Country Vs Country Venue GMT CST Winner (Win-Loss) Sa Feb. 19 Bangladesh India Dhaka (0830) (0230) India  (1-0) Bangladesh (0-1) Su Feb. 20 New Zealand Kenya Chennai (0400) (2200) New Zealand(1-0) Kenya (0-1) Su Feb. 20 Sri Lanka … Continue reading

Posted in Cricket | Leave a comment

Web Objects in XML aka WOX

http://woxserializer.sourceforge.net/index.html I first found about the WOX from MSDN article. It is cool that these platform has a way to come to common ground. Good for us developers.

Posted in Technical Stuff | Leave a comment

Face book API

Today and last week as well, in my project I had to go through the FaceBook API. The API is located here. http://developers.facebook.com/docs/reference/api/user The API is very straight forward call to the REST service. For testing, you will need to … Continue reading

Posted in Facebook Developers Info | Leave a comment