CAML.NET IntelliSense for SharePoint
CAML is being used a lot by sharepoint in order to provide lot of functionality and microsoft has done a good work here by providing an intellisense to make coding easier.
Check out more information here
CAML is being used a lot by sharepoint in order to provide lot of functionality and microsoft has done a good work here by providing an intellisense to make coding easier.
Check out more information here
Using SP designer is a good way to design a sharepoint site and if you have lot of information about CSS then you are lucky as you can make your site very rich with excellent UI.
I found very useful article by heather solomon’s and this link is a must see
I had one of my client’s fellow talking to me about the msn messenger feature enabled in almost most of the office products.
Suddenly i thought of doing the same with putting a gtalk section in my sharepoint site for testing and the result was super pleasing. I didnt know its so easy to plug in the control in any of the webpage. here is a line of code that you can keep in your page either in a simple HTML or a script; im providing script part.
<script src=”http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/googletalk.xml&
synd=open&w=320&h=451&title=My+gtalk&
lang=en&country=US&border=%23ffffff%7C0px%2C1px+
solid+%23993333%7C0px%2C1px+solid+%23bb5555%7C0px%2C1px+
solid+%23DD7777%7C0px%2C2px+solid+%23EE8888&output=js”>
</script>
the snapshot will look a bit like below

For more details you can visit here
I was very much stuck and spend long time to figure out to find a way of customizing MySite section in sharepoint and i came across a informative article in google search http://blogs.msdn.com/sharepoint/archive/2007/03/22/customizing-moss-2007-my-sites-within-the-enterprise.aspx
I have tried only on a standalone machine. Follow the steps to sort out the issue
stsadm -o renameserver -newservername -oldservername
While creating one of the sites from the browser i came an error saying “The security validation for this page is invalid. Click Back in your Webbrowser, refresh the page, and try your operation again“
I got bit confused as i didn’t know where to find and sort it out so i checked few sections in central admin site found one place. You can check for this :
If above is ok then you may also check out below alternate
I was trying to install moss 2007 on one of the rebuilt box and came across strange error. I googled it found out that actually the error CLSID {61738644-F196-11D0-9953-00C04FD919C1} is related to what i found in registry:
This security permission can be modified using the Component Services administrative tool which is present in “Administrative Tools”; Follow the steps to sort out the error
I assume that you have a XP host which has a VPC image with win2003 and moss 2007 installed but the host will not be able to access the sharepoint sites due to network related issues.
So its time to setup and enable website access between host and the VPC. I assume few things before you apply this solution:
1. You have a rotuer and you access internet
2. You have disabled DHCP option in router and have given manual IP with you subnet like 192.168.1* or 10.10.1.* to your machine and VPC
Then check my blog here that covers the steps of converting the win2003 VPC from a workgroup into a domain.
Now you need to do is to setup XP to recognize the win2003 server. I found a solution of doing so without adding my XP to the domain that you just created.
On our host machine irrespective of you using your lan or wireless card; just double click the icon in system tray or goto start->settings->network connections and right click the active adapter and select properties. The adapter properties window will appear; select TCP/IP and click properties. refer to below snapshot
The trick is under “Preferred DNS” enter the manual IP of the win2003 server running in VPC as the server now has a DNS installed. In order to allow your host to access internet as well enter the IP of your ISP under ”Alternate Preferred DNS” so that internet is accessible
If you wanted to enter the alternate Preferred DNS of your ISP then you can add by clicking advance button and enter the IP as shown under
And you are done; hopefully you shall be able to access the sharepoint websites. I doubt that you will face any further issue but by chance if you get stuck then you may try below section as well.
The last thing to do in both host and VPC is to add an entry of the IP address of both in host file. Just type drivers in the start->run to and windows will open windows explorer windows; go into etc folder and double click the hosts file; select notepad and open the file;
In XP host file add entry in a new line with 192.168.1.4 myserver and in win2003 VPC add entry in a new line with 192.168.1.3 xphost
By following above information you can have multiple development environments on a single machine and explore the benefits of VPC.
Hope it was useful
This post is for those who have XP host and a VPC running with Win2003 and others as well who have the below stated problem.
If you installed Moss 2007 on a standalone machine running Win2003 and later you plan to move it on a new domain then below steps will help you.
1. First in win2003 run DCPromo.exe from the start->run and set it up. DC promo is the most easiest, simple and automatic way of configuring AD and DNS easily
2. After the machine is added to the domain and if you try to open the sharepoint central or other sites then browser will give error. The reason is that Administrator account has been updated with domain information and moss is not updated. In order to fix up the problem just run the below commands in dos prompt to sort it out.
First, goto cd %commonprogramfiles%\Microsoft Shared\Web server extensions\12\Bin directory
Second, stsadm -o updatefarmcredentials -userlogin DomainName\UserName -password NewPassword
Here NewPassword can be the same password that you are using or you can give the new password
Lastly goto c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files in windows explore and right click the folder->Sharing and Security->security tab; add Network Service to the group with full access
After this just run the central site and you are done.
Hope this is useful.