Archive for October, 2005

Programmaticaly Save Document to Sharepoint Document Library

A week after partner update in IKIN, Semarang - I finally came back there again to help some of the technical challenge in their upcoming  project. The project seems interesting for me, they will use Teleform - Verity to scan the form papers and stores the softcopy to sharepoint document library.

Here’s a code that we use to store a document/file programmaticaly to windows sharepoint services document library, depending on your scenario, you can change the process of File selection from OpenFileDialog control with your database record, etc…

private void UploadFile()
  {
   if( File1.ShowDialog() == DialogResult.OK )   {
   string strFileName= File1.FileName;
   string destUrl = “
http://localhost:8083/Shared Documents/tes.log“;//+strFileName;

Windows Server Update Services

WSUS is the next version of Software Update Services (SUS), I have this question in one of partner events last month, on how to filtering updates in SUS. “We don’t need update of Japanese Windows XP…” 
Another question on how to applying Office update through SUS. Though WSUS had been in the market since mid of the year, yet I did not remembered to suggest WSUS to him, so apologize for that -> ”Presenter juga manusia…” :)

For all those reasons, I suggest you to take a look at WSUS, builds on the features of SUS by providing more updates for Microsoft products, filtering updates from Microsoft Update by product and update type, reporting capabilities, etc. You can check the overview of WSUS here.

My Favourite new features in Windows Server 2003 R2 Beta 2

We have a Partner Update on Windows Server 2003 R2 in Jakarta last week . Here’s the list, at the official R2 Beta page, just in case you don’t have a chance to come to BEJ last week.

I have 2 favourite features, without a doubt, first is the ADFS (Active Directory Federation Services). In R2’s ADFS there are two main sets of big features : Web Single Sign-On and Federation Services.

Second, is the DFS Replication with Remote Differential Compression ability. Uses efficient RDC to send only changes bytes accross the wire. I think lots of company will interest with this WAN Friendly, distributed file system for simplified branch management solutions.