Die SharePoint-Welt für den erfahrenen.net- Entwickler. Fabian Moritz MVP Office SharePoint Server

Size: px
Start display at page:

Download "Die SharePoint-Welt für den erfahrenen.net- Entwickler. Fabian Moritz MVP Office SharePoint Server"

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

Fabian Moritz MVP Office SharePoint Server Manuel Ihlau SharePoint Entwickler. Deployment Best Practices

Fabian Moritz MVP Office SharePoint Server Manuel Ihlau SharePoint Entwickler. Deployment Best Practices Fabian Moritz MVP Office SharePoint Server Manuel Ihlau SharePoint Entwickler Deployment Best Practices Agenda Was ist eigentlich zu deployen? SharePoint Solutions SharePoint Features und Elements Demo

More information

1703 Discovering SharePoint 2007 for Developers

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

More information

Intro to Developing for SharePoint Online: What Tools Can I Use?

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

More information

SharePoint Development for.net Developers

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

More information

SharePoint 2013 Syllabus

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

More information

Eamon Barker RKM Solutions

Eamon Barker RKM Solutions Eamon Barker RKM Solutions Identify the differences between WSS 3.0 and MOSS 2007 Identify the differences between MOSS 2007 Standard and Enterprise editions Understand which solution is best for my organisation

More information

The knowledge of ASP.NET 2.0 is a must. Knowledge of Sharepoint Portal Server (SPS 2003) would be an added advantage.

The knowledge of ASP.NET 2.0 is a must. Knowledge of Sharepoint Portal Server (SPS 2003) would be an added advantage. Course Title : SharePoint Portal Server Development(MOSS 2010) Duration : 5 days Microsoft Office SharePoint Server 2010 is a set of integrated server platform technologies used for connecting people,

More information

SharePoint for Digital Asset Management

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,

More information

Suche: Einsatz und Nutzen im Unternehmen

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

More information

SharePoint 2010 Advanced Foundation Development

SharePoint 2010 Advanced Foundation Development Course 50478B: SharePoint 2010 Advanced Foundation Development Course Length: 5 Days Overview This 5-day Instructor led, group-paced, classroom-delivery learning model with structured hands-on activities.

More information

Best of SharePoint 2010. Composites

Best of SharePoint 2010. Composites Best of SharePoint 2010 Composites Agenda Overview Composite Applications Developer Investments Microsoft SharePoint 2010 The business collaboration platform for the Enterprise and the Web Microsoft SharePoint

More information

SHAREPOINT 2010 CLIENT SIDE OBJECT MODEL

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

More information

Microsoft Office SharePoint Server (MOSS) 2007 Overview

Microsoft Office SharePoint Server (MOSS) 2007 Overview Microsoft Office SharePoint Server (MOSS) 2007 Overview for Technology Manager Wei Wang MOSS Technical Expert Consultant shangmeizhai@hotmail.commsiw 17.04.2010 - Seite 1 Agenda Collaboration Portal Search

More information

SharePoint for Digital Asset Management

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

More information

Extending Microsoft Office and SharePoint with EMC Documentum

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

More information

Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680)

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)

More information

Microsoft Office Specialist. Windows 7 Zertifizierungsund Upgrade-Pfade. Microsoft Office Specialist/Windows 7

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

More information

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 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

More information

Microsoft Technology Practice Capability document. MOSS / WSS Building Portal based Information Worker Solutions. Overview

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

More information

Introduction to SharePoint Development. for.net developers

Introduction to SharePoint Development. for.net developers Introduction to SharePoint Development for.net developers About me Rob Wilson MCT, SharePoint MCTS/MCITP SharePoint 2003 2007 2010 Email: rwilson@kellerschroeder.com Twitter: @therobmandotnet Blog(s):

More information

Symantec Backup Exec (TM) 13 Installation Log

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

More information

Local Touch Global Reach. SharePoint. www.wright.edu/idse. www.us.sogeti.com

Local Touch Global Reach. SharePoint. www.wright.edu/idse. www.us.sogeti.com SharePoint Why no lab? Requirements Server 2008 R2 x64 6GB RAM (8 recommended) IIS, SQL, Active Directory, Development can run on Windows 7 or Vista Entire presentation devoted to setting up SharePoint

More information

Creating Page Layouts using SharePoint Designer or Visual Studio

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:

More information

In the academics, he holds a Bachelor s Degree in Computer Science an Masters in Business Administration.

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

More information

Windows HPC Server 2008 Deployment

Windows HPC Server 2008 Deployment Windows HPC Server 2008 Michael Wirtz wirtz@rz.rwth-aachen.de Rechen- und Kommunikationszentrum RWTH Aachen Windows-HPC 2008 19. Sept 08, RWTH Aachen Windows HPC Server 2008 - Agenda o eines 2 Knoten Clusters

