2010? Which 2010?
Office and SharePoint. They will reach RTM status in April. Availability is May 12th and June for “regular customers”.
http://www.microsoft.de/2010launch
Source: RTM- und Launch-Termin, Technologiegarantie
Crawling PDF files can be a long running process with the Adobe PDF iFilter. We already knew that.
Jie Li compared 3 iFilters for indexing PDF files.
To make it short, the Adobe iFilter takes roughly about 33 times the time compared to the Foxit iFilter 2 on that particular server.
See all details…
Recently I wanted to copy a subweb to a new site collection, so it will there be the rootweb. How can the web be moved? stsadm export is your friend. At least I thought…
Error: Specified cast is not valid.
at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAsByteArray(String bstrUrl, String bstrWebRelativeUrl, Boolean bHonorLevel, Byte iLevel, OpenBinaryFlags grfob)
at Microsoft.SharePoint.Library.SPRequest.GetFileAsByteArray(String bstrUrl,String bstrWebRelativeUrl, Boolean bHonorLevel, Byte iLevel, OpenBinaryFlags grfob)
at Microsoft.SharePoint.Deployment.AttachmentsSerializer.GetDataFromDataSet(Object obj, SerializationInfo info, StreamingContext context)
FatalError: Specified cast is not valid.
Microsoft hat 2 Dokument zum Download bereit gestellt, in denen neue Features beschrieben werden.
SharePoint Foundation 2010-Dokument: Neue Features in Microsoft SharePoint Foundation 2010
SharePoint Server 2010-Dokument: Neue Features in Microsoft SharePoint Server 2010
There is some interesting new information about SharePoint eating up memory. Take a look at the details in the post SharePoint’s Sasquatch Memory Leak over at Todd Carters blog.
The evil seems to be many HttpApplications, which are not disposed properly. So every request creates a new HttpApplication, which eats up our memory at the FE servers.
And by the way, it does not mean we don’t have to get rid of our SharePoint objects as well 🙂
Durch die Feiertage, den Jahreswechsel und einfach verdammt viel zu tun zu haben hat sich der Termin für das nächste SharePoint Usergroup Treffen in OWL leider hingezogen.
Doch jetzt steht er: Wir sind am 16.2.2010 wieder in Bielefeld bei der invent Software-Entwicklung GmbH zu Gast. Start ist wie immer 18h.
Eine Anfahrtsbeschreibung gibt es HIER, oder die Adresse für die Navis: Otto-Brenner-Str. 209, 33699 Bielefeld. Bitte gebt uns kurz per Email Bescheid wenn ihr kommt.
First: The VM is great! Almost everything you’ll need to test or show off with is included in the VM.
Well, almost. There is some software I needed to install in order to get everything working. Here is a list of problems and solutions:
Problem: Cannot connect external lists to Outlook
http://blogs.msdn.com/taj/archive/2009/11/26/error-synching-bcs-external-list-to-outlook-or-workspace.aspx
Solution: Install SQL Compact Edition SP2
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=411ba1c5-ba57-45b6-9148-91bed6e7a9f1#tm
Problem: REST is not working
http://social.msdn.microsoft.com/Forums/en-US/sqlkjpowerpointforsharepoint/thread/6f730e70-31b3-4be1-a57a-cb7f64a1684e
Solution: Install ADO.NET Data Services runtime
If you want to try SharePoint 2010 without the hassle of installing and configuring it with over 200 demo accounts, you can now download a preconfigured Hyper-V VM from Microsoft: http://www.microsoft.com/downloads/details.aspx?FamilyID=0c51819b-3d40-435c-a103-a5481fe0a0d2&displaylang=en
2 VMs are available for download.
Machine “a” contains the following:
Windows Server 2008 SP2 Standard Edition x64, running as an Active Directory Domain Controller for the “CONTOSO.COM” domain with DNS and WINS Microsoft SQL Server 2008 SP2 Enterprise Edition with Analysis, Notification, and Reporting Services Microsoft Office Communication Server 2007 R2 Visual Studio 2010 Beta 2 Ultimate Edition Microsoft SharePoint Server 2010 Enterprise Edition Beta 2 Microsoft Office Web Applications Beta 2 FAST Search for SharePoint 2010 Beta 2 Microsoft Project Server 2010 Beta 2 Microsoft Office 2010 Beta 2 Microsoft Office Communicator 2007 R2 Machine “b” contains the following:
Because there are many questions about this behavior, I want to blog about it.
You might have noticed, that if you simply click on a document, it will be opened in read-only mode. You have to use the dropdown and select “Edit in …” to open it with read-write access.
There is a Knowledgebase article available, which describes the problem and offers a solution: http://support.microsoft.com/kb/870853/en-us
To change the default behavior, you’ll have to change the registry on each client!
Enabling the developer dashboard is very easy. It can be done via stsadm (or Powershell or the OM).
To enable it on demand means, that you will get a small icon at the top right corner next to your user name.
stsadm -o setproperty -pn developer-dashboard -pv OnDemand
Todd Bleeker posted an article about SharePoint Abbreviations.
To make it short: WSS isn’t anymore. We now call it SPF 2010. And MOSS is simply SPS 2010. So here is the naming history of SharePoint, or simply SP 🙂
SPS 2001 > SPS 2003 > MOSS 2007 > SPS 2010
OWC > STS > WSS > WSS v3 > SPF 2010
Read all
Jacob Reimers has written an C# API for accessing Google Analytics data.
When I saw his post, I thought it would be great to fetch the latest data every day, and write it to a SharePoint list. Then you can use the data, without querying Google for every request.
You could then use the ChartPart for SharePoint to generate nice charts from your Google Analytics data.
E.g. one for the visits for the last month.
Fabian hat es auf seinem Blog schon geschrieben. Deshalb werde ich auch über unser Projekt bloggen.
Zusammen schreiben wir ein Buch zum Thema Anwendungsentwicklung mit SharePoint 2010. Das Buch richtet sich an Entwickler, Anwender und Administratoren und hat das Ziel, Wege aufzuzeigen, mit denen Unternehmenslösungen mit SharePoint 2010 realisiert werden können.
The SDK says: “An SPView object that represents the default view.”
But if you want to change e.g. the ViewFields from the default view, you cannot use SPList.DefaultView.ViewFields.Add(fieldname);
Instead use
SPView defaultView = list.Views[list.DefaultView.ID]; defaultView.ViewFields.Add(fieldname); // internal field name defaultView.Update(); to modify the default view. It seems the DefaultView property cannot modify the View itself.
Microsoft has released Language Packs for SP 2010. Thank you. Now I can try to upgrade existing Installations 🙂
But wait. The Languages Packs won’t install on my Windows 7. It says they need a Windows Server 2008 x64. Right. But it’s the same with the Server itself. We have to modify the config file, to support an installation on a non Server OS.
Setting Up the Development Environment for SharePoint Server: http://msdn.