SP3 is basically a roll up of all fixes since the release of SPS - for a complete description of the fixes - see Description of SharePoint Portal Server 2003 SP3
Download SharePoint Portal Server 2003 SP3
Occasional rantings about Dynamics CRM/365, Power BI and Azure cloud. Taking the first small steps in machine learning, Python and algorithmic trading
SP3 is basically a roll up of all fixes since the release of SPS - for a complete description of the fixes - see Description of SharePoint Portal Server 2003 SP3
Download SharePoint Portal Server 2003 SP3
Nice series from Stefan about the Content Migration API (formerly known as PRIME) for SharePoint (both WSS 3.0 and MOSS 2007). As suggested previously in a posting, you can actually use this framework to start writing your own SharePoint GeoReplication Solution.
Here are some random interesting notes about master pages in SharePoint Server 2007 and Windows SharePoint Services 3.0:
Some extra white papers and reference material
Arlindo just reminded about this next session - definitely something for IT Pros:
TechNet Evening: How to deploy the next generation Office and Windows Client using the Microsoft Solution Accelerator Tools
When & Where : Wednesday, October 03, 2007 6:00 PM at Utopolis Mechelen
Language(s): English.
Product(s): Office and Windows Vista.
Audience(s): IT Professionals, Partner and Technology Decision Maker.
Event Overview
Are you facing challenges in your desktop deployment planning and deployment projects?
In this session you will learn about the different tools available to help you during the Assesment & Deployment process. Johan Loos will demonstrate the latest Business Desktop Deployment Kit and the Windows Vista Hardware Assessment tools. You will learn all about WIM files, the System Image Manager and answer files.
Click here to register.
If you don't know about OBAs (Office Business Applications) take a look at www.obacentral.com - there's a nice video. Here's the excerpt which describes OBA's.
Office Business Applications are an emerging class of applications that helps business unlock the value of their line-of-business (LOB) systems and turn document-based processes into real applications.
OBACentral groups different solutions which are currently being built by Microsoft partners which are defined as OBAs.
Other posts about OBA:
External Links:
Just a mental note - if you need to request a hotfix, this is an easy way - http://blogs.technet.com/stefan_gossner/archive/2007/07/27/eway-to-request-hotfixes-from-microsoft-support.aspx
A new year has started for BIWUG and starting from September we are organizing again our monthly meetings. We are happy to announce the first one on September 25th in the U2U offices with the following agenda:
18:00 – 18:30 Registration and Welcome
18:30 – 20:15 Session 1: Guidelines and Best Practices for a Successful SharePoint Deployment within Your Organization
Join this session if you are looking for answers to questions like ‘When is it appropriate to use SharePoint within the organization?’, ‘What are the weak and strong points of SharePoint?’, ‘What are the pitfalls?’, ‘What kind of resources do I need the level of infrastructure but also people (both admins as well as designers and devs)?’, ‘What are the options to make SharePoint do what why business wants it to do? And what effort is that going to take?’. There are of course plenty of other related questions that can be discussed during this session. Patrick Tisseghem and other BIWUG board members will be more than happy to share their experience during an interactive discussion. The session is planned to be high-level and especially interesting for project managers, technical sales, architect and design folks.
20:15 – 20:30 Break
20:30 – 21:15 Session 2: Overview of Microsoft PerformancePoint Server 2007 - (Speaker: Nico Verheire, Dolmen)
This session will give you an overview of how Microsoft PerformancePoint Server 2007 can help you in your organization to help improve performance by integrating monitoring, analysis, and planning into a single application (of course based on WSS 3.0 and integrated with MOSS 2007). As with the first session, the level will be 100-200 with plenty of demonstrations of the product capabilities.
Important: I have 5 copies to give away from the book "First Look 2007 Microsoft Office System" by Katherine Murray - if you want one - register for the BIWUG event and add a comment to this blogpost about a topic which you want to talk about at one of the next BIWUG events.
So, you want to start generating Office 2007 documents - I have good news for you - there seems to be an abundance of articles and sample code out there on the web. In this next blogpost I will show you where you need to start (as simple as possible) - for some more complex examples take a look at the links listed at the end of this posting.
Everything starts with the System.IO.Packaging namespace which lives in the WindowsBase.dll. So you will need to add a reference to this assembly. This is already where the fun starts (check out Finding WindowsBase.dll) - if you don't see WindowsBase.dll in the .Net tab - you should browse to c:\program files\reference assemblies\microsoft\framework\v3.0\WindowsBase.dll. If you have Visual Studio 2005 Extensions for .Net Framework 3.0 installed, you will probably see it directly on the .Net tab inthe Add Reference dialog box.
Next, you will probably want to install the OpenXML SDK - this will provide you with strongly typed part classes for use with Open XML documents. After installing it, add a reference to "\OpenXMLSDK\1.0.0531\lib\Microsoft.Office.DocumentFormat.OpenXml.dll". Add in the necessary using statements:
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.IO.Packaging;
using Microsoft.Office.DocumentFormat.OpenXml;
using Microsoft.Office.DocumentFormat.OpenXml.Packaging;
Even if you want to create an empty Word document, you are required to add in a document element in the start part document.xml as is shown in the next code snippet.
namespace Dolmen.SharePoint.DocGenerator
{
public class Generator
{
public void CreateEmptyDoc()
{
string docname = "demo.docx";
const string docxml = @"<?xml version=""1.0"" encoding=""UTF-8""
standalone=""yes""?><w:document xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""></w:document>";
using (WordprocessingDocument wordDoc = WordprocessingDocument.Create(docname, WordprocessingDocumentType.Document))
{
MainDocumentPart mainPart = wordDoc.AddMainDocumentPart();
using (Stream stream = mainPart.GetStream())
{
byte[] buf = (new UTF8Encoding()).GetBytes(docxml);
stream.Write(buf, 0, buf.Length);
}
}
}
}
}
If you are worrying about backwards compatibility - remember that there exists a Microsoft Office Compatibility Pack which will allow Office 2000, XP and 2003 users to open 2007 documents as well.
If you want to have more information - the next articles are definitely a must read:
I just installed Windows Live Mail Beta (free beta) and I like it already - a very clean interface. One integrated place to check my newsgroups, RSS feeds and e-mails on my hotmail account. I already tried out the Outlook Connector - which allows you to connect Microsoft Office Outlook 2007 to your Microsoft Windows Live Hotmail or Microsoft Office Live Mail accounts.
But since I can know have one interface for them all (yes, I know Outlook 2007 also supports RSS feeds but I really have a large list of subscriptions and this does not work very well in Outlook 2007 in my opinion), I probably switch to Windows Live Mail for a while...
Update: I already ran into a first issue - I can't seem to be able to import my RSS feeds (I exported them from RSS Bandit). If someone knows, please leave a comment...