Joao Livio { MIX ~ UP on USA}

Browse by Tags

All Tags » SharePoint 2010 (RSS)
How to Redirect to Page in a SharePoint Sandbox
Just add this to the End of your procedure CODE Literal   ltrl   =   new   Literal    {      Text   =         "<script  language='javascript'>window...
Get a Web Template from Office 365
  private   static   SPWebTemplate   GetTemplate(SPWeb   web,   string   templateTitle)         {             SPWebTemplateCollection...
Get the FBA User Logged
private   static   string   GetMyFbaUserProperty {     get     {         string   fbaUser   =   HttpContext .Current.User.Identity.Name ;        ...
Join me on my Session of WCM Migration SharePoint
Migração: Soluções WCM 2007 para SharePoint 2010 (WSPBuilder,Web Applications, Content Databases) (12 May) At: www.sharepointpt.org (Microsoft Portugal) pt-PT  Inscrições: http://spugptmeeting20.eventbrite.com Link LiveMeeting: a anunciar Agenda...
Get WebApplication Sites and Structure with T-SQL
Hi! Today i had the need to get an Intranet Structure using a SharePoint Content DB. Because i don’t want to run in Production or Quality i restored the Content DB Backup to my Developer Laptop. This procedure return all List in Web also T-SQL  ...
Microsoft Online Services Diagnostics and Logging
Overview MOSDAL Support Toolkit collects system configuration, network configuration, service-based applications' configuration and logging data along with performing network diagnostics. MOSDAL Support Toolkit can be used by anyone having issues...
Create a WebPart Dynamically thru a DWP (XML File Exported)
This method will create a WebPart within a XML File DWP that is an exported WebPart file when you export by clicking his option. webSite = SPSite wpId = ZoneID wpZi = ZoneID wpPage = Page Name wpDwp = DWP File By my tests the ZoneID sometimes is not assumed...
SharePoint n-tier architecture Projects (Only My Point of View)
N-tier application architecture provides a model for developers to create a flexible and reusable application. By breaking up an application into tiers, developers only have to modify or add a specific layer, rather than have to rewrite the entire application...
Introduction to Property Bags in SharePoint
Original Article in www.sharepointpt.org Portuguese Format written by me DEFINITIONS For those not familiar with the Property Bags, what are they? A place to store metadata or properties of your SharePoint sites. The Property Bags are implemented as an...
How to Get File Extension from Document in List and Render
SPListItemCollection   coll   =   SPWeb.Lists[ "Documents" ].GetItems(query) ; foreach   (SPListItem   item   in   coll) {       string   ext   =   Path .GetExtension(item...
SharePoint 2010 with OCR
Original Article in www.sharepointpt.org Portuguese Format written by me In this article I will address a simple way to get images from SharePoint and process OCR  using the Tessnet2 OCR. NET 2.0 assembly OCR . OCR is an English acronym for Optical...
Creating a Enterprise Fast Search Service Application VIDEO
Joao Livio
Create a Metadata (Taxonomy) Service Application SharePoint 2010 – INTRO
LEVEL 100 Taxonomy is the practice and science of classification.In addition, the word is also used as a count noun: a taxonomy, or taxonomic scheme, is a particular classification. First think go to Central Administration and Application Management,...
Installing and Configuring SharePoint 2010 (Farm) + Language Pack + SP1
Task List SharePoint 2010 Language Pack pt-PT SharePoint 2010 SP1 Language Pack pt-PT SP1 Configure FARM INSTALLING First of all you have to configure your Windows 2008 R2 System as you want e.g implement NLB etc… 1 – Run SharePoint Installer and install...
Convert a MOSS WspBuilder Project to SharePoint 2010 (Part I)
With the introduction of SharePoint 2010 there were some changes in terms of Object Model and Structure of Master Pages and Page Layouts derived from the introduction of the Ribbon and introduction of new methods. The cost of creating a project from scratch...
An exception occurred when trying to issue security token
An exception occurred when trying to issue security token: The content type text/html; charset=utf-8 of the response message does not match the content type of the binding (application/soap+msbin1). If using a custom encoder, be sure that the IsContentTypeSupported...
Error occurred in deployment Activate Features was found in the current site collection or in a subsite (Upgrade)
Hi! I was upgrading a 2007 project to SharePoint 2010, so I came up with this error when activating my feature. Error occurred in deployment step ‘Activate Features’: The field with Id {xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx} was found in the current site collection...
CLSID {BDEADF26-C265-11D0-BCED-00A0C90AB50F} failed due to the following error: 80040154
I was building a Windows Forms Application in order to change some things in SharePoint 2010, then I came up with this error Retrieving the COM class factory for component with CLSID {BDEADF26-C265-11D0-BCED-00A0C90AB50F} failed due to the following error...
Using stsadm–o adduser in SharePoint 2010
I was adapting some STSADM scripts from MOSS in order to run in SharePoint 2010 so I can reuse all scripts saving hours of work wit PowerShell. So one of my problems was adapting the ADDUSER, I could solve it like this: OLD SCRIPT stsadm -o adduser -url...