More information

AnyWeb AG 2008 www.anyweb.ch

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

More information

Presented by Sam Gill Innovative Solutions Inc.

Presented by Sam Gill Innovative Solutions Inc. Presented by Sam Gill Innovative Solutions Inc. ISInc Serving the business community since 1982 Technical and Desktop Training Networking and Software Consulting Partnerships ISInc Technical and Desktop

More information

Creating an Application Design

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

More information

Microsoft Office SharePoint Server 2007

Microsoft Office SharePoint Server 2007 Microsoft Office SharePoint Server 2007 Vir Bhargava Solution Specialist Microsoft Corporation April 2008 Agenda Introductions A New World of Work The SharePoint Story and MOSS 2007 SharePoint in a Real-World

More information

Designing and Deploying Messaging Solutions with Microsoft Exchange Server 2010 MOC 10233

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

More information

Diese Liste wird präsentiert von. Netheweb.de

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.

More information

MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions

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,

More information

Zielgruppe Dieses Training eignet sich für System Engineers und an SCCM- Administratoren.

Zielgruppe Dieses Training eignet sich für System Engineers und an SCCM- Administratoren. Deploying System Center 2012 Configuration Manager - SCCM MOC 10748 In dieser Schulung lernen Sie die Planung und Bereitstellung einer System Center 2012 Configuration Manager-Hierarchie, einschließlich

More information

Outlook 2003 INDEX. Account Manager...2. Configuration tool...5. Installing Outlook 2003...7. Configuring Outlook 2003...10.

Outlook 2003 INDEX. Account Manager...2. Configuration tool...5. Installing Outlook 2003...7. Configuring Outlook 2003...10. Outlook 2003 INDEX Account Manager...2 Configuration tool...5 Installing Outlook 2003...7 Configuring Outlook 2003...10 Erstelldatum 21.01.08 Version 1.0 Account Manager This chapter explains how to manage

More information

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. 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

More information

SharePoint 2013 DEV. David Čamdžić Kompas Xnet d.o.o.

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

More information

Developing Visual Studio Workflows and Activities for SharePoint Sites

Developing Visual Studio Workflows and Activities for SharePoint Sites Developing Visual Studio Workflows and Activities for SharePoint Sites Steve Heaney Product Development Manager Nintex steve.heaney@nintex.com Agenda Workflow authoring scenarios Windows Workflow Foundation

More information

Understanding SharePoint Development Choices

Understanding SharePoint Development Choices Understanding SharePoint Development Choices SharePoint is an incredibly powerful platform that can support a wide variety of business scenarios. While many solutions can be configured using out of the

More information

Course 10175A - Microsoft SharePoint 2010, Application Development

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

More information

SharePoint a User s s Perspective Jefferson County s s PVA Implementation of Microsoft Office SharePoint Server 2007

SharePoint a User s s Perspective Jefferson County s s PVA Implementation of Microsoft Office SharePoint Server 2007 SharePoint a User s s Perspective Jefferson County s s PVA Implementation of Microsoft Office SharePoint Server 2007 Jefferson County Property Valuation Administration Tax Assessor in most localities.

More information

Noramsoft Inc. Noramsoft Inc. SPT2O1O - Course Description. Developing Solutions with SharePoint Server 2010 SPT2010. Noramsoft Inc. Noramsoft Inc.

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

More information

David Chou. david.chou@microsoft.com Architect Microsoft

David Chou. david.chou@microsoft.com Architect Microsoft David Chou david.chou@microsoft.com Architect Microsoft Business Online Services from Microsoft Services Services Estimate custom design Unstructured Get specs from customer Validate specs with Tech

More information

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) 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

More information

SharePoint for Developers. Lunch and Learn

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

More information

XML-Wirtschaftsforum 2006 Portale. Enterprise Content Management mit IBM Mitarbeiterportalen. Matthias Zastrow

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

More information

Implementing Data Models and Reports with Microsoft SQL Server

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

More information

<Insert Picture Here> Oracle Direct Potsdam

<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

More information

SharePoint and Contract Management. Alan Weintraub Practice Director ECM Consulting (610) 234-4032 (office) (484) 467-5720 (Mobile)

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

More information

SharePoint 2010/2013 Course

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

More information

JapanCert 専 門 IT 認 証 試 験 問 題 集 提 供 者

JapanCert 専 門 IT 認 証 試 験 問 題 集 提 供 者 JapanCert 専 門 IT 認 証 試 験 問 題 集 提 供 者 http://www.japancert.com 1 年 で 無 料 進 級 することに 提 供 する Exam : 70-488 Title : Developing Microsoft SharePoint Server 2013 Core Solutions Vendor : Microsoft Version : DEMO

