Had all sorts of problems with JQuery 1.6, I’m going back to release 1.4.2 which I like.
Had all sorts of problems with JQuery 1.6, I’m going back to release 1.4.2 which I like.
I’m using this so often these days and I keep forgetting the url to use, so I thought I’d put it here so I could find it.
http://sp2010a/teamsite/_vti_bin/listdata.svc
To retrieve information for a single list
http://sp2010a/teamsite/_vti_bin/listdata.svc/Contacts
Or perhaps just a single contact (in this case, the one with ID = 1)
http://sp2010a/teamsite/_vti_bin/listdata.svc/Contacts(1)
Out of habit I still type iisapp at a cmd prompt even though its gone in IIS7. I was going to add a batch file but that’s just grasping
Reminder to self:
%windir%\system32\inetsrv\appcmd.exe list wp
Sometimes you need to stop and start a Windows Service from the Cmd line or from a batch file. To do this you need to know the Windows Service’s ‘KeyName’ rather than the display name of the service.
To get the KeyName run this command from the cmd line:
C:\sc.exe GetKeyName DisplayName
Example
C:\sc.exe GetKeyName “Windows Services Timer service”
will return Name = SPTimerV3
You can then use this name in your batch files i.e.
net stop “SPTimerV3”
net start “SPTimerV3”
I’ve been looking for a list of know issues in the SharePoint 2010 beta for a while now. There is now a list on the Microsoft SharePoint Developer Documentation Team Blog. Hopefully this will be kept up to date. Click through for full story.
Microsoft SharePoint Developer Documentation Team Blog : SharePoint 2010 Beta Release Known Issues