SHAREPOINT 2010 CLIENT SIDE OBJECT MODEL

Size: px
Start display at page:

Download "SHAREPOINT 2010 CLIENT SIDE OBJECT MODEL"

Transcription

1 SHAREPOINT 2010 CLIENT SIDE OBJECT MODEL Phil Wicklund SharePoint FREEWARE

2 Agenda Introduction / Why COM? COM Architecture Coding Samples DEMO.NET COM Questions SharePoint FREEWARE

3 Intro to the SP 2010 COM Not enough web services in SP 2007 Rather than create more services, COM provides the complete API COM provides a consistent development experience: Windows Applications ASP.NET web sites Silverlight Applications JavaScript, www client side scripting SharePoint FREEWARE

4 COM Architecture

5 Assembly References SharePoint, Server Side Microsoft.SharePoint (ISAPI).NET clients Microsoft.SharePoint.Client (ISAPI) Silverlight clients Microsoft.SharePoint.Client.Silverlight (Layouts/clientbin) Javascript clients SP.js & SP.Core.js (Layouts) SharePoint FREEWARE

6 Comparable Objects Microsoft.SharePoint SPContext SPSite SPWeb SPList SPListItem SPField SPFile Client Object Models ClientContext Site Web List ListItem Field File

7 Starter Code Using Microsoft.SharePoint.Client;... using (ClientContext context = new ClientContext(" { Web web = context.web; context.load(web); context.executequery(); string title = web.title; } // ListCollection lists = web.lists;

8 Iterating through Lists in a Web using (ClientContext context = new ClientContext(" { Web web = context.web; context.load(web); context.load(web.lists); context.executequery(); } foreach(list list in web.lists) { //do something }

9 Efficiencies Don t be Lazy! Web web = context.web; context.load(web, wprop => wprop.title)); ListCollection lists = web.lists; IEnumerable<List> filtered = context. LoadQuery(lists.Include(l=>l.Title)); context.executequery(); foreach(list list in filtered) { } SharePoint FREEWARE

10 Working with List Items Web web = context.web; List list = context.web.lists. GetByTitle( List Title"); CamlQuery query = CamlQuery.CreateAllItemsQuery(); ListItemCollection items = lst.getitems(query); context.load(items); context.executequery(); foreach (ListItem item in items) { string title = item["title"]; }

11 Efficencies with List Items CamlQuery query = new CamlQuery(); query.viewxml = "<View><Query><Where><Eq> <FieldRef Name='Title'/><Value Type='Text'>Phil</Value> </Eq></Where></Query></View>"; ListItemCollection items = list.getitems(query); context.load(items, x => x.include( item => item["id"], item => item["title"], item => item.displayname));

12 Adding new List Items List list = context.web.lists. GetByTitle( List Title"); context.load(list); ListItem newitem = list.additem(new ListItemCreationInformation()); newitem["title"] = "My new item"; newitem.update(); context.executequery();

13 Silverlight & Asynchronous Calls private void Button_Click(object sender, RoutedEventArgs e) { // Load a bunch of stuff clientcontext.executequeryasync(success, failure); } private void success(object sender, ClientRequestSucceededEventArgs args) { RunQuery runquery= Run; this.dispatcher.begininvoke(runquery); } private delegate void RunQuery(); private void Run() { /* do something */ } private void failure(object sender, ClientRequestFailedEventArgs args) { /* do something */ }

14 .NET COM Demo Build a Console (client) Application Render all the List Titles from a remote SharePoint site. Create a new list item in a remote SharePoint site. SharePoint FREEWARE

15 QUESTIONS & COMMENTS Phil Wicklund SharePoint FREEWARE

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

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual HOL8 Using Silverlight with the Client Object Model C#

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual HOL8 Using Silverlight with the Client Object Model C# A SharePoint Developer Introduction Hands-On Lab Lab Manual HOL8 Using Silverlight with the Client Object Model C# Information in this document, including URL and other Internet Web site references, is

More information

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB A SharePoint Developer Introduction Hands-On Lab Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB This document is provided as-is. Information and views expressed in this document,

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

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

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

Developer Walkthroughs

Developer Walkthroughs Developer Walkthroughs This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice. You bear the risk

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

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

Die SharePoint-Welt für den erfahrenen.net- Entwickler. Fabian Moritz MVP Office SharePoint Server Die SharePoint-Welt für den erfahrenen.net- Entwickler Fabian Moritz MVP Office SharePoint Server 1 SharePoint Object Model IFilter Webpart Connections Webparts Web Server Controls Custom Field Types Web

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

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

Creating Internet Facing Websites with SharePoint 2010

Creating Internet Facing Websites with SharePoint 2010 Software services delivering SharePoint, Mobile, and Business Intelligence solutions Creating Internet Facing Websites with SharePoint 2010 Todd Baginski Canviz, LLC todd.baginski@canviz.com About Me 6

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

Remove permissions from form after submitting

Remove permissions from form after submitting PDF SHARE FORMS Online, Offline, OnDemand Remove permissions from form after submitting Product: PDF Share Forms Enterprise for SharePoint 2013 Contents Remove permissions from every submitter... 2 Template...

More information

9/26/2013. Installer.ps1 will validate all settings before deployment. Define your deployment. Define your deployment Run PDT Downloader

9/26/2013. Installer.ps1 will validate all settings before deployment. Define your deployment. Define your deployment Run PDT Downloader 1 Server Roles and Features.NET Framework 3.51.NET Framework 4.5 IIS Web Server IIS Default Document IIS Directory Browsing IIS HTTP Errors IIS Static Content IIS HTTP Redirection IIS HTTP Logging IIS

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

MyChartWebPart.cs. // For SortList using System.Collections.Generic; using System.Collections; // For DataTable using System.Data;

MyChartWebPart.cs. // For SortList using System.Collections.Generic; using System.Collections; // For DataTable using System.Data; MyChartWebPart.cs // Standard SharePoint web part includes using System; using System.ComponentModel; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts;

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

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

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. 20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction

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

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training Tony Wong 1 Copyright Copyright 2012 2012 Hewlett-Packard Development Development Company, Company, L.P. The L.P. information

More information

Software Development Interactief Centrum voor gerichte Training en Studie Edisonweg 14c, 1821 BN Alkmaar T: 072 511 12 23

Software Development Interactief Centrum voor gerichte Training en Studie Edisonweg 14c, 1821 BN Alkmaar T: 072 511 12 23 Microsoft SharePoint year SharePoint 2013: Search, Design and 2031 Publishing New SharePoint 2013: Solutions, Applications 2013 and Security New SharePoint 2013: Features, Delivery and 2010 Development

More information

CRM Developer Form Scripting. @DavidYack

CRM Developer Form Scripting. @DavidYack CRM Developer Form Scripting @DavidYack Using Form Scripting Allows dynamic business rules to be implemented on forms Script can run in response to Form Events Form Script is uploaded and run from CRM

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

Special Report UNDERSTANDING SHAREPOINT JOURNAL. Bjørn Furuknap. What s New for SharePoint 2010 Developers

Special Report UNDERSTANDING SHAREPOINT JOURNAL. Bjørn Furuknap. What s New for SharePoint 2010 Developers Special Report 2 UNDERSTANDING SHAREPOINT JOURNAL Bjørn Furuknap What s New for SharePoint 2010 Developers UNDERSTANDING SHAREPOINT JOURNAL What s New for SharePoint 2010 Developers I dedicate this issue

More information

Custom SharePoint Solutions with HTML and JavaScript In this book, you ll learn to: SOURCE CODE ONLINE

Custom SharePoint Solutions with HTML and JavaScript In this book, you ll learn to: SOURCE CODE ONLINE For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to access them. Contents at a Glance About the Author xiii

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

MICROSOFT 70-573 EXAM QUESTIONS & ANSWERS

MICROSOFT 70-573 EXAM QUESTIONS & ANSWERS MICROSOFT 70-573 EXAM QUESTIONS & ANSWERS Number: 70-573 Passing Score: 700 Time Limit: 120 min File Version: 55.5 http://www.gratisexam.com/ MICROSOFT 70-573 EXAM QUESTIONS & ANSWERS Exam Name: TS: Microsoft

More information

Thomas Röthlisberger IT Security Analyst thomas.roethlisberger@csnc.ch

Thomas Röthlisberger IT Security Analyst thomas.roethlisberger@csnc.ch Thomas Röthlisberger IT Security Analyst thomas.roethlisberger@csnc.ch Compass Security AG Werkstrasse 20 Postfach 2038 CH-8645 Jona Tel +41 55 214 41 60 Fax +41 55 214 41 61 team@csnc.ch www.csnc.ch What

More information

A SharePoint Developer Introduction

A SharePoint Developer Introduction A SharePoint Developer Introduction Hands-On Lab Lab Manual HOL7 - Developing a SharePoint 2010 Workflow with Initiation Form in Visual Studio 2010 C# Information in this document, including URL and other

More information

Beyond Social. Adis Jugo, Technology Advisor @ PlanB. Tailor SharePoint 2013 Social features according to your needs and compliance regulations

Beyond Social. Adis Jugo, Technology Advisor @ PlanB. Tailor SharePoint 2013 Social features according to your needs and compliance regulations Beyond Social Tailor SharePoint 2013 Social features according to your needs and compliance regulations Adis Jugo, Technology Advisor @ PlanB. Who? 7.-8. März 2013, Rosenheim Who? Adis Jugo Born in Sarajevo,

More information

Skills for Employment Investment Project (SEIP)

Skills for Employment Investment Project (SEIP) Skills for Employment Investment Project (SEIP) Standards/ Curriculum Format for Web Application Development Using DOT Net Course Duration: Three Months 1 Course Structure and Requirements Course Title:

More information

Como configurar o IIS Server para ACTi NVR Enterprise

Como configurar o IIS Server para ACTi NVR Enterprise Como configurar o IIS Server para 20101/1/26 NVR is a Windows based video surveillance software that requires Microsoft IIS (Internet Information Services) 6 or above to operate properly. If you already

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

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

"Charting the Course...... to Your Success!" MOC 10174 B Configuring and Administering Microsoft SharePoint 2010. Course Summary

Charting the Course...... to Your Success! MOC 10174 B Configuring and Administering Microsoft SharePoint 2010. Course Summary Description Course Summary This five-day instructor-led course teaches students how to install, configure, and administer Microsoft SharePoint and also how to manage and monitor sites and users by using

More information

70-489. Developing Microsoft SharePoint Server 2013 Advanced Solutions. Version: Demo. Page <<1/8>>

70-489. Developing Microsoft SharePoint Server 2013 Advanced Solutions. Version: Demo. Page <<1/8>> 70-489 Developing Microsoft SharePoint Server 2013 Advanced Solutions Version: Demo Page 1. You need to configure the external content type to search for research papers. Which indexing connector

More information

NAV 2013 Roadmap. Tom Taylor

NAV 2013 Roadmap. Tom Taylor NAV 2013 Roadmap Tom Taylor AGENDA Microsoft Dynamics NAV 2013 Roadmap Choice 3 Scenarios All features and functions Dynamics NAV Roadmap 2010 2012 2013 2014 2015 NAV 2009 R2 NAV 2013 NAV 8 NAV 9 NAV 10

More information

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB)

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Course Number: 70-567 UPGRADE Certification Exam 70-567 - UPGRADE: Transition your MCPD Web Developer Skills to MCPD ASP.NET

More information

MS-10232: Designing and Developing Microsoft SharePoint Server 2010 Applications. Course Objectives. Price. Duration. Methods of Delivery

MS-10232: Designing and Developing Microsoft SharePoint Server 2010 Applications. Course Objectives. Price. Duration. Methods of Delivery MS-10232: Designing and Developing Microsoft SharePoint Server 2010 Applications This five-day instructor led course is intended for Microsoft SharePoint Development professionals who are responsible for

More information

SharePoint Apps model overview

SharePoint Apps model overview SharePoint Apps model overview new challenges, new architecture 23/04/2014 V1.0 Competitive forces We want to pay only for what we need! We want you to be quicker than wind! We want the better quality

More information

A Developer s Introduction to SharePoint 2013 Apps. Ryan McIntyre, MCITP, MCPD National Architect @ryanmcintyre

A Developer s Introduction to SharePoint 2013 Apps. Ryan McIntyre, MCITP, MCPD National Architect @ryanmcintyre A Developer s Introduction to SharePoint 2013 Apps Ryan McIntyre, MCITP, MCPD National Architect @ryanmcintyre Agenda Why Apps App Model App Hosting Models Development Strategies 2 Introducing SharePoint

More information

SharePoint 2010 General Introduction Introduction to SharePoint SharePoint Installation and Administration SharePoint Site Hierarchy Website Email

SharePoint 2010 General Introduction Introduction to SharePoint SharePoint Installation and Administration SharePoint Site Hierarchy Website Email Deccansft Sftware Services SharePint 2010 Syllabus SharePint 2010 General Intrductin What is IIS IIS Website & Web Applicatin Steps t Create Multiple Website n Prt 80 What is Applicatin Pl What is AppDmain

More information

Developing Microsoft SharePoint Server 2013 Core Solutions

Developing Microsoft SharePoint Server 2013 Core Solutions Course 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions Course Details Course Outline Module 1: SharePoint as a Developer Platform This module examines different approaches that can be

More information

ArcGIS Viewer for Silverlight An Introduction

ArcGIS Viewer for Silverlight An Introduction Esri International User Conference San Diego, California Technical Workshops July 26, 2012 ArcGIS Viewer for Silverlight An Introduction Rich Zwaap Agenda Background Product overview Getting started and

More information

Creating a folder in a library and submitting a form

Creating a folder in a library and submitting a form PDF SHARE FORMS Online, Offline, OnDemand PDF forms and SharePoint are better together Creating a folder in a library and submitting a form Product: PDF Share Forms Enterprise for SharePoint 2010 and PDF

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

SPT2013: Developing Solutions with. SharePoint 2013. 4 DAYS AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES

SPT2013: Developing Solutions with. SharePoint 2013. 4 DAYS AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES SHAREPOINT 2013 FOR.NET DEVELOPERS 4 DAYS SPT2013: Developing Solutions with SharePoint 2013 AUDIENCE FORMAT COURSE DESCRIPTION.NET Developers Instructor-led training with hands-on labs This 5-day course

More information

Getting started with your AppDev Microsoft Development Library

Getting started with your AppDev Microsoft Development Library Getting started with your AppDev Microsoft Development Library Learning Roadmaps AppDev s comprehensive Microsoft Development learning library allows you or your team to have access to in-depth courses

More information

Enhancing your Web Experiences with ASP.NET Ajax and IIS 7

Enhancing your Web Experiences with ASP.NET Ajax and IIS 7 Enhancing your Web Experiences with ASP.NET Ajax and IIS 7 Rob Cameron Developer Evangelist, Microsoft http://blogs.msdn.com/robcamer Agenda IIS 6 IIS 7 Improvements for PHP on IIS ASP.NET Integration

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

Mobile Development Fundamentals

Mobile Development Fundamentals Exam : 98-373 Title : Mobile Development Fundamentals Version : Demo 1 / 6 1.A programming theory that breaks design areas into distinct sections is referred to as: A. Lists. B. Separation of concerns.

More information

Integration test in SharePoint

Integration test in SharePoint Codecamp, SharePoint User Group October 31, 2009 Me Education B.Sc. in Computer Science AP in Computer Science SharePoint experience SharePoint Developer at ProActive since 2007 Questions Just ask Q: Do

More information

Computer Training Source. Designing and Developing Microsoft SharePoint Server 2010 Applications

Computer Training Source. Designing and Developing Microsoft SharePoint Server 2010 Applications Computer Training Source Course 10232A: Designing and Developing Microsoft SharePoint Server 2010 Applications Length: 5 Days Published: September 28, 2010(In development) Language(s): English Audience(s):

More information

The Great Office 365 Adventure

The Great Office 365 Adventure COURSE OVERVIEW The Great Office 365 Adventure Duration: 5 days It's no secret that Microsoft has been shifting its development strategy away from the SharePoint on-premises environment to focus on the

More information

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW About this Course This course provides SharePoint developers the information needed to implement SharePoint solutions

More information

ArcGIS Web Mapping. Sam Berg, esri sberg@esri.com

ArcGIS Web Mapping. Sam Berg, esri sberg@esri.com ArcGIS Web Mapping Sam Berg, esri sberg@esri.com Agenda ArcGIS and WebMaps The APIs ArcGIS for Flex Viewer ArcGIS for Silverlight Builder ArcGIS for Sharepoint ArcGIS Application Templates ArcGIS Runtime

More information

Catálogo de cursos plataforma elearning Microsoft Imagine Academy: Microsoft SQL Server y Visual Studio

Catálogo de cursos plataforma elearning Microsoft Imagine Academy: Microsoft SQL Server y Visual Studio Catálogo de cursos plataforma elearning Microsoft Imagine Academy: Microsoft SQL Server y Visual Studio Academic Visual Studio Library Curso Nombre del curso Idioma 2263 Clinic 2263: Exam Preparation for

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

Course Outline: Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions

Course Outline: Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Course Outline: Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This course provides SharePoint

More information

ADS2013: App Development with SharePoint 2013

ADS2013: App Development with SharePoint 2013 SHAREPOINT 2013 FOR IT PROFESSIONALS 4 DAYS ADS2013: App Development with SharePoint 2013 AUDIENCE FORMAT COURSE DESCRIPTION.NET Developers Instructor-led webcast with hands-on labs This 4-day course explores

More information

Course 10232: Designing and Developing Microsoft SharePoint Server 2010 Applications

Course 10232: Designing and Developing Microsoft SharePoint Server 2010 Applications Course 10232: Designing and Deploying Microsoft SharePoint Server 2010 Applications Page 1 of 7 Course 10232: Designing and Developing Microsoft SharePoint Server 2010 Applications 4 days; Instructor-Led

More information

DocAve 6 SDK and Management Shell

DocAve 6 SDK and Management Shell DocAve 6 SDK and Management Shell User Guide Service Pack 4, Cumulative Update 2 Revision L Issued July 2014 Table of Contents About SDK and Management Shell... 11 Configuration... 11 Agents... 11 Getting

More information

How to Install and Setup IIS Server

How to Install and Setup IIS Server How to Install and Setup IIS Server 2010/9/16 NVR is a Windows based video surveillance software that requires Microsoft IIS (Internet Information Services) to operate properly. If you already have your

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

DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions

DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions Summary Duration Vendor Audience 5 Days Microsoft Developer Published Level Technology 21 November 2013 300 Microsoft SharePoint

More information

Mjolnirr: private PaaS as distributed computing evolution

Mjolnirr: private PaaS as distributed computing evolution Mjolnirr: private PaaS as distributed computing evolution Gleb Radchenko, Dmitry Savchenko gleb.radchenko@susu.ru South Ural State University, Russia Problem definition Cloud computing enables resource

More information

Course MS55077A Project Server 2013 Development. Length: 5 Days

Course MS55077A Project Server 2013 Development. Length: 5 Days 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com Course MS55077A Project Server 2013 Development Length: 5

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

POWERSHELL (& SHAREPOINT) This ain t your momma s command line!

POWERSHELL (& SHAREPOINT) This ain t your momma s command line! POWERSHELL (& SHAREPOINT) This ain t your momma s command line! JAMYE FEW SENIOR CONSULTANT 12+ years as IT Professional ( IT PRO duck DEV ) A little IT PRO, little more DEV and a lot of ducking. Certifiable

More information

Open source framework for interactive data exploration in server based architecture

Open source framework for interactive data exploration in server based architecture Open source framework for interactive data exploration in server based architecture D5.5 v1.0 WP5 Visual Analytics: D5.5 Open source framework for interactive data exploration in server based architecture

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

Developing Microsoft SharePoint Server 2013 Advanced Solutions

Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Page 1 of 9 Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: 4 days; Instructor-Led Introduction

More information

This module explains the Microsoft Dynamics NAV architecture and its core components.

This module explains the Microsoft Dynamics NAV architecture and its core components. MICROSOFT DYNAMICS NAV COURSE OUTLINE 1) MICROSOFT DYNAMICS NAV INSTALLATION & CONFIGURATION Module 1: Architecture This module explains the Microsoft Dynamics NAV architecture and its core components.

More information

Developing Microsoft SharePoint Server 2013 Advanced Solutions MOC 20489

Developing Microsoft SharePoint Server 2013 Advanced Solutions MOC 20489 Developing Microsoft SharePoint Server 2013 Advanced Solutions MOC 20489 Course Outline Module 1: Creating Robust and Efficient Apps for SharePoint In this module, you will review key aspects of the apps

More information

Designing and Developing Microsoft SharePoint Server 2010 Applications Course Outline

Designing and Developing Microsoft SharePoint Server 2010 Applications Course Outline Designing and Developing Microsoft SharePoint Server 2010 Applications Course Outline Course Overview: This five-day instructor-led course is intended for SharePoint Development professionals who are responsible

More information

SilverlightViewerForReportingServices2008GettingStartedExample.zip

SilverlightViewerForReportingServices2008GettingStartedExample.zip Setting up Microsoft SQL Server 2008 Reporting Services and Silverlight Viewer for Reporting Services 2008 for work over secured protocol (SSL) Getting Started. Prerequisites Attachment.NET Framework 3.5

More information

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011 Hands-On Lab Client Workflow Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: DEFINING A PROCESS IN VISIO 2010... 4 Task 1 Define the Timesheet Approval process... 4 Task 2

More information

fpafi/tl enterprise Microsoft Silverlight 5 and Windows Azure Enterprise Integration Silverlight Enterprise Applications on the Windows

fpafi/tl enterprise Microsoft Silverlight 5 and Windows Azure Enterprise Integration Silverlight Enterprise Applications on the Windows Microsoft Silverlight 5 and Windows Azure Enterprise Integration A step-by-step guide to creating and running scalable Silverlight Enterprise Applications on the Windows Azure platform David Burela 88

More information

Developing Microsoft SharePoint Server 2013 Advanced Solutions

Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Course Details Course Outline Module 1: Creating Robust and Efficient Apps for SharePoint In this module, you will review key

More information

AppDev OnDemand Microsoft Development Learning Library

AppDev OnDemand Microsoft Development Learning Library AppDev OnDemand Microsoft Development Learning Library A full year of access to our Microsoft Develoment courses, plus future course releases included free! Whether you want to learn Visual Studio, SharePoint,

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

Simon Sebright SharePoint for Thinking Developers. Frank Birbacher Style C++for Version Control

Simon Sebright SharePoint for Thinking Developers. Frank Birbacher Style C++for Version Control Lightning Talks Bernhard Merkle Find(ing) Bugs Is Easy Charles Bailey The Rant Of Three Simon Sebright SharePoint for Thinking Developers Phil Nash Why I Do What I Do Matt Turner - Fluency Chris Oldwood

More information

10174 - SharePoint 2010

10174 - SharePoint 2010 Configuring and Managing Microsoft SharePoint 2010 Introduction The course teaches students how to install, configure and administer SharePoint, and also manage and monitor sites and users by using SharePoint

More information

SAV2013: The Great SharePoint 2013 App Venture

SAV2013: The Great SharePoint 2013 App Venture SHAREPOINT 2013 FOR DEVELOPERS 5 DAYS SAV2013: The Great SharePoint 2013 App Venture AUDIENCE FORMAT COURSE DESCRIPTION Professional Developers Instructor-led training with hands-on labs This 5-day course

More information

Microsoft SharePoint. Positions Available in 2015

Microsoft SharePoint. Positions Available in 2015 Microsoft SharePoint Positions Available in 2015 8 January 2015 Page 2 of 7 Contents 1. Junior Consultant... 3 2. Consultant... 4 3. Senior Consultant... 5 4. SharePoint Developer... 6 Directors: A.D.

More information

Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led

Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led Course Description This three day course prepares IT Professionals to administer enterprise search solutions using

More information

55014-Upgrading Your Development Skills to SharePoint 2013

55014-Upgrading Your Development Skills to SharePoint 2013 Course Outline 55014-Upgrading Your Development Skills to SharePoint 2013 Duration: 5 days (30 hours) Target Audience: This course is intended for anyone interested in getting an introductory look at the

More information

1. Digital Literacy - Computer Security and Privacy 2. Partners in Learning: Organize and Manage the Use of ICT in Your Classroom 3.

1. Digital Literacy - Computer Security and Privacy 2. Partners in Learning: Organize and Manage the Use of ICT in Your Classroom 3. 1. Digital Literacy - Computer Security and Privacy 2. Partners in Learning: Organize and Manage the Use of ICT in Your Classroom 3. Course 10391: Intermediate Skills in Microsoft Word 2010 4. Partners

More information

WEB APPLICATION DEVELOPMENT. UNIT I J2EE Platform 9

WEB APPLICATION DEVELOPMENT. UNIT I J2EE Platform 9 UNIT I J2EE Platform 9 Introduction - Enterprise Architecture Styles - J2EE Architecture - Containers - J2EE Technologies - Developing J2EE Applications - Naming and directory services - Using JNDI - JNDI

More information

Introduction to Active Directory. December 10th, 2008 1-3pm Daniels 407

Introduction to Active Directory. December 10th, 2008 1-3pm Daniels 407 Introduction to Active Directory December 10th, 2008 1-3pm Daniels 407 What we are going to cover... The basics of Active Directory What AD is What AD isn't Tools Management Concepts Additional Services

More information

Describe how to utilize the Publishing API to access publishing settings and content.

Describe how to utilize the Publishing API to access publishing settings and content. CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Duration: 5 days About this Course

More information

GOA365: The Great Office 365 Adventure

GOA365: The Great Office 365 Adventure BEST PRACTICES IN OFFICE 365 DEVELOPMENT 5 DAYS GOA365: The Great Office 365 Adventure AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES Professional Developers Instructor-led training with hands-on

More information

HACKING AUTHENTICATION CHECKS IN WEB APPLICATIONS ASHISH RAO & SIDDHARTH ANBALAHAN

HACKING AUTHENTICATION CHECKS IN WEB APPLICATIONS ASHISH RAO & SIDDHARTH ANBALAHAN HACKING AUTHENTICATION CHECKS IN WEB APPLICATIONS ASHISH RAO & SIDDHARTH ANBALAHAN About Ashish 4 years of IT Security Experience Security Consultant and Researcher Application and Code Security Practice

More information

ITMC 2079 MCTS Configuring and Administering Microsoft SharePoint 2010

ITMC 2079 MCTS Configuring and Administering Microsoft SharePoint 2010 ITMC 2079 MCTS Configuring and Administering Microsoft SharePoint 2010 Length: 48 Hours Delivery Method: Instructor-led (classroom); MOC 10174 Course Description The course teaches students how to install,

More information

> Define the different phases of K2 development, including: understand, model, build, maintain and extend

> Define the different phases of K2 development, including: understand, model, build, maintain and extend This course concentrates on K2 blackpoint from a SharePoint Site Collection owners perspective, that is, a person who already has a basic understanding of SharePoint concepts and terms before attending

More information

Microsoft Dynamics GP 2013. Architecture. White Paper. This document describes the architecture for Microsoft Dynamics GP.

Microsoft Dynamics GP 2013. Architecture. White Paper. This document describes the architecture for Microsoft Dynamics GP. Microsoft Dynamics GP 2013 Architecture White Paper This document describes the architecture for Microsoft Dynamics GP. Date: February 2013 Table of Contents Introduction... 4 Client Types... 4 Desktop

More information

Developing ASP.NET MVC 4 Web Applications MOC 20486

Developing ASP.NET MVC 4 Web Applications MOC 20486 Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies

More information