Tuesday, February 20, 2007

SharePoint Caml Viewer for MOSS 2007

SharePoint Caml Viewer for MOSS 2007

SharePoint Caml Viewer for MOSS 2007 is available codeplex code repository site http://www.codeplex.com/SPCamlViewer.


SharePoint - CAMLEditor v1.0 is here to stay

SharePoint - CAMLEditor v1.0 is here to stay with New tabbed interface, Code completion and folding support in text editor and with more...
http://www.ideseg.com/SharePointCAMLEditorV10IsHereToStay.aspx

CAML Builder from U2U (Free):

U2U CAML Query Builder and Execution Tool Released. The tool will help you build, test and execute your CAML queries.http://www.u2u.info/Blogs/Patrick/Lists/Posts/Post.aspx?ID=1252

Sunday, February 18, 2007

SQL Server 2000 SP 2 : A previous program installation created pending file operations on the installation machine.

When try to install SQL server 2000 SP 2 in my Windows Server 2003 R2 Machine, i was getting this error message.

"A previous program installation created pending file operations on the installation machine. You must restart the computer before running setup."

First i tried as per the error message, i restarted my machine, but it never worked for me. Then only i found the solution in Microsoft's website.

http://support.microsoft.com/kb/312995

Need Microsoft Visual J# .NET Redistributable Package Version 3.0 (required by Site Manager and Site Stager)

Need Microsoft Visual J# .NET Redistributable Package Version 3.0 (required by Site Manager and Site Stager)
When you try to install MCMS 2002 you may get this warning message. To solve this error do the following steps.

"The MCMS installation wants to find the J# package for the most recent .NET framework you have installed. I had 3.0 installed, which you must too, so even thought J# 3.0 doesn't exist, MCMS was looking for it. Just uninstall .NET 3.0, do your MCMS installation, and then re-install .NET 3.0 later. "

It works for me.

For more refer the follwoing URL
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1182594&SiteID=1

Thursday, February 15, 2007

Windows SharePoint Services 3.0 Management Pack

The Microsoft Office SharePoint Server 2007 Management Pack helps you detect and respond to critical events generated by Office SharePoint Server 2007. The Management Pack collects the events from the Microsoft Windows Server 2003 event logs and highlights events that might indicate possible service outages or configuration problems, so you can take action. This Management Pack must be used in combination with the Windows SharePoint Services 3.0 Management Pack.

Windows SharePoint Services 3.0 Management Pack Download Link

The Microsoft Windows SharePoint Services 3.0 Management Pack monitors events placed in the application event log. This Management Pack highlights events that might indicate possible service outages or configuration problems, so you can quickly take corrective or preventive actions.

Monday, February 05, 2007

generate html file as output of database query using ASP.NET and C#

Hi

First get the assign all rquired database related objects and then follow up. The followiing demonstration is about with code skelton for generate html file as output of database query using ASP.NET and C#.

// DataBase Data Results

DataSet ds=new DataSet();

Query the database and load all the data in the DataSet then add using loop in the DataTable.
// DB Query Excution

int k=0;
int l=0;
SqlStr="select * from urDB..urTABLE";
ds=objUR.getDataSet(SqlStr);
if (ds !=null)
k=ds.Tables[0].Rows.Count-1;

Build your Resulting dataing in the HTML format. using the below loop.
//Build the data in HTML Format
if (k != 0)
{

A string is used for building the data in HTMl format
// Build HTML Formatt

StrTable="";

StrTable=StrTable + "<table cellpadding="\" cellspacing="\" border="\" height="\" width="\">";

StrTable=StrTable + "<tr><td width="\" nowrap="\"> Gem oF All </td>";

StrTable=StrTable+"<td>Total Block Time </td><td colspan="\" nowrap="\">Vivek </td>";

StrTable=StrTable + "</tr>";

// it is For New Row between Rows
StrTable=StrTable + "<tr><td colspan="\"> </td></tr>";

}

// Append With End Tags

StrTable=StrTable + "</table>";

If you want to save the result in the HTML file format follow the below steps.

//steps
// *** Write to file ***
// Specify file, instructions, and privelegdes
FileStream file = new FileStream("filename.html", FileMode.OpenOrCreate, FileAccess.Write);
// Create a new stream to write to the
fileStreamWriter sw = new StreamWriter(file);
// Write a string to the
filesw.Write(StrTable);
// Close StreamWritersw.Close();
// Close filefile.Close();

MOM(Microsoft Operations Manager) 2005 Service for MOSS 2007

Active Directory (AD) Management Pack for MOM 2005

The Microsoft Windows Active Directory Management Pack provides forest-wide monitoring of your Active Directory service and its required subsystems.

http://www.microsoft.com/downloads/details.aspx?familyid=B516E614-814A-4277-ABF9-8D5315D2BA06&displaylang=en

Microsoft Office SharePoint Server 2007 MP for MOM 2005

The Microsoft Office SharePoint Server 2007 Management Pack helps you detect and respond to critical events generated by Office SharePoint Server 2007.

http://www.microsoft.com/downloads/details.aspx?FamilyID=247c06ba-c599-4b22-b2d3-7bf88c4d7811%26displaylang=en

ASP.NET MVC - Sport Facility Booking system

  The project relies on some external service providers. Thus accessing them via their API requires authentication. An API Key need to be su...