Programmaties Voeg Gebruiker SharePoint Group

Die gebruiker groep te wys in MOSS 2007

Die volgende kode sal die gebruiker voeg webwerf en gespesifiseerde groep.

private leemte adduser(string strSite,string webGroup)
{
SPSecurity.RunWithElevatedPrivileges(delegeer()
{
deur gebruik te maak (SPSite webwerf = nuwe SPSite(STRS))
{
deur gebruik te maak (SPWeb web = site.OpenWeb())
{
Boole allowUnsafeUpdate = web.AllowUnsafeUpdates;
probeer
{
web.AllowUnsafeUpdates = true;

web.SiteUsers.Add(login naam, E-pos, Logins, “”);
web.Groups[webGroup].Adduser(login naam, E-pos, Logins, “”);

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

WinCE Update stel vir die maand van November 2007

The Microsoft® Windows® CE update rollup will be released the second Tuesday of every month, the latest release occurring on or around December 11th, 2007.

The following updates for Windows CE have been recently released and are available for download. More information for each update is provided in the Readme document available after the individual update(met) has been installed.

Windows CE 5.0
Update name: Windows CE 5.0 Platform Builder Monthly Update (November 2007)
Download link: http://www.microsoft.com/downloads/details.aspx?FamilyId=B9B800E5-DD00-46DC-8380-0425C8FCEAFB&displaylang=en
Beskrywing: This is a set of updates for Windows CE Platform Builder released during the period of November 1 – November 30, 2007. These Microsoft Windows CE updates are fixes for Windows CE operating system problems you run into during the development and maintenance of your custom platform.

Windows CE 6.0 – Update name: Windows CE 6.0 Platform Builder Monthly Update (November 2007)
Download link: http://www.microsoft.com/downloads/details.aspx?FamilyId=009E67FE-A447-4035-9B13-49489992832F&displaylang=en
Beskrywing: This is a set of updates for Windows CE Platform Builder released during the period of November 1 – November 30, 2007. These Microsoft Windows CE updates are fixes for Windows CE operating system problems you run into during the development and maintenance of your custom platform.

MOSS 2007 & WSS 3.0 Service Pack 1

Vandag Microsoft vrygestel van die Service Pack 1 vir
Microsoft Office SharePoint Server 2007 & Windows SharePoint Services 3.0

Get It hier vir WSS 3.0 SP1
Get it here for MOSS 2007 SP1

WebCast : Advanced SharePoint Document Workflow with Visual Studio 2008

Microsoft Webcast : Advanced SharePoint Document Workflow with Visual Studio 2008
Tyd : Friday, Desember 14, 2007 1:30 PM Eastern Time (VSA & Kanada)

Join Robert Shelton for a 90 minute demonstration (i.e., Very few if any PowerPoint slides) on building Document Workflows for SharePoint (MOSS 2007) with Visual Studio. For this demonstration, 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

Registreer hier

Draai af Onverwagse fout het voorgekom in MOSS 2007 Te vertoon Uitsondering Detail

MOSS 2007 by verstek, sal die persoonlike fout bladsy vertoon vir alle foute in bladsy plaasgevind

In Ontwikkeling fase sal dit moeilik wees om vir die ontwikkelaars van die presiese fout om te verstaan. Verander die volgende aanpassings met die Web.config van die web-program. Dan sal dit die uitsondering besonderhede in die fout bladsy vertoon.

  • Turn the call stack on by searching for and change it to CallStack=”waar”.
  • Turn off the SharePoint error pages by turning off custom error pages: to mode=”Off”.

Dont do this modification with the production site.

Coz…..the users may get scared of long errors. 😉

SharePoint Monitoring Toolkit

Microsoft Released the SharePoint 2007 Monitoring Tookit Get it Here

Oorsig
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

Programmaties Lees Lys & View inhoud in SharePoint

Ek het 'n taak om te werk aan die ontwikkeling van die vensters aansoek wat die Lys View data van SharePoint sal haal en verwerk die data in oorwinning vorm app.

Voorheen het ek gebruik om die data met behulp van Lists.asmx te haal,views.asmx.

Nou het ek gekom om te weet daar is ander manier om die data uit Lys View te gaan haal.

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

Example URL:

https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Lys ={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&Lys ={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 = nuwe XmlDocument();
doc.Load(response.GetResponseStream());

Microsoft BizTalk Server 2006 VHD

Hi Devs,

Is jy op soek vir BizTalk Server 2006 Ontwikkeling Omgewing.
Moenie bekommerd wees nie(Windows XP is genoeg vir jou aan te bied VHD)

Kry dit hier vir BizTalk Server 2006 VHD.

Aflaai Virutal PC die VHD lêer aan te bied.

Microsoft Office SharePoint Server 2007 VHD

Hi Devs,

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

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

Kry dit hier

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

Download Virtual PC to Host the VHD.

Toename Laai Lêer grootte in Moss 2007

Te verhoog lêer oplaai grootte in Moss 2007

By verstek Moss sal toelaat dat ons Lêer grootte oplaai 50 MB.
As jy wil verhoog grootte van die lêer oplaai.

Volg die volgende stappe:
Open Sentrale Administrasie

  • Open Web Aansoek Algemene instellings

  • Verander die Maksimum oplaai grootte vereiste grootte
  • Upload File size can be up to 2 GB

Now you have done with change of upload file size.

Enjoy uploading 🙂