Tuesday, January 29, 2008
Friday, January 25, 2008
Error Integration MOSS Picture Library with Silverlight
Silverlight error message
ErrorCode: 4001
ErrorType: ImageError
Message: AG_E_NETWORK_ERROR
I got this error while implementing the MOSS picture library with Silverlight . I was following the article by Ian Morrish
http://www.wssdemo.com/Pages/silverlight.aspx
but due to some reason i got stuck with this error , after some hours of brain shakedown it came to my notice that the Picture library was not properly referenced in my XSLT .
ErrorCode: 4001
ErrorType: ImageError
Message: AG_E_NETWORK_ERROR
I got this error while implementing the MOSS picture library with Silverlight . I was following the article by Ian Morrish
http://www.wssdemo.com/Pages/silverlight.aspx
but due to some reason i got stuck with this error , after some hours of brain shakedown it came to my notice that the Picture library was not properly referenced in my XSLT .
Thursday, January 24, 2008
Profile Picture Upload
Tool to upload Profile Picture .
http://www.wssdemo.com/Lists/Resources/DispForm.aspx?ID=932&Source=http%3A%2F%2Fwww%2Ewssdemo%2Ecom%2Fpages%2Ftools%2Easpx
http://www.wssdemo.com/Lists/Resources/DispForm.aspx?ID=932&Source=http%3A%2F%2Fwww%2Ewssdemo%2Ecom%2Fpages%2Ftools%2Easpx
Wednesday, January 23, 2008
Records Management using Record Center Site
A great article on implementation of Records Management in MOSS
http://technet2.microsoft.com/Office/en-us/library/271017e8-7f23-4166-9501-140ad2fc555d1033.mspx?mfr=true
http://office.microsoft.com/en-us/sharepointserver/CH101824451033.aspx
http://technet2.microsoft.com/Office/en-us/library/271017e8-7f23-4166-9501-140ad2fc555d1033.mspx?mfr=true
http://office.microsoft.com/en-us/sharepointserver/CH101824451033.aspx
Interactive Media Manager
I always thought about Microsoft product for media industy and here it's on the way , that too well integrated with MOSS.
http://www.microsoft.com/resources/mediaandentertainment/solutions_imm.mspx
http://www.microsoft.com/resources/mediaandentertainment/solutions_imm.mspx
Friday, January 18, 2008
Migrating List and Document Libraries in MOSS between servers
List / Document Library Migration
Have you ever got the requirement of just migrating a list/Document Library between servers and not the whole site ?
Well then you are at right place, just down load the tool and start migrating the list with all metadata intact .
Happy Migrating !!!
Download Tool
Have you ever got the requirement of just migrating a list/Document Library between servers and not the whole site ?
Well then you are at right place, just down load the tool and start migrating the list with all metadata intact .
Happy Migrating !!!
Download Tool
User Profile Import is not importing updated Manager Information from Active Directory in MOSS
Scenario:
User profile is imported and everything seems to work fine , later there is a change in organization structure for eg there is a manager change for person "x" .In order to reflect this information in sharepoint , you update the information in Active Directory and run import .
Issue :
SharePoint still showing the old manager for person"x" and doesn't seemed to be updated with profile import
Resolution :
Install WSS /MOSS SP1 and you are good to go ....
User profile is imported and everything seems to work fine , later there is a change in organization structure for eg there is a manager change for person "x" .In order to reflect this information in sharepoint , you update the information in Active Directory and run import .
Issue :
SharePoint still showing the old manager for person"x" and doesn't seemed to be updated with profile import
Resolution :
Install WSS /MOSS SP1 and you are good to go ....
Thursday, January 17, 2008
Printing SharePoint Web Part
Ever thought of printing a content of web part rather than complete page in sharepoint ?
Follow the Steps:
<>
< type="button" onclick="javascript:void(PrintWebPart())" value="Print Web Part">
< language="JavaScript">
//Controls which Web Part or zone to print
var WebPartElementID = "WebPartWPQ6";
//Function to print Web Part
function PrintWebPart()
{
var bolWebPartFound = false;
if (document.getElementById != null)
{
//Create html to print in new window var PrintingHTML = '\n\n';
//Take data from Head Tag if (document.getElementsByTagName != null)
{
var HeadData= document.getElementsByTagName("HEAD");
if (HeadData.length > 0)
PrintingHTML += HeadData[0].innerHTML;
}
PrintingHTML += '\n\n\n';
var WebPartData = document.getElementById(WebPartElementID);
if (WebPartData != null)
{
PrintingHTML += WebPartData.innerHTML;
bolWebPartFound = true;
}
else
{ bolWebPartFound = false; alert ('Cannot Find Web Part'); } } PrintingHTML += '\n\n'; //Open new window to print if (bolWebPartFound)
{
var PrintingWindow = window.open("","PrintWebPart", "toolbar,width=800,height=600,scrollbars,resizable,menubar"); PrintingWindow.document.open(); PrintingWindow.document.write(PrintingHTML); // Open Print Window PrintingWindow.print(); }}< /script>
Follow the Steps:
- Create Print Button : Add content Editor web part to your page and paste the following script as Source Text
<>
< type="button" onclick="javascript:void(PrintWebPart())" value="Print Web Part">
< language="JavaScript">
//Controls which Web Part or zone to print
var WebPartElementID = "WebPartWPQ6";
//Function to print Web Part
function PrintWebPart()
{
var bolWebPartFound = false;
if (document.getElementById != null)
{
//Create html to print in new window var PrintingHTML = '\n\n';
//Take data from Head Tag if (document.getElementsByTagName != null)
{
var HeadData= document.getElementsByTagName("HEAD");
if (HeadData.length > 0)
PrintingHTML += HeadData[0].innerHTML;
}
PrintingHTML += '\n\n\n';
var WebPartData = document.getElementById(WebPartElementID);
if (WebPartData != null)
{
PrintingHTML += WebPartData.innerHTML;
bolWebPartFound = true;
}
else
{ bolWebPartFound = false; alert ('Cannot Find Web Part'); } } PrintingHTML += '\n\n'; //Open new window to print if (bolWebPartFound)
{
var PrintingWindow = window.open("","PrintWebPart", "toolbar,width=800,height=600,scrollbars,resizable,menubar"); PrintingWindow.document.open(); PrintingWindow.document.write(PrintingHTML); // Open Print Window PrintingWindow.print(); }}< /script>
- In order to print content from web part you need to connect the desired web part to the print button
- Get the Div Id of web part from the Page Source and assign it to the variable in Button
Well you would like to check this for simpler explanation :
http://www.imakenews.com/mernstmann/e_article000435389.cfm
Wednesday, January 16, 2008
MOSS /WSS SP1 Released
MOSS SP1 :
http://www.microsoft.com/downloads/details.aspx?FamilyId=AD59175C-AD6A-4027-8C2F-DB25322F791B&displaylang=en
WSS SP1
http://www.microsoft.com/downloads/details.aspx?FamilyID=875da47e-89d5-4621-a319-a1f5bfedf497&displaylang=en
Note before starting upgrade :
http://www.microsoft.com/downloads/details.aspx?FamilyId=AD59175C-AD6A-4027-8C2F-DB25322F791B&displaylang=en
WSS SP1
http://www.microsoft.com/downloads/details.aspx?FamilyID=875da47e-89d5-4621-a319-a1f5bfedf497&displaylang=en
Note before starting upgrade :
- Take complete back up of farm before upgrading
- Read complete upgrade instruction
- Keep Fingures Crossed :-) for success
Determine whether the MOSS / WSS service packs are installed and there Version
Wondering weather you have SP1 installed in your server and if yes which version ...?
Well here is the answer
http://support.microsoft.com/kb/936984
Well here is the answer
http://support.microsoft.com/kb/936984
Wednesday, January 09, 2008
Granular Level Export/Import of data MOSS
Have you ever wondered what if u have to migrate just a list between servers ,do you need to buy third party tool . Nopes...
Just create a tool using API from Microsoft.SharePoint.Deployment Namespace and it's not as complex as you might think .
Check this great article with samples :
http://blogs.technet.com/stefan_gossner/archive/2007/08/30/deep-dive-into-the-sharepoint-content-deployment-and-migration-api-part-1.aspx
Happy Coding and New Year!!!
Just create a tool using API from Microsoft.SharePoint.Deployment Namespace and it's not as complex as you might think .
Check this great article with samples :
http://blogs.technet.com/stefan_gossner/archive/2007/08/30/deep-dive-into-the-sharepoint-content-deployment-and-migration-api-part-1.aspx
Happy Coding and New Year!!!
Subscribe to:
Posts (Atom)
Gray Failures: What is it and how to detect one?
If you are reading this article , i guess you are curious to know about gray failures and different methods to detect gray failures. Hopefu...
-
Note : In below scenario jenkins was deployed in Linux container Scenario: Jenkins build failed with error. java.io.IOException: error...
-
Ever wanted to have a people picker kind of control in Infopath form and that too in browser mode. Did i heard yes :) , well there is a Acti...
-
Simple concept but still pain in head if unable to figure out :) Response.Redirect("#");