Pemrograman Tambahkan Pengguna ke SharePoint Grup

To assign the user to group in MOSS 2007

The following code will add the user to site and to specified group.

private void AddUser(string strSite,string webGroup)
{
SPSecurity.RunWithElevatedPrivileges(delegate()
{
menggunakan (SPSite site = new SPSite(strSite))
{
menggunakan (SPWeb web = site.OpenWeb())
{
Boolean allowUnsafeUpdate = web.AllowUnsafeUpdates;
mencoba
{
web.AllowUnsafeUpdates = true;

web.SiteUsers.Add(loginName, MailId, loginId, “”);
web.Groups[webGroup].AddUser(loginName, MailId, loginId, “”);

}
finally
{
web.AllowUnsafeUpdates = allowUnsafeUpdate;
}
}
}
});
}

WinCE Pembaruan rilis untuk bulan November 2007

Microsoft ® Windows ® CE pembaruan rollup akan dirilis hari Selasa kedua setiap bulan, rilis terbaru terjadi pada atau sekitar 11 Desember, 2007.

Pembaruan berikut untuk Windows CE telah baru-baru dirilis dan tersedia untuk di-download. Informasi lebih lanjut untuk setiap update disediakan dalam dokumen Readme tersedia setelah update individu(dengan) telah diinstal.

Windows CE 5.0
Nama: Windows CE 5.0 Platform Builder Pembaruan Bulanan (November 2007)
Link download: http://www.microsoft.com/downloads/details.aspx?FamilyId=B9B800E5-DD00-46DC-8380-0425C8FCEAFB&displaylang=en
Deskripsi: Ini adalah satu set update untuk Windows CE platform Builder dilepaskan selama periode November 1 - November 30, 2007. Ini Microsoft Windows CE pembaruan perbaikan untuk masalah sistem operasi Windows CE Anda mengalami selama pengembangan dan pemeliharaan platform kustom Anda.

Windows CE 6.0 - Pembaruan Nama: Windows CE 6.0 Platform Builder Pembaruan Bulanan (November 2007)
Link download: http://www.microsoft.com/downloads/details.aspx?FamilyId=009E67FE-A447-4035-9B13-49489992832F&displaylang=en
Deskripsi: Ini adalah satu set update untuk Windows CE platform Builder dilepaskan selama periode November 1 - November 30, 2007. Ini Microsoft Windows CE pembaruan perbaikan untuk masalah sistem operasi Windows CE Anda mengalami selama pengembangan dan pemeliharaan platform kustom Anda.

MOSS 2007 & WSS 3.0 Paket Layanan 1

Hari ini Microsoft Rilis Service Pack 1 untuk
Microsoft Office SharePoint Server 2007 & Windows SharePoint Services 3.0

Get It sini WSS 3.0 SP1
Get it here for MOSS 2007 SP1

WebCast : Dokumen SharePoint Workflow canggih dengan Visual Studio 2008

Microsoft Webcast : Dokumen SharePoint Workflow canggih dengan Visual Studio 2008
Waktu : Jumat, Desember 14, 2007 1:30 PM Waktu Timur (AS & Kanada)

Join Robert Shelton untuk 90 menit demonstrasi (yakni, Sangat sedikit jika ada PowerPoint slide) pada pembangunan Workflows Dokumen untuk SharePoint (MOSS 2007) dengan Visual Studio. Untuk demonstrasi ini, Robert will be using the soon to be released Visual Studio 2008 (showing new features for Workflow Developers), however all of the demonstrations could also be accomplished using Visual Studio 2005 with Workflow Extensions.

What you will learn:

• New features for SharePoint Workflow Developers in Visual Studio 2008
• New SharePoint API’s for SharePoint workflow
• How to debug SharePoint Workflow’s using the Visual Workflow Designer
• The new single-click deployment of workflows using Visual Studio 2008
• How to send emails from a SharePoint Workflow using Visual Studio (2005 & 2008)
• How to (programmatically) assign users Tasks (think Outlook Tasks) and track their progress
• How to enable users to re-assign/delegate tasks, and track that this was done

Daftar Disini

Matikan Kesalahan tak terduga terjadi di MOSS 2007 Untuk Tampilan Detil Exception

MOSS 2007 secara default akan menampilkan halaman kesalahan kustom untuk semua kesalahan terjadi di halaman

Pada fase Pembangunan akan sulit bagi pengembang untuk memahami kesalahan yang tepat. Ubah Modifikasi berikut dengan web.config dari aplikasi web. Maka akan menampilkan rincian pengecualian di halaman kesalahan.

  • Putar panggilan stack oleh mencari dan mengubahnya ke callstack =”benar”.
  • Matikan halaman kesalahan SharePoint dengan mematikan halaman kesalahan kustom: ke mode =”Off”.

Jangan melakukan modifikasi ini dengan lokasi produksi.

Coz…..pengguna mungkin mendapatkan takut kesalahan lama. 😉

Pemantauan SharePoint Toolkit

Microsoft Released the SharePoint 2007 Monitoring Tookit Get it Here

Ikhtisar
The SharePoint Monitoring Toolkit helps you manage Microsoft® SharePoint® environments of all sizes with two new management packs for System Center Operations Manager 2007:

  • Windows® SharePoint Services 3.0 Management Pack
  • Microsoft Office SharePoint Server 2007 Management Pack

These packs monitor the health state of the components in your SharePoint environment that affect performance and availability. When there is an issue that may cause service or performance degradation, Operations Manager 2007 uses the management packs to detect the issue, alert you to its existence, and facilitate diagnosis and corrective actions.The management packs monitor:

  • Windows SharePoint Services 3.0 related services (Timer, Tracing and Search)
  • Windows SharePoint Services 3.0 related Events
  • Web server applications such as Internet Information Services (IIS)
  • IIS-related Events
  • Microsoft SQL Server® database-related events
  • WSS Server performance

The SharePoint Monitoring Toolkit Management Packs have been rewritten from the ground up to take advantage of the latest features of System Center Operations Manager 2007. Major improvements from previous packs include:

  • Extended rules
  • New and improved reports
  • Additional actions
  • New views
  • Elimination of backward compatibility dependencies
  • Increased reliability
  • Noise reduction through tuning and event suppression
  • Thoroughly tested compatibility of management packs with:

System Center Operations Manager 2007
System Center Essentials
Microsoft Office SharePoint Server 2007 SP1

Programmatically Read List & View Content in SharePoint

I got a task to work on developing the windows application which will fetch the List View data from sharepoint and process the data in win forms app.

Previously i used to fetch the data using Lists.asmx,views.asmx.

Now i came to know there is other way to fetch the data from List View.

Sintaksis:
https://myserver.com/_vti_bin/owssvr.dll?Cmd=Display&List={list Id}&View={View Id}&XMLDATA=true

Example URL:

https://myserver.com/_vti_bin/owssvr.dll?Cmd=Display&List={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555-798B-4F47-9FBB-81513B85F906}&XMLDATA=true

Now it will give the xml data as response.

write the response to xmldoc and process the data.

HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(“https://myserver.com/_vti_bin/owssvr.dll?Cmd=Display&List={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555-798B-4F47-9FBB-81513B85F906}&XMLDATA=true”);

myRequest.Credentials =
System.Net.CredentialCache.DefaultCredentials;
HttpWebResponse response = (HttpWebResponse)myRequest.GetResponse();
XmlDocument doc = new XmlDocument();
doc.Load(response.GetResponseStream());

Microsoft BizTalk Server 2006 VHD

Hi Pengembang,

Apakah Anda mencari BizTalk Server 2006 Lingkungan Pembangunan.
Jangan khawatir(Windows XP yang cukup bagi Anda untuk menjadi tuan rumah VHD)

Get it di sini for BizTalk Server 2006 VHD.

Download Virutal PC to Host the VHD File.

Microsoft Office SharePoint Server 2007 VHD

Hi Pengembang,

Are you looking for the Development Environment to Learn MOSS 2007.

Here is the way. Microsoft Gives Preconfigure VHD for MOSS 2007.

Get it di sini

If you have any issues in configuring VHD please post here.

Download Virtual PC to Host the VHD.

Meningkatkan Upload File size di Moss 2007

Untuk Meningkatkan Upload File size di Moss 2007

By Default Moss akan memungkinkan kita untuk meng-upload File size hingga 50 MB.
Jika Anda ingin meningkatkan upload ukuran file.

Ikuti Langkah Berikut:
Buka Pusat Administrasi

  • Open Web Application Pengaturan Umum

  • Mengubah Ukuran Upload Maksimum untuk Ukuran Diperlukan
  • Upload File size bisa sampai 2 GB

Sekarang Anda telah dilakukan dengan perubahan ukuran file upload.

Enjoy uploading 🙂