More information

Überblick Oracle Fusion Applications: Funktionen, Architektur und Implementierung

Überblick Oracle Fusion Applications: Funktionen, Architektur und Implementierung Überblick Oracle Fusion Applications: Funktionen, Architektur und Implementierung Carsten Ratzlaff Fusion Applications Sales Leader Berlin, 11. Oktober 2013 Agenda Überblick Fusion Applications Fusion

More information

Anforderungen an die plattformneutrale Entwicklung. geeigneter Entwicklungswerkzeuge

Anforderungen an die plattformneutrale Entwicklung. geeigneter Entwicklungswerkzeuge Stefan Frena Stefan Frena Masterstudent Wirtschaftsinformatik HM München Masterarbeit bei Oracle zum Thema: Anforderungen an die plattformneutrale Entwicklung mobiler Anwendungen unter Berücksichtigung

More information

Die Zukunft von Enterprise. Microsoft s Roadmap für Enterprise Social 09. April 2014

Die Zukunft von Enterprise. Microsoft s Roadmap für Enterprise Social 09. April 2014 Die Zukunft von Enterprise Social Microsoft s Roadmap für Enterprise Social 09. April 2014 Informationen von der SharePoint Conference 2014 Insgesamt ca. 250 Sessions ca. 125 Sessions zu Office 365 ca.

More information

SharePoint Community Tools fürs Web 2.0

SharePoint Community Tools fürs Web 2.0 SharePoint Convention 2009 SharePoint Community Tools fürs Web 2.0 Michael Greth mg@sharepointcommunity.de Michael Greth Trainer, Consultant für SharePoint Microsoft MVP für Office SharePoint Server SharePointCommunity.de

More information

Digicomp Microsoft Evolution Day 2015 1. MIM 2016 Oliver Ryf. Partner:

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

More information

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 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

More information

Microsoft Nano Server «Tuva» Rinon Belegu

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

More information

SharePoint 2010 Developer Track

SharePoint 2010 Developer Track SharePoint 2010 Developer Track Duration: 5 days Thorough education is key to working with SharePoint 2010 productively. This course guides you through essential 2010 elements, from pre-requisites to system

More information

AD2 - The future of mobile enterprise applications: Live from the Citrix Labs

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

More information

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. 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

More information

Microsoft Visual Studio 2008 Anwendungsentwicklung für Vista

Microsoft Visual Studio 2008 Anwendungsentwicklung für Vista 1 conplement AG 2008. All rights reserved. Microsoft Visual Studio 2008 Anwendungsentwicklung für Vista Vista Revisited - NIK Nürnberg 28.02.2008 conplement AG Thomas Hemmer CTO thomas.hemmer@conplement.de

More information

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 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

More information

Intelligent Dashboards made Simple! Using Excel Services

Intelligent Dashboards made Simple! Using Excel Services Intelligent Dashboards made Simple! Using Excel Services Presented by: Asif Rehmani, SharePoint Server MVP Trainer/Solution Architect asif@sharepointsolutions.com Who am I? One of the founders of Chicago

More information

BI & DASHBOARDS WITH SHAREPOINT 2007

BI & DASHBOARDS WITH SHAREPOINT 2007 BI & DASHBOARDS WITH SHAREPOINT 2007 Leveraging SharePoint to Deliver Business Intelligence Solutions Rob Kerr, Principal Consultant BlueGranite rkerr@blue-granite.com http://blog.robkerr.com About BlueGranite

More information

Cloud Performance Group 1. Cloud@Night Event. 14. Januar 2016 / Matthias Gessenay (matthias.gessenay@corporatesoftware.ch)

Cloud Performance Group 1. Cloud@Night Event. 14. Januar 2016 / Matthias Gessenay (matthias.gessenay@corporatesoftware.ch) 1 Cloud@Night Event 14. Januar 2016 / Matthias Gessenay (matthias.gessenay@corporatesoftware.ch) 2 Agenda SharePoint ABC Project Server ABC What s new in O365 4 SharePoint 2016 ABC A Access App-Support

More information

Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021

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

More information

Governance, Risk und Compliance (GRC) in der Cloud

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

More information

Senior Consultant 250 Male May 1980

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

More information

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. 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

More information

SharePoint work by Adapt Software --- Preview --- www.adapt-india.com

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

More information

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 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

More information

The Single Source For Your Business Technology Needs. SharePoint Services at

The Single Source For Your Business Technology Needs. SharePoint Services at SharePoint Services at SHAREPOINT SERVICES Consulting Intranet / Extranet Portal Business Intelligence Scorecard Workflow Branding SHAREPOINT SERVICES InfoPath Form Social Network Integration LOB Application

More information

SHAREPOINT 2010 DEVELOPMENT : IN THE CLOUD. Faraz Khan Senior Consultant RBA Consulting

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

More information

Getting Started With Your LearnDevNow Learning

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

More information

Manage Office. A SharePoint solution. Executive Summary. About our Client. Business Situation

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

More information

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 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

More information

PASS Deutschland e.v. Regionalgruppe Köln/Bonn/Düsseldorf

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

More information

LINQ & SharePoint Development. Mirjam van Olst May 29 th 2009

LINQ & SharePoint Development. Mirjam van Olst May 29 th 2009 LINQ & SharePoint Development Mirjam van Olst May 29 th 2009 About me Mirjam van Olst SharePoint Architect @ Macaw Organizer for SDN and DIWUG Dutch Blog => www.sharepointblogs.com/mirjam Writing articles

More information

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 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

More information

Web Parts Framework i ASP.NET 2.0

Web Parts Framework i ASP.NET 2.0 Web Parts Framework i ASP.NET 2.0 Erik Westermann (Chefkonsulent).NET arkitekterne, Teknologisk Institut erik.westermann@teknologisk.dk Agenda Web part arkitekturen Web part manager Udvikling af Web Parts

More information

IAC-BOX Network Integration. IAC-BOX Network Integration IACBOX.COM. Version 2.0.1 English 24.07.2014

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...

More information

Microsoft SharePoint 2010, Application Development Course Outline

Microsoft SharePoint 2010, Application Development Course Outline Course 10175A: Microsoft SharePoint 2010, Application Development Course Outline Module 1: Introduction to the SharePoint 2010 Development Platform This module describes the SharePoint 2010 development

More information

How To Manage Build And Release With Tfs 2013

How To Manage Build And Release With Tfs 2013 #dwx14 feedback@developer-week.de #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

More information

http://expression.microsoft.com/en-us/dd571513(printer).aspx

http://expression.microsoft.com/en-us/dd571513(printer).aspx Page 1 of 6 2009 Microsoft Corporation. All rights reserved. Create a Database Search Page Using Expression Web Authors:Clark Kurtz [ http://social.expression.microsoft.com/en-us/profile/?user=clarknk

More information

SharePoint 2011 as a Business Intelligence Platform for On-Premise and Cloud Data. Adis Jugo, Managing Consultant, PlanB. GmbH

SharePoint 2011 as a Business Intelligence Platform for On-Premise and Cloud Data. Adis Jugo, Managing Consultant, PlanB. GmbH SharePoint 2011 as a Business Intelligence Platform for On-Premise and Cloud Data Adis Jugo, Managing Consultant, PlanB. GmbH Agenda History of BI in SharePoint What is new with SharePoint 2010 How to

More information

Implementing and Administering an Enterprise SharePoint Environment

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

More information

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann

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

More information

A brief introduction on SharePoint

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

More information

Deploying an Access Database to the Enterprise through Access Services in SharePoint 2013

Deploying an Access Database to the Enterprise through Access Services in SharePoint 2013 Deploying an Access Database to the Enterprise through Access Services in SharePoint 2013 Brian Fitch SharePoint & Application Development Practice Lead @ GNet Group Brian.Fitch@GNetGroup.com Tejpal Thatte

More information

Derek Burney General Manager Microsoft SharePoint Platform Microsoft Corporation

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

More information

Software EMEA Performance Tour 2013. 17.-19 Juni, Berlin

Software EMEA Performance Tour 2013. 17.-19 Juni, Berlin Software EMEA Performance Tour 2013 17.-19 Juni, Berlin Funktion,Performance,ALM,... Neues aus der HP Entwicklung Jürgen Pilz / 18.06.2013 Copyright 2012 Hewlett-Packard Development Company, L.P. The information

More information

SharePoint 2010 Performance and Capacity Planning Best Practices

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,

More information

Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417

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,

More information

ETK Technical Workshop 17.11.2011 User Centric vs. Device Centric

ETK Technical Workshop 17.11.2011 User Centric vs. Device Centric ETK Technical Workshop 17.11.2011 User Centric vs. Device Centric René Princz-Schelter Head of PreSales Alcatel-Lucent Enterprise Germany emphasized Member of EMEA Marketing Team 1 2 Dynamic Enterprise

More information

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 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...

More information

ida.com excellence in dependable automation

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,

More information

Software Requirements, Version 2015_01_12

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

More information

The SharePoint 2010 Developer Platform

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

More information

Implementing and Administering an Enterprise SharePoint Environment

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

More information

BP8 Citrix Integrations with System Center Configuration Manager 2012

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

More information