Programmatically Add User to SharePoint Group

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()
{
utilizând (SPSite site = new SPSite(strSite))
{
utilizând (SPWeb web = site.OpenWeb())
{
Boolean allowUnsafeUpdate = web.AllowUnsafeUpdates;
încercaţi
{
web.AllowUnsafeUpdates = true;

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

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

WinCE versiuni actualizate pentru luna noiembrie 2007

Microsoft ® Windows ® CE pachet de actualizare va fi lansat doua zi de marţi a fiecărei luni, cea mai recentă versiune care apar pe sau în jurul valorii de 11 decembrie, 2007.

Următoarele actualizări pentru Windows CE au fost recent lansat şi sunt disponibile pentru descărcare. More information for each update is provided in the Readme document available after the individual update(cu) has been installed.

Windows CE 5.0
Update name: Windows CE 5.0 Platform Builder Monthly Update (Noiembrie 2007)
Download link: http://www.microsoft.com/downloads/details.aspx?FamilyId=B9B800E5-DD00-46DC-8380-0425C8FCEAFB&displaylang=en
Descriere: 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 (Noiembrie 2007)
Download link: http://www.microsoft.com/downloads/details.aspx?FamilyId=009E67FE-A447-4035-9B13-49489992832F&displaylang=en
Descriere: 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

Astăzi, Microsoft a lansat Service Pack 1 pentru
Microsoft Office SharePoint Server 2007 & Windows SharePoint Services 3.0

Get It aici pentru AAC 3.0 SP1
Ia-l de aici pentru MOSS 2007 SP1

WebCast : Avansat SharePoint fluxului de documente cu Visual Studio 2008

Microsoft Webcast : Avansat SharePoint fluxului de documente cu Visual Studio 2008
Timp : Vineri, Decembrie 14, 2007 1:30 PM Eastern Time (SUA & Canada)

Alăturaţi-vă Robert Shelton pentru o 90 minute demonstraţie (adică, Foarte puţine, dacă orice PowerPoint slide-uri) pe construirea fluxului de documente, pentru SharePoint (MOSS 2007) cu Visual Studio. Pentru această demonstraţie, Robert va folosi în curând să fie lansat Visual Studio 2008 (arătând noi caracteristici pentru flux de lucru dezvoltatori), cu toate acestea toate demonstrațiile ar putea fi, de asemenea, realizată folosind Visual Studio 2005 cu flux de lucru Extensii.

Ce veți învăța:

• Caracteristici noi pentru SharePoint flux de lucru Developers în Visual Studio 2008
• Noul SharePoint API pentru fluxul de lucru SharePoint
• Cum a depana SharePoint flux de lucru folosind Visual Workflow Designer
• Noul desfășurarea singur clic a fluxurilor de lucru, folosind Visual Studio 2008
• Cum pot trimite e-mailuri de la un flux de lucru SharePoint folosind Visual Studio (2005 & 2008)
• Cum să (programare) atribui utilizatorilor Sarcini (cred Sarcini Outlook) și urmări progresul lor
• Cum pentru a permite utilizatorilor de a re-atribui sarcini / delega, și urmăriți că acest lucru a fost făcut

Înregistraţi-vă aici

Turn Off Eroare neașteptată în MOSS 2007 Pentru a Arata Excepție Detalii

MOSS 2007 by default will display the custom error page for all errors occurred in page

In Development phase it will be difficult for the developers to understand the exact error. Change the following Modifications with the web.config of the web application. Then it will display the exception details in the error page.

  • Turn the call stack on by searching for and change it to CallStack=”adevărat”.
  • 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

Prezentare generală
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.

Sintaxă:
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 = XmlDocument noi();
doc.Load(response.GetResponseStream());

Microsoft BizTalk Server 2006 VHD

Hi Devs,

Cautati BizTalk Server 2006 Mediu de dezvoltare.
Nu vă faceți griji(Windows XP este de ajuns pentru tine pentru a găzdui VHD)

Ia-l de aici for BizTalk Server 2006 VHD.

Download Virutal PC to Host the VHD File.

Microsoft Office SharePoint Server 2007 VHD

Hi Devs,

Sunteţi în căutarea pentru mediul de dezvoltare de a învăţa MOSS 2007.

Aici este modul în care. Microsoft nu oferă Preconfigure VHD pentru MOSS 2007.

Ia-l de aici

Dacă aveţi probleme în configurarea VHD vă rugăm să posta aici.

Descărcaţi Virtual PC la gazdă VHD.

Creşterea Încărcaţi dimensiunea fişierului în Moss 2007

Pentru a Creşterea Incarcati Mărime fişier în Moss 2007

Prin Implicit Moss ne va permite să încărcaţi Mărime fişier de până la 50 MB.
Dacă doriţi să încărcaţi creşte dimensiunea fişierului.

Urmaţi paşii de mai jos:
Deschis Administrare centrală

  • Deschideţi Web Application Setări generale

  • Modificarea Dimensiune Incarcati maximă la mărimea dorită
  • Incarcati Mărime fişier poate fi de până la 2 GB

Acum, ce aţi făcut cu schimbare de dimensiune de fişier de încărcare.

Enjoy uploading 🙂