Die SharePoint-Welt für den erfahrenen.net- Entwickler. Fabian Moritz MVP Office SharePoint Server
|
|
|
- Tyrone Fox
- 10 years ago
- Views:
Transcription
1 Die SharePoint-Welt für den erfahrenen.net- Entwickler Fabian Moritz MVP Office SharePoint Server 1
2 SharePoint Object Model IFilter Webpart Connections Webparts Web Server Controls Custom Field Types Web Services Features Views CAML Custom Workflow Activities ASP.NET AJAX Themes Silverlight Site Definitions Workflows List Defintions Application Pages Solutions User Controls Timer Services Event Receiver 2
3 Windows SharePoint Services 3.0 Zusammenarbeit Dokumente/Aufgaben/Termine, Blogs, Wikis, -Integration, Project Management light, Outlook Integration, Offline Dokumente und Listen Plattform Services Arbeitsbereiche, Mgmt, Sicherheit, Speicher, Topologie, Site Model 3
4 Office SharePoint Server 2007 Server-basierte Excel- Arbeitsmappen und Datenvisualisierung, Report Center, BI Webparts, KPIs/Dashboards Business Intelligence Zusammenarbeit Dokumente/Aufgaben/Termine, Blogs, Wikis, -Integration, Project Management light, Outlook Integration, Offline Dokumente und Listen Client- und Web- Formulare, LOB Aktionen, Pluggable SSO Geschäftsformulare Plattform Services Arbeitsbereiche, Mgmt, Sicherheit, Speicher, Topologie, Site Model Portal Enterprise Portal Vorlage, Website- Verzeichnis, My Sites, Social Networking Integriertes Dokumentenmanagementund Web Content Management mit Policies und Workflow Content Management Suche Enterprise-Skalierbarkeit, Relevanz, Personen- und BDC-Suche 4
5 SharePoint als Server-Plattform Browser Office 2003/2007 Microsoft Office SharePoint Server 2007 (MOSS) (Portal, Suche, Content Management, Geschäftsformulare, BI) Windows SharePoint Services 3.0 (WSS) Plattformdienste und Zusammenarbeit.NET Framework 2.0 / ASP.NET 2.0.NET Framework 3.0 Internet Information Services 6.0 / 7.0 Windows Server 2003 / 2008 SQL Server 2000 / 2005 /
6 SharePoint-Architektur Farm Server Web Application aka Virtual Server aka IIS Website Top Level Website Zentraladministration Zentraladministration Website Site Collection 6
7 Möglichkeiten für den Entwickler Webparts Event Handler Workflows WSS Website WSS Objektmodell Web Services Smart und Mobile Clients SharePoint Webparts Web Server Controls User Controls Application Pages Event Handler Timer Services Web Services Workflows Windows-Anwendungen 7
8 Das SharePoint Objektmodell Assemblies auf dem SharePoint Server Referenz auf Microsoft.SharePoint 8
9 Hallo SharePoint Objektmodell! using System; using Microsoft.SharePoint; namespace FM.Demos.OMDemo { class Program { static void Main(string[] args) { using (SPSite site = new SPSite(" { using (SPWeb web = site.openweb()) { // Get all Lists foreach (SPList list in web.lists) { Console.WriteLine(list.Title); } } } } } } 9
10 SharePoint-Architektur SPFarm Farm Server SPWebServer Site Collection Web Application aka Virtual Server aka IIS Website Top Level Website Website SPWebApplication SPSite Zentraladministration Zentraladministration SPWeb SPList SPListItem 10
11 Agenda Einführung in die Technologie Das SharePoint-Objektmodell Webparts Features SharePoint und Silverlight SharePoint Solutions 11
12 Aus Anwendersicht SharePoint Webparts Drag & Drop Funktion Sichten auf SharePoint-Inhalte Benutzerdefinierte Funktionen Aus Entwicklersicht.NET Assembly (DLL-Datei) Webpart-Definition (Webpart-Datei) Komponente, die der Code Access Security unterliegt 12
13 Webpart-Typen WebPart SharePoint ASP.NET 2.0 Microsoft.SharePoint.WebPartPages.WebPart Microsoft.Web.UI.WebControls.WebParts.WebPart 13
14 Ein Webpart in 7 Minuten 14
15 Agenda Einführung in die Technologie Das SharePoint-Objektmodell Webparts Features SharePoint und Silverlight SharePoint Solutions 15
16 Was sind Features? Neue Kernfunktion in WSS 3.0 Flexible Art der Bereitstellung von externen Anwendungen 16
17 Feature.xml Das Features Manifest wird über CAML deklariert CAML = Collaborative Application Markup Language Referenz auf ein oder mehrere Element Manifests <?xml version="1.0" encoding="utf-8"?> <Feature xmlns=" Id="BDF9B250-CDFA-4f92-99BA-96C942A764B7" Title="Fabian s Demo Webparts" Description="Dieses Feature..." Hidden="FALSE" Scope="Site" Version=" "> <ElementManifests> <ElementManifest Location="elements.xml" /> </ElementManifests> </Feature> 17
18 Elements.xml Field, List und Site Defintions Event Receivers Listeninstanzen Site Columns, Content Types und Bindings <Elements xmlns=" <CustomAction Id="SiteActionsToolbar" GroupId="SiteActions" Location="Microsoft.SharePoint.StandardMenu" Sequence="100" Title="Fabian s Weblog" Description="Besuchen Sie meinen Weblog" <UrlAction Url=" </CustomAction> </Elements> 18
19 SharePoint Features im Einsatz 19
20 Agenda Einführung in die Technologie Das SharePoint-Objektmodell Webparts Features SharePoint und Silverlight SharePoint Solutions 20
21 Neue Technologien in SharePoint 21
22 Umgebung SharePoint und Silverlight (1) WSS SP1 liefert den Support Manuelle Konfiguration erforderlich Server-Konfiguration.NET Framework 3.5 installieren System.Web.Silverlight.dll in den GAC kopieren Web.config für Silverlight und AJAX 3.5 erweitern MIME Type für.xap (application/x-silverlight) 22
23 SharePoint uns Silverlight (2) Entwicklungsumgebung Visual Studio 2008 SP1 Silverlight Tools für Visual Studio 2008 SP1 Ggf. Microsoft Expression Blend Silverlight 2.0 SDK Client Silverlight 2.0 muss installiert sein 23
24 Silverlight Controls in SharePoint 24
25 Agenda Einführung in die Technologie Das SharePoint-Objektmodell Webparts Features SharePoint und Silverlight SharePoint Solutions 25
26 SharePoint Solutions.NET Assemblies Ressourcen (Bilder, ASPX, RESX) Websitevorlagen / Listendefinitionen Konfigurationen Code Access Security Policies MeineSolution.wsp 26
27 Und jetzt? Laden Sie die Beispiele herunter Laden Sie sich die Silverlight Tools für VS herunter =silverlight tools Laden Sie sich die SharePoint SDKs herunter Besuchen Sie Codeplex für weitere Tools 27
1703 Discovering SharePoint 2007 for Developers
1703 Discovering SharePoint 2007 for Developers Custom Authentication SharePoint = ASP.NET Application ASP.NET Providers Microsoft Single Sign-On Demonstration: Custom Authentication o Lab : Custom Authentication
Intro to Developing for SharePoint Online: What Tools Can I Use?
Intro to Developing for SharePoint Online: What Tools Can I Use? Paul Papanek Stork Chief Architect for ShareSquared, Inc http://www.sharesquared.com Contributing Author Developer s Guide to WSS 3.0 MOSS
SharePoint Development for.net Developers
SharePoint Development for.net Developers About This Course Description Objectives Audience Prerequisites At least six month s experience developing solutions on the.net platform Proficiency in either
SharePoint 2013 Syllabus
General Introduction What is IIS IIS Website & Web Application Steps to Create Multiple Website on Port 80 What is Application Pool What is AppDomain What is ISAPI Filter / Extension Web Garden & Web Farm
SharePoint for Digital Asset Management
SharePoint for Digital Asset Management Solution Architect with 18 years experience in marketing, visual production and technology. AIIM Certified Enterprise Content Management Practitioner Currently Director,
Suche: Einsatz und Nutzen im Unternehmen
Suche: Einsatz und Nutzen im Unternehmen E N T E R P R I S E S E A R C H René Knöfel Enterprise Search Lead (EPG Switzerland) Technology Solution Professional for ECM and Search www.klickdas.de Agenda
SHAREPOINT 2010 CLIENT SIDE OBJECT MODEL
SHAREPOINT 2010 CLIENT SIDE OBJECT MODEL Phil Wicklund SharePoint FREEWARE Agenda Introduction / Why COM? COM Architecture Coding Samples DEMO.NET COM Questions SharePoint FREEWARE Intro to the SP 2010
Microsoft Office SharePoint Server (MOSS) 2007 Overview
Microsoft Office SharePoint Server (MOSS) 2007 Overview for Technology Manager Wei Wang MOSS Technical Expert Consultant [email protected] 17.04.2010 - Seite 1 Agenda Collaboration Portal Search
SharePoint for Digital Asset Management
SharePoint for Digital Asset Management 18 years experience in integration, project management, custom application development and video / event production. AIIM Certified Enterprise Content Management
Extending Microsoft Office and SharePoint with EMC Documentum
Extending Microsoft Office and SharePoint with EMC Documentum European Microsoft SharePoint Conference 2007 Dr. Wolfgang Mertz EMC Deutschland GmbH EMC has Evolved into a Trusted Information Infrastructure
Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680)
Microsoft Office Specialist Office 2010 Specialist Expert Master Eines dieser Examen/One of these exams: Eines dieser Examen/One of these exams: Pflichtexamen/Compulsory exam: Word Core (Exam 077-881)
Microsoft Office Specialist. Windows 7 Zertifizierungsund Upgrade-Pfade. Microsoft Office Specialist/Windows 7
Microsoft Office Specialist/Windows 7 Microsoft Office Specialist Specialist Expert Master Eines dieser Examen: Eines dieser Examen: 3 Pflicht- und ein Wahl-Examen Word Core (Exam 077-881) Word Expert
Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262
Update to V10 Automic Support: Best Practices Josef Scharl Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Agenda Update to Automation Engine Version 10 Innovations in Version
Microsoft Technology Practice Capability document. MOSS / WSS Building Portal based Information Worker Solutions. Overview
Microsoft Technology Practice Capability document Overview Microsoft Office SharePoint Server (MOSS) and Windows SharePoint Services (WSS) facilitate rapid website creation that supports specific content
Symantec Backup Exec (TM) 13 Installation Log
v Symantec Backup Exec (TM) 13 Installation Log 05-26-2010,15:07:12 : Explorer exists. Launching UI. 05-26-2010,15:07:14 : Executing managed _Setup: 05-26-2010,15:07:14 : C:\Dokumente und orms_multilingual_dvd\be\winnt\install\be32\install\_setup.exe
Creating Page Layouts using SharePoint Designer or Visual Studio
Creating Page Layouts using SharePoint Designer or Visual Studio Becky Bertram MCSD, MCAD MCTS WSS Development MCTS MOSS Development www.beckybertram.com What is Web Content Management? According to Wikipedia:
In the academics, he holds a Bachelor s Degree in Computer Science an Masters in Business Administration.
About the Author Jean Paul V.A is a Software Developer working on Microsoft Technologies for the past 10 years. He has been passionate about programming and mentored lots of developers on.net and related
Windows HPC Server 2008 Deployment
Windows HPC Server 2008 Michael Wirtz [email protected] Rechen- und Kommunikationszentrum RWTH Aachen Windows-HPC 2008 19. Sept 08, RWTH Aachen Windows HPC Server 2008 - Agenda o eines 2 Knoten Clusters
AnyWeb AG 2008 www.anyweb.ch
HP SiteScope (End-to-End Monitoring, System Availability) Christof Madöry AnyWeb AG ITSM Practice Circle September 2008 Agenda Management Technology Agentless monitoring SiteScope in HP BTO SiteScope look
Creating an Application Design
Creating an Application Design Evaluating application data access and storage on SharePoint 2010 Lists and Document Libraries Sites may be the primary building blocks within SharePoint, but there s no
Designing and Deploying Messaging Solutions with Microsoft Exchange Server 2010 MOC 10233
Designing and Deploying Messaging Solutions with Microsoft Exchange Server MOC 10233 In dieser Schulung erhalten Sie das nötige Wissen für das Design und die Bereitstellung von Messaging-Lösungen mit Microsoft
Diese Liste wird präsentiert von. Netheweb.de
Diese Liste wird präsentiert von Netheweb.de Die Liste enthält 1000 Do-Follow Blogs, die zum Linkbuilding genutzt werden können, es kann sein, dass verkürzte URL s nicht korrekt weiter geleitet werden.
MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions
MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions Course Overview This course provides students with the knowledge and skills to work with the server-side and client-side object models,
Sichere Kollaboration durch professionelles Risikomanagement für Microsoft SharePoint und Office 365. Accessible content is available upon request.
Sichere Kollaboration durch professionelles Risikomanagement für Microsoft SharePoint und Office 365 Accessible content is available upon request. Unsere Geschichte 2001 Unser Geschäft Unser Wachstum Microsoft
SharePoint 2013 DEV. David Čamdžić Kompas Xnet d.o.o.
SharePoint 2013 DEV David Čamdžić Kompas Xnet d.o.o. David Čamdžić Sharepoint Solutions developer since 2007 on and off Developing mostly intranet SharePoint solutions Currently working on about 10 Sharepoint
Developing Visual Studio Workflows and Activities for SharePoint Sites
Developing Visual Studio Workflows and Activities for SharePoint Sites Steve Heaney Product Development Manager Nintex [email protected] Agenda Workflow authoring scenarios Windows Workflow Foundation
Course 10175A - Microsoft SharePoint 2010, Application Development
Course 10175A - Microsoft SharePoint 2010, Application Development ABOUT THIS COURSE This course provides existing.net developers with practical information and labs that enables them to build solutions
Noramsoft Inc. Noramsoft Inc. SPT2O1O - Course Description. Developing Solutions with SharePoint Server 2010 SPT2010. Noramsoft Inc. Noramsoft Inc.
SharePoint Specialists and Trainers SharePoint Specialists and Trainers SPT2O1O - Course Description Developing Solutions with SharePoint Server 2010 Tél 1 - DEVELOPING SOLUTIONS SHAREPOINT SERVER 2010
David Chou. [email protected] Architect Microsoft
David Chou [email protected] Architect Microsoft Business Online Services from Microsoft Services Services Estimate custom design Unstructured Get specs from customer Validate specs with Tech
Rainer Stropek software architects gmbh. Entwicklung modularer Anwendungen mit C# und dem Managed Extensibility Framework (MEF)
Rainer Stropek software architects gmbh Entwicklung modularer Anwendungen mit C# und dem Managed Extensibility Framework (MEF) Abstract (German) Größere Softwareprojekte werden heute üblicherweise in Teams
SharePoint for Developers. Lunch and Learn
SharePoint for Developers Lunch and Learn 2 Agenda Overview Architecture Web Parts Workflow Events Deployment Other Development Topics 3 WSS v3 vs MOSS WSS v3 Windows SharePoint Services Free with Windows
XML-Wirtschaftsforum 2006 Portale. Enterprise Content Management mit IBM Mitarbeiterportalen. Matthias Zastrow
Enterprise Content Management mit IBM Mitarbeiterportalen Matthias Zastrow Agenda Context Setting CEO Agenda, OnDemand, Software Strategie Portal und Content Strategie Beispielanwendungen der Funktionsbausteine
Implementing Data Models and Reports with Microsoft SQL Server
Implementing Data Models and Reports with Microsoft SQL Server Dauer: 5 Tage Kursnummer: M20466 Überblick: Business Intelligence (BI) wird für Unternehmen von verschiedenen Größen aufgrund des dadurch
<Insert Picture Here> Oracle Direct Potsdam
ORACLE BPEL Process Manager Dr. Jens Hündling Senior Systemberater Oracle Direct Potsdam Java User Group Saxony Technische Universität Chemnitz 24. Juni 2010 The following is intended
SharePoint and Contract Management. Alan Weintraub Practice Director ECM Consulting (610) 234-4032 (office) (484) 467-5720 (Mobile)
1 SharePoint and Contract Management Alan Weintraub Practice Director ECM Consulting (610) 234-4032 (office) (484) 467-5720 (Mobile) 2 Agenda What is SharePoint MOSS 2007 Contract Management Demonstration
SharePoint 2010/2013 Course
*Must Have Knowledge SharePoint 2010/2013 Course SQL and DBMS Concepts ASP.net web application development using c# and Visual studio 2008 or above Client Server and three tier Architecture Basic knowledge
JapanCert 専 門 IT 認 証 試 験 問 題 集 提 供 者
JapanCert 専 門 IT 認 証 試 験 問 題 集 提 供 者 http://www.japancert.com 1 年 で 無 料 進 級 することに 提 供 する Exam : 70-488 Title : Developing Microsoft SharePoint Server 2013 Core Solutions Vendor : Microsoft Version : DEMO
SharePoint Community Tools fürs Web 2.0
SharePoint Convention 2009 SharePoint Community Tools fürs Web 2.0 Michael Greth [email protected] Michael Greth Trainer, Consultant für SharePoint Microsoft MVP für Office SharePoint Server SharePointCommunity.de
Digicomp Microsoft Evolution Day 2015 1. MIM 2016 Oliver Ryf. Partner:
1 MIM 2016 Oliver Ryf Partner: 2 Agenda Begrüssung Vorstellung Referent PowerShell Desired State Configuration F&A Weiterführende Kurse 3 Vorstellung Referent Seit 1991 IT-Trainer 1995 MCSE und MCT Seit
Benutzerfreundlich, tiefe Betriebskosten und hohe Sicherheit. Warum sich diese Ziele nicht widersprechen müssen
Benutzerfreundlich, tiefe Betriebskosten und hohe Sicherheit. Warum sich diese Ziele nicht widersprechen müssen Jean Paul Kölbl CEO IT-Secure.com AG Total access security Heutige Situation Kostendruck
Microsoft Nano Server «Tuva» Rinon Belegu
1 Microsoft Nano Server «Tuva» Rinon Belegu Partner: 2 Agenda Begrüssung Vorstellung Referent Content F&A Weiterführende Kurse 3 Vorstellung Referent Rinon Belegu Microsoft Certified Trainer (AWS Technical
AD2 - The future of mobile enterprise applications: Live from the Citrix Labs
AD2 - The future of mobile enterprise applications: Live from the Citrix Labs Steve Parry, Senior Director, Citrix Labs Christian Gehring, Enterprise Presales Architect, Citrix Systems Citrix Labs Citrix
DV4 - Citrix CloudGateway: Access and control Windows, SaaS and web applications. Systems Engineer, Citrix Systems GmbH
DV4 - Citrix CloudGateway: Access and control Windows, SaaS and web applications Rob Sanders Oliver Lomberg Systems Engineer, Citrix Systems Systems Engineer, Citrix Systems GmbH Corporate PC Corporate
Thomas Rümmler AIT GmbH & Co. KG Christian Schlag AIT GmbH & Co. KG. Central Build and Release Management with TFS
Thomas Rümmler AIT GmbH & Co. KG Christian Schlag AIT GmbH & Co. KG Central Build and Release Management with TFS 2 OUR DAILY MOTIVATION It s hard enough for software developers to write code that works
Intelligent Dashboards made Simple! Using Excel Services
Intelligent Dashboards made Simple! Using Excel Services Presented by: Asif Rehmani, SharePoint Server MVP Trainer/Solution Architect [email protected] Who am I? One of the founders of Chicago
BI & DASHBOARDS WITH SHAREPOINT 2007
BI & DASHBOARDS WITH SHAREPOINT 2007 Leveraging SharePoint to Deliver Business Intelligence Solutions Rob Kerr, Principal Consultant BlueGranite [email protected] http://blog.robkerr.com About BlueGranite
Cloud Performance Group 1. Cloud@Night Event. 14. Januar 2016 / Matthias Gessenay ([email protected])
1 Cloud@Night Event 14. Januar 2016 / Matthias Gessenay ([email protected]) 2 Agenda SharePoint ABC Project Server ABC What s new in O365 4 SharePoint 2016 ABC A Access App-Support
Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021
Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021 In dem Kurs MOC 55021 Configuring and Administering Hyper-V in Windows Server 2012 lernen Sie die Konfiguration und Administration
Governance, Risk und Compliance (GRC) in der Cloud
Governance, Risk und Compliance (GRC) in der Cloud die richtige Entscheidung rechtzeitig - in einer komplexen und unsicheren Geschäftswelt 9. Sicherheitstag der BSI Allianz für Cybersicherheit Frank Dieter
Senior Consultant 250 Male May 1980
Profile Software developer specialist with 8 years experience in Microsoft technology, particularly in Microsoft SharePoint since 2007. Soft Skills Strong team spirit and ability to adapt to multicultural
Destination Cloud. EMC Deutschland GmbH. Holger Daube. vspecialist Technical Teamlead Germany. Copyright 2010 EMC Corporation. All rights reserved.
Destination Cloud EMC Deutschland GmbH Holger Daube vspecialist Technical Teamlead Germany 1 The Journey To The Cloud Enterprise IT hat viele Herausforderungen Enterprise IT Komplex Teuer Unflexible Silo
SharePoint work by Adapt Software --- Preview --- www.adapt-india.com
SharePoint work by Adapt Software --- Preview --- www.adapt-india.com Project Management System Keep track of all the on-going projects. Create projects, assign team, allocate task and keep a track of
BP1 Mobile App Management: Solutions for ios and Android. Gary Barton Mobility Architect Citrix Receivers and Gateways Group
BP1 Mobile App Management: Solutions for ios and Android Gary Barton Mobility Architect Citrix Receivers and Gateways Group Agenda 1. Synergy Announcements 2. Mobile Management Market 3. Citrix Vision
SHAREPOINT 2010 DEVELOPMENT : IN THE CLOUD. Faraz Khan Senior Consultant RBA Consulting
SHAREPOINT 2010 DEVELOPMENT : IN THE CLOUD Faraz Khan Senior Consultant RBA Consulting AGENDA Intro to SharePoint Online SharePoint Hosting Options Feature Comparison with Public/Private/On-Premise Customization
Getting Started With Your LearnDevNow Learning
Learning Roadmaps Getting Started With Your LearnDevNow Learning LearnDevNow provides practical online learning videos for Microsoft developers worldwide. Our learning libraries feature self-paced training
Manage Office. A SharePoint solution. Executive Summary. About our Client. Business Situation
Manage Office A SharePoint solution. Executive Summary Mindfire Solutions developed a SharePoint site that involved customization of the existing Microsoft Server Admin templates to meet specific needs/requirement
Working with Structured Data in Microsoft Office SharePoint Server 2007 (Part1): Configuring Single Sign On Service and Database
Working with Structured Data in Microsoft Office SharePoint Server 2007 (Part1): Configuring Single Sign On Service and Database Applies to: Microsoft Office SharePoint Server 2007 Explore different options
PASS Deutschland e.v. Regionalgruppe Köln/Bonn/Düsseldorf
PASS Deutschland e.v. Regionalgruppe Köln/Bonn/Düsseldorf dbwarden Agenda Vorstellung Überblick Installation Settings Jobs Health Report IT Leiter / zertifizierter IT Projektleiter IT Team mit 7 Mitarbeitern
Tilo Böttcher, Sr. Program Manager Microsoft Corp Markus Dopp, Director Sales and Marketing Sitrion
Tilo Böttcher, Sr. Program Manager Microsoft Corp Markus Dopp, Director Sales and Marketing Sitrion Beispiele aus HR, Dokumenten-Management, Suche und Formularwesen Wie Microsoft intern SAP und SharePoint
Web Parts Framework i ASP.NET 2.0
Web Parts Framework i ASP.NET 2.0 Erik Westermann (Chefkonsulent).NET arkitekterne, Teknologisk Institut [email protected] Agenda Web part arkitekturen Web part manager Udvikling af Web Parts
IAC-BOX Network Integration. IAC-BOX Network Integration IACBOX.COM. Version 2.0.1 English 24.07.2014
IAC-BOX Network Integration Version 2.0.1 English 24.07.2014 In this HOWTO the basic network infrastructure of the IAC-BOX is described. IAC-BOX Network Integration TITLE Contents Contents... 1 1. Hints...
How To Manage Build And Release With Tfs 2013
#dwx14 [email protected] #dwx14 Central Build and Release Management with TFS Thomas Rümmler AIT GmbH & Co. KG Christian Schlag AIT GmbH & Co. KG 1 2 OUR DAILY MOTIVATION It s hard enough for
Implementing and Administering an Enterprise SharePoint Environment
Implementing and Administering an Enterprise SharePoint Environment There are numerous planning and management issues that your team needs to address when deploying SharePoint. This process can be simplified
Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann
Search Engines Chapter 2 Architecture 14.4.2011 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition Text Transformation Index Creation Querying User Interaction Ranking Evaluation
A brief introduction on SharePoint
A brief introduction on SharePoint Raizel Consulting 11/09/2007 SharePoint is an enterprise information portal, from Microsoft, that can be configured to run Intranet, Extranet and Internet sites. SharePoint
Derek Burney General Manager Microsoft SharePoint Platform Microsoft Corporation
Derek Burney General Manager Microsoft SharePoint Platform Microsoft Corporation Over 2300 Attendees from over 60 countries! Nearly 4 times the size of last year s Munich SharePoint Conference! Nearly
SharePoint 2010 Performance and Capacity Planning Best Practices
Information Technology Solutions SharePoint 2010 Performance and Capacity Planning Best Practices Eric Shupps SharePoint Server MVP About Information Me Technology Solutions SharePoint Server MVP President,
Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417
Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417 In dieser Schulung lernen Sie neue Features und Funktionalitäten in Windows Server 2012 in Bezug auf das Management, die Netzwerkinfrastruktur,
Virto Workflow Scheduler For Microsoft SharePoint Release 5.1.1. User and Installation Guide
Virto Workflow Scheduler For Microsoft SharePoint Release 5.1.1 User and Installation Guide 2 Table of Contents OVERVIEW... 3 SYSTEM/DEVELOPER REQUIREMENTS... 3 OPERATING SYSTEM... 3 SERVER... 4 BROWSER...
ida.com excellence in dependable automation
IEC 61508 Maintenance Status IEC 61508 Maintenance Projekt ist aus dem zulässigen Zeitrahmen gelaufen Viele Baustellen auch durch neue Mitglieder (Frankreich, USA, IEC 61511 Team) Bestehende Anforderungen,
Software Requirements, Version 2015_01_12
Software Requirements, Version 2015_01_12 Product / Version DSM 7.2.1 DSM 2013.2 DSM 2014.1 Server Software (EN) Windows Server 2008 R2 Standard, Enterprise, Datacenter, Core (all SP) Windows Server 2008
The SharePoint 2010 Developer Platform
The SharePoint 2010 Developer Platform An Introduction for ASP.NET Solution Architects David Chappell, Chappell & Associates September 2009 Copyright Microsoft Corporation 2009. All rights reserved. Contents
Implementing and Administering an Enterprise SharePoint Environment
Implementing and Administering an Enterprise SharePoint Environment There are numerous planning and management issues that your team needs to address when deploying SharePoint. This process can be simplified
BP8 Citrix Integrations with System Center Configuration Manager 2012
BP8 Citrix Integrations with System Center Configuration Manager 2012 Prasanna Padmanabhan, Manager Product Development, Citrix Systems Inc. Hans Schermer, Senior Systems Engineer, Citrix Systems GmbH
