SlideShare ist ein Scribd-Unternehmen logo
1 von 57
SharePoint 2013 APIs demystified
JOŠKO IVANKOV, EVISION

SHAREPOINT AND PROJECT CONFERENCE ADRIATICS 2013
ZAGREB, NOVEMBER 27-28 2013
sponsors
Agenda
• About SharePoint
• SharePoint APIs history
• SharePoint 2013 API overview
• What API to choose
• SharePoint Apps overview
• SharePoint Dev environment
• Key Takeaways
• Q&A
What is SharePoint?
• It’s web & intranet platform for…
•
•
•
•
•
•
•

Collaboration
Enterprise Content Management
Search
Business Process Management (Workflows)
Business Intelligence
Social Computing
Enterprise Application Integration

• More than 50% of intranets in the world use SharePoint!!!
Why SharePoint?
• Worldwide used product and platform
• Leading platform for ECM, BPM, BI and Social Computing
• On premise and Cloud ready
• Standardized and widely accepted functionalities
• Lot’s of Out-Of-The-Box features and platform for creating your
own applications
What is SharePoint Development?

End user
Power user

• SharePoint Configuration
• Internet Explorer
• XML, XSL, JavaScript, jQuery, UI Config
• SharePoint designer

Designer

• Master Page, Page layout, CSS
• SharePoint designer

Developer

• SSOM, CSOM, .NET, JS, REST
• Visual Studio
One day in life of SharePoint developer
• Server side OM
• Client side OM
• JavaScript
• Rest
• WCF (SOAP, OData)
• HTML, CSS
• XML, XSLT
• jQuery
• TypeScript
• Oauth

• NTLM, Kerberos
• FBA authentication
• Claims
• InfoPath forms
• Azure ACS
• AppFabric Cache
• Windows RT
• Windows Phone
• Workflow Foundation
• Silverlight
Development overview

Client Side
• Client Object
Model
• REST
Services

Data
Platform
•
•
•
•

Farm
Sites
List data
External lists

Server side
• Server Side
Object Model
APIs – History: SharePoint 2007
• Server-side object model
• RPC Calls (owssrc.dll)
• ASMX Web Services (The only client side possibility)
• SPServices (Community Project based on ASMX services)
APIs – History: SharePoint 2010
• Server Side object model
• RPC Calls (owssrc.dll)
• ASMX Web Services
• SPServices (Community Project based on ASMX services)

• ListData.svc (REST-like web service)
• Client Side Object Model
APIs – SharePoint 2013
• Server Side Object Model
• RPC Calls (owssrc.dll)
• ASMX Web Services
• Client-Side Object Model (extended)
• New REST APIs
Sever object model
• Largest API set
• Cover all functionalities of SharePoint – both end user and
administrative
• Microsoft.SharePoint… namespace

• Assemblies are deployed to GAC
• On premises use only

• Sandboxed solutions are deprecated in favor of Apps for SharePoint
Sever object model - example
Server object model – remember
• Code that use SharePoint data platform (SPSite, SPWeb, SPList,
SPListItem, SPFile …) should be on SharePoint server with Front
End role
• Use WSP – easier to deploy and maintain

• Check disposing of SharePoint objects
• Use it for Web Parts, Layout pages, Timer jobs, EventReceivers,
custom WCF/ASMX on SharePoint server,
• On premises only!!!
SharePoint 2013 Remote API
Architecture
Client object model for managed code
• .NET client object model
• .NET application that run on a non-phone Windows client
• user computer
• external server
• web or worker role on Windows Azure

• Core classes in SSOM have corresponding classes in CSOM
• SPSite -> Site
• SPWeb -> Web
• SPList -> List

• Support for ECM, taxonomy, user profiles, publishing, search, BCS…
• Lines of code are sent to the server in batches (to improve
performance)
• Install SharePoint client components
• Namespace Microsoft.SharePoint.Client
Client object model for managed code
• Silverlight client object model
• Used in Silverlight applications regardless where the compiled .xap file
is persisted
•
•
•
•

Assets library on SharePoint 2013 site
Client computer
Cloud storage
External server

• Nearly identical to .NET Client object model
• Difference: in Silverlight version all batches of commands are sent to the server
asynchronously -> UI of the application remains active

• Silverlight .xap files can be included in Apps for SharePoint
Client object model for managed code
• Mobile object model
• Special version of the Silverlight client object model for Windows
Phone devices
• Additional API – relevant only to telephones (push notifications…)
• Supports only core SharePoint functionalities
• Support for ECM, taxonomy, user profiles, publishing, search, BCS…
JavaScript object model
• Inline script or separate .js files
• Includes all the same functionality as the .NET Framework and
Silverlight client object models
• Batches of code always run asynchronously
• Data is returned from the server in JavaScript Object
Notation (JSON)
Client Object Model Mechanics
Changes to CSOM in SharePoint 2013
CSOM using Managed Code
CSOM using JavaScript
REST/OData endpoints
• Access SharePoint entities from client technology that do not
use JavaScript and are not built on the .NET Framework or
Silverlight platforms
• CRUD operations on SharePoint list data using OData protocol
• Response: Atom or JSON format
REST mechanics
REST URLs in SharePoint 2013
Mapping Objects to Resources
Testing REST Calls Through the Browser
Returning ATOM XML vs. JSON
REST Query from Managed Code
REST Query Using JavaScript & jQuery
Factors that determine which API to use
• The type of application
• SharePoint App, Web Part, Silverlight application, timer job…

• Your existing skill
• JavaScript, ASP.NET, REST/OData, Silverlight, Windows Phone…

• The device on which the code runs
• Server in the SharePoint farm, external server, a client computer,
mobile device…
What API to use?
If you want to do this
• Create an ASP.NET web application that performs
create/read/update/deleted (CRUD) operations across a firewall
on SharePoint data or external data that is surfaced in
SharePoint by a Microsoft Business Connectivity Services
(BCS) external content type

…use these APIs
• JavaScript client object model
If you want to do this
• Create an ASP.NET web application that performs CRUD
operations on SharePoint data or external data that is surfaced
in SharePoint by a BCS external content type, but does not
have to call SharePoint across a firewall

…use these APIs
• .NET Framework client object model, Silverlight client object
model, or REST/OData endpoints
If you want to do this
• Create a LAMP web application that performs CRUD operations
on SharePoint data or external data that is surfaced in
SharePoint by a BCS external content type

…use these APIs
• REST/OData endpoints
If you want to do this
• Create a Windows Phone app that performs CRUD operations
on SharePoint data

…use these APIs
• Mobile client object model
If you want to do this
• Create an iOS or Android app that performs CRUD operations
on SharePoint data

…use these APIs
• REST/OData endpoints
If you want to do this
• Create a .NET Framework application that performs CRUD
operations on SharePoint data

…use these APIs
• .NET Framework client object model
If you want to do this
• Create a Silverlight application that performs CRUD operations
on SharePoint data

…use these APIs
• Silverlight client object model
If you want to do this
• Create an HTML/JavaScript application that performs CRUD
operations on SharePoint data

…use these APIs
• JavaScript client object model
If you want to do this
• Create an app for Office that works with SharePoint

…use these APIs
• JavaScript client object model
If you want to do this
• Create a custom Windows PowerShell command

…use these APIs
• Server object model
If you want to do this
• Create a timer job

…use these APIs
• Server object model
If you want to do this
• Create a custom Web Part, application page, or ASP.NET user
control

…use these APIs
• Server object model
What to chose?

SharePoint
extensions

SharePoint
Data models

Web parts

Farm Solutions

Application
Pages

Event
Handlers

SharePoint
Business
customizatio
ns
Connectivity

Services

Service
Applications

Timer Jobs
Admin stuff

SharePoint Server Side Object Model

...
What to chose?

Admin
stuff

PowerShell

Communicate with
SharePoint from
outer world

Client Object Model
SharePoint Server Side Object Model

REST API
What to chose?

.net
Applications

Silverlight
Applications

Windows
Phone
applications

JavaScript (in
SharePoint
pages)

SharePoint
Apps

Office Apps

iOS, Android

*

CLR
PowerShell

SL

WP

ECMA

Client Object Model
SharePoint Server Side Object Model

*
REST API
SharePoint solution types with SP 2013
1

2
Farm solutions

3
Sandbox

SP Apps

Full trust solutions

Declarative elements

New Apps model

Customizations to file system of
servers

Partially trusted code service
still included for limited server
side support

Deployed from corporate
catalog or office market place

Classic model from 2007

Manage permission and
licenses specifically
Preferred option
apps…
• …are not executed in SharePoint App pool
• …are in most of the cases not even running on SP Server
• …can have full trust, with user’s approval (OAuth)
• …can access SharePoint Data
• …can access outer world non-SharePoint Data
• …can use any external resources
• …can be executed in it’s own chrome, as app parts, or as
SharePoint extensions
why apps
• Isolated (safe!)
• Multi-tenant
• Multiple development possibilities (even non-MS stack)
• Easier to deploy
• Easier to maintain (lifecycle – versioning, upgrades)
• Manageable (SharePoint Marketplace, Corporate Catalog)
• Cloud ready!
SP App design - a choice of three approaches

Provider-Hosted App
Cloud-based Apps

“Bring your own server hosting infrastructure”
Developers will need to isolate tenants

Get remote events from
SharePoint
Use CSOM/REST +
OAuth to work with SP

SharePoint
Web

Your Hosted Site

SharePoint
Web

Azure
(from
WebDeploy,
DacPac)

Azure Auto-Hosted App
Windows Azure + SQL Azure
provisioned invisibly as apps are
installed

SharePoint-hosted App
Provision an isolated sub web on a parent
web
• Reuse web elements
(lists, files, out-of-box web parts)
• No server code allowed; use client
JavaScript for logic, UX

Parent
Web
App Web
(from WSP)
Types of Apps for SharePoint
Shape

Description

Example

Immersive App
(Full Page)

App that implements a new
scenario for customers

Resource Tracking,
Budgeting

App Part

Provides new parts you can add to
your sites

Weather,
Team Mascot, News

Extension App
(Custom Action)

Add new actions for documents
and items

Display Document
Visualization, Print to
Print Service Vendor
Development environment for SharePoint
2013

• Create solutions with server side object model or develop apps
for SharePoint for a corporate catalog (full control permission)
• VM
•
•
•
•

Windows Server 2008 R2(SP1)/2012
SQL Server 2008 R2/2012 (Express/Standard/Enterprise)
SharePoint 2013 Foundation/Standard/Enterprise
Visual Studio 2012, SharePoint Designer 2013, Office 2013

• Create and publish apps for SharePoint
• Get Office365 Developer site
• NAPA / Visual Studio 2012
Key Takeaways
• SharePoint is leading IWS solution
• SharePoint development is complex but worthy
• Invest time in choosing right technology and approach for
SharePoint development
• SharePoint Apps – be prepared for new trend

• SaaS, Cloud – dominate trends in future
questions?
JOSKO.IVANKOV@EVISION.HR

@JOSKOI
thank you.
SHAREPOINT AND PROJECT CONFERENCE ADRIATICS 2013
ZAGREB, NOVEMBER 27-28 2013

Weitere ähnliche Inhalte

Was ist angesagt?

App Model For SharePoint 2013
App Model For SharePoint 2013App Model For SharePoint 2013
App Model For SharePoint 2013Toni Il Caiser
 
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSanjay Patel
 
Developing a Provider Hosted SharePoint app
Developing a Provider Hosted SharePoint appDeveloping a Provider Hosted SharePoint app
Developing a Provider Hosted SharePoint appTalbott Crowell
 
Building SharePoint 2013 Apps - Architecture, Authentication & Connectivity API
Building SharePoint 2013 Apps - Architecture, Authentication & Connectivity APIBuilding SharePoint 2013 Apps - Architecture, Authentication & Connectivity API
Building SharePoint 2013 Apps - Architecture, Authentication & Connectivity APISharePointRadi
 
Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...
Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...
Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...Bram de Jager
 
Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...
Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...
Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...BlueMetalInc
 
SPS Belgium 2015 - High-trust Apps for On-Premises Development
SPS Belgium 2015 -  High-trust Apps for On-Premises DevelopmentSPS Belgium 2015 -  High-trust Apps for On-Premises Development
SPS Belgium 2015 - High-trust Apps for On-Premises DevelopmentEdin Kapic
 
Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...
Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...
Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...Bram de Jager
 
SharePoint 2013 apps overview
SharePoint 2013 apps overviewSharePoint 2013 apps overview
SharePoint 2013 apps overviewElie Kash
 
SharePoint Fest Chicago 2015 - Anatomy of configuring provider hosted add-in...
SharePoint Fest Chicago 2015  - Anatomy of configuring provider hosted add-in...SharePoint Fest Chicago 2015  - Anatomy of configuring provider hosted add-in...
SharePoint Fest Chicago 2015 - Anatomy of configuring provider hosted add-in...Nik Patel
 
SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013
SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013
SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013NCCOMMS
 
Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...
Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...
Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...Bram de Jager
 
Hard learned CSOM and REST tips
Hard learned CSOM and REST tipsHard learned CSOM and REST tips
Hard learned CSOM and REST tipsSPC Adriatics
 
Securing SharePoint Apps with OAuth
Securing SharePoint Apps with OAuthSecuring SharePoint Apps with OAuth
Securing SharePoint Apps with OAuthKashif Imran
 
Hooking SharePoint APIs with Android
Hooking SharePoint APIs with AndroidHooking SharePoint APIs with Android
Hooking SharePoint APIs with AndroidKris Wagner
 
O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...
O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...
O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...NCCOMMS
 
Develop iOS and Android apps with SharePoint/Office 365
Develop iOS and Android apps with SharePoint/Office 365Develop iOS and Android apps with SharePoint/Office 365
Develop iOS and Android apps with SharePoint/Office 365Kashif Imran
 
O365Con18 - External Collaboration with Azure B2B - Sjoukje Zaal
O365Con18 - External Collaboration with Azure B2B - Sjoukje ZaalO365Con18 - External Collaboration with Azure B2B - Sjoukje Zaal
O365Con18 - External Collaboration with Azure B2B - Sjoukje ZaalNCCOMMS
 
O365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas VochtenO365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas VochtenNCCOMMS
 
Android SharePoint
Android SharePointAndroid SharePoint
Android SharePointBenCox35
 

Was ist angesagt? (20)

App Model For SharePoint 2013
App Model For SharePoint 2013App Model For SharePoint 2013
App Model For SharePoint 2013
 
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
 
Developing a Provider Hosted SharePoint app
Developing a Provider Hosted SharePoint appDeveloping a Provider Hosted SharePoint app
Developing a Provider Hosted SharePoint app
 
Building SharePoint 2013 Apps - Architecture, Authentication & Connectivity API
Building SharePoint 2013 Apps - Architecture, Authentication & Connectivity APIBuilding SharePoint 2013 Apps - Architecture, Authentication & Connectivity API
Building SharePoint 2013 Apps - Architecture, Authentication & Connectivity API
 
Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...
Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...
Developing SharePoint 2013 apps with Visual Studio 2012 - SharePoint Connecti...
 
Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...
Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...
Apps 101 - Moving to the SharePoint 2013 App Model - Presented 7/27/13 at Sha...
 
SPS Belgium 2015 - High-trust Apps for On-Premises Development
SPS Belgium 2015 -  High-trust Apps for On-Premises DevelopmentSPS Belgium 2015 -  High-trust Apps for On-Premises Development
SPS Belgium 2015 - High-trust Apps for On-Premises Development
 
Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...
Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...
Developing hybrid SharePoint apps that run on-premise and in the cloud - Bram...
 
SharePoint 2013 apps overview
SharePoint 2013 apps overviewSharePoint 2013 apps overview
SharePoint 2013 apps overview
 
SharePoint Fest Chicago 2015 - Anatomy of configuring provider hosted add-in...
SharePoint Fest Chicago 2015  - Anatomy of configuring provider hosted add-in...SharePoint Fest Chicago 2015  - Anatomy of configuring provider hosted add-in...
SharePoint Fest Chicago 2015 - Anatomy of configuring provider hosted add-in...
 
SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013
SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013
SPCA2013 - Developing Provider-Hosted Apps for SharePoint 2013
 
Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...
Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...
Developing hybrid SharePoint apps that run on-premise and in the cloud - ESPC...
 
Hard learned CSOM and REST tips
Hard learned CSOM and REST tipsHard learned CSOM and REST tips
Hard learned CSOM and REST tips
 
Securing SharePoint Apps with OAuth
Securing SharePoint Apps with OAuthSecuring SharePoint Apps with OAuth
Securing SharePoint Apps with OAuth
 
Hooking SharePoint APIs with Android
Hooking SharePoint APIs with AndroidHooking SharePoint APIs with Android
Hooking SharePoint APIs with Android
 
O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...
O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...
O365Con18 - Reach for the Cloud Build Solutions with the Power of Microsoft G...
 
Develop iOS and Android apps with SharePoint/Office 365
Develop iOS and Android apps with SharePoint/Office 365Develop iOS and Android apps with SharePoint/Office 365
Develop iOS and Android apps with SharePoint/Office 365
 
O365Con18 - External Collaboration with Azure B2B - Sjoukje Zaal
O365Con18 - External Collaboration with Azure B2B - Sjoukje ZaalO365Con18 - External Collaboration with Azure B2B - Sjoukje Zaal
O365Con18 - External Collaboration with Azure B2B - Sjoukje Zaal
 
O365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas VochtenO365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
 
Android SharePoint
Android SharePointAndroid SharePoint
Android SharePoint
 

Ähnlich wie SharePoint 2013 APIs demystified

SP Apps, New Model, New App Store: The Office Store
SP Apps, New Model, New App Store: The Office StoreSP Apps, New Model, New App Store: The Office Store
SP Apps, New Model, New App Store: The Office StoreJuan Carlos Gonzalez
 
SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012
SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012
SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012NCCOMMS
 
Come riprogettare le attuali farm solution di share point con il nuovo modell...
Come riprogettare le attuali farm solution di share point con il nuovo modell...Come riprogettare le attuali farm solution di share point con il nuovo modell...
Come riprogettare le attuali farm solution di share point con il nuovo modell...Fabio Franzini
 
Custom Development in SharePoint – What are my options now?
Custom Development in SharePoint – What are my options now?Custom Development in SharePoint – What are my options now?
Custom Development in SharePoint – What are my options now?Talbott Crowell
 
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...SPTechCon
 
MSDN - SharePoint 2013 to app or not to app
MSDN - SharePoint 2013 to app or not to appMSDN - SharePoint 2013 to app or not to app
MSDN - SharePoint 2013 to app or not to appJoris Poelmans
 
SharePoint 2013 App or Not to App
SharePoint 2013 App or Not to AppSharePoint 2013 App or Not to App
SharePoint 2013 App or Not to AppKenneth Maglio
 
Prepararsi a spostare le proprie applicazioni share point su office 365
Prepararsi a spostare le proprie applicazioni share point su office 365Prepararsi a spostare le proprie applicazioni share point su office 365
Prepararsi a spostare le proprie applicazioni share point su office 365Giuseppe Marchi
 
Cloud-Based App Development using SharePoint 2013, Office 365 and Azure
Cloud-Based App Development using SharePoint 2013, Office 365 and AzureCloud-Based App Development using SharePoint 2013, Office 365 and Azure
Cloud-Based App Development using SharePoint 2013, Office 365 and AzureTobias Lekman
 
Developing Apps for SharePoint 2013
Developing Apps for SharePoint 2013Developing Apps for SharePoint 2013
Developing Apps for SharePoint 2013SPC Adriatics
 
Developing a provider hosted share point app
Developing a provider hosted share point appDeveloping a provider hosted share point app
Developing a provider hosted share point appTalbott Crowell
 
Custom Development for SharePoint
Custom Development for SharePointCustom Development for SharePoint
Custom Development for SharePointTalbott Crowell
 
Synapse india reviews on share point development
Synapse india reviews on share point developmentSynapse india reviews on share point development
Synapse india reviews on share point developmentsaritasingh19866
 
SharePoint Fest DC 2018 - From SharePoint to Office 365 Development
SharePoint Fest DC 2018 - From SharePoint to Office 365 DevelopmentSharePoint Fest DC 2018 - From SharePoint to Office 365 Development
SharePoint Fest DC 2018 - From SharePoint to Office 365 DevelopmentSébastien Levert
 
aOS Canadian Tour - Quebec - From SharePoint to Office 365 Development
aOS Canadian Tour  - Quebec - From SharePoint to Office 365 DevelopmentaOS Canadian Tour  - Quebec - From SharePoint to Office 365 Development
aOS Canadian Tour - Quebec - From SharePoint to Office 365 DevelopmentSébastien Levert
 
aOS Canadian Tour - Ottawa - From SharePoint to Office 365 Development
aOS Canadian Tour - Ottawa - From SharePoint to Office 365 DevelopmentaOS Canadian Tour - Ottawa - From SharePoint to Office 365 Development
aOS Canadian Tour - Ottawa - From SharePoint to Office 365 DevelopmentSébastien Levert
 
aOS Canadian Tour - Montreal - From SharePoint to Office 365 Development
aOS Canadian Tour - Montreal - From SharePoint to Office 365 DevelopmentaOS Canadian Tour - Montreal - From SharePoint to Office 365 Development
aOS Canadian Tour - Montreal - From SharePoint to Office 365 DevelopmentSébastien Levert
 

Ähnlich wie SharePoint 2013 APIs demystified (20)

SP Apps, New Model, New App Store: The Office Store
SP Apps, New Model, New App Store: The Office StoreSP Apps, New Model, New App Store: The Office Store
SP Apps, New Model, New App Store: The Office Store
 
SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012
SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012
SPCA2013 - Developing SharePoint 2013 Apps with Visual Studio 2012
 
Come riprogettare le attuali farm solution di share point con il nuovo modell...
Come riprogettare le attuali farm solution di share point con il nuovo modell...Come riprogettare le attuali farm solution di share point con il nuovo modell...
Come riprogettare le attuali farm solution di share point con il nuovo modell...
 
Custom Development in SharePoint – What are my options now?
Custom Development in SharePoint – What are my options now?Custom Development in SharePoint – What are my options now?
Custom Development in SharePoint – What are my options now?
 
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
 
MSDN - SharePoint 2013 to app or not to app
MSDN - SharePoint 2013 to app or not to appMSDN - SharePoint 2013 to app or not to app
MSDN - SharePoint 2013 to app or not to app
 
SharePoint 2013 App or Not to App
SharePoint 2013 App or Not to AppSharePoint 2013 App or Not to App
SharePoint 2013 App or Not to App
 
Prepararsi a spostare le proprie applicazioni share point su office 365
Prepararsi a spostare le proprie applicazioni share point su office 365Prepararsi a spostare le proprie applicazioni share point su office 365
Prepararsi a spostare le proprie applicazioni share point su office 365
 
Cloud-Based App Development using SharePoint 2013, Office 365 and Azure
Cloud-Based App Development using SharePoint 2013, Office 365 and AzureCloud-Based App Development using SharePoint 2013, Office 365 and Azure
Cloud-Based App Development using SharePoint 2013, Office 365 and Azure
 
SharePoint Server 2013: to app or not to app?
SharePoint Server 2013: to app or not to app? SharePoint Server 2013: to app or not to app?
SharePoint Server 2013: to app or not to app?
 
Developing Apps for SharePoint 2013
Developing Apps for SharePoint 2013Developing Apps for SharePoint 2013
Developing Apps for SharePoint 2013
 
Developing a provider hosted share point app
Developing a provider hosted share point appDeveloping a provider hosted share point app
Developing a provider hosted share point app
 
Custom Development for SharePoint
Custom Development for SharePointCustom Development for SharePoint
Custom Development for SharePoint
 
What's new for Developers in SharePoint 2013
What's new for Developers in SharePoint 2013What's new for Developers in SharePoint 2013
What's new for Developers in SharePoint 2013
 
Synapse india reviews on share point development
Synapse india reviews on share point developmentSynapse india reviews on share point development
Synapse india reviews on share point development
 
SharePoint Fest DC 2018 - From SharePoint to Office 365 Development
SharePoint Fest DC 2018 - From SharePoint to Office 365 DevelopmentSharePoint Fest DC 2018 - From SharePoint to Office 365 Development
SharePoint Fest DC 2018 - From SharePoint to Office 365 Development
 
Sharepoint 2013 App
Sharepoint 2013 AppSharepoint 2013 App
Sharepoint 2013 App
 
aOS Canadian Tour - Quebec - From SharePoint to Office 365 Development
aOS Canadian Tour  - Quebec - From SharePoint to Office 365 DevelopmentaOS Canadian Tour  - Quebec - From SharePoint to Office 365 Development
aOS Canadian Tour - Quebec - From SharePoint to Office 365 Development
 
aOS Canadian Tour - Ottawa - From SharePoint to Office 365 Development
aOS Canadian Tour - Ottawa - From SharePoint to Office 365 DevelopmentaOS Canadian Tour - Ottawa - From SharePoint to Office 365 Development
aOS Canadian Tour - Ottawa - From SharePoint to Office 365 Development
 
aOS Canadian Tour - Montreal - From SharePoint to Office 365 Development
aOS Canadian Tour - Montreal - From SharePoint to Office 365 DevelopmentaOS Canadian Tour - Montreal - From SharePoint to Office 365 Development
aOS Canadian Tour - Montreal - From SharePoint to Office 365 Development
 

Mehr von SPC Adriatics

How to secure your data in Office 365
How to secure your data in Office 365 How to secure your data in Office 365
How to secure your data in Office 365 SPC Adriatics
 
Do you know, where your sensitive data is?
Do you know, where your sensitive data is?Do you know, where your sensitive data is?
Do you know, where your sensitive data is?SPC Adriatics
 
Securing Intellectual Property using Azure Rights Management Services
Securing Intellectual Property using Azure Rights Management ServicesSecuring Intellectual Property using Azure Rights Management Services
Securing Intellectual Property using Azure Rights Management ServicesSPC Adriatics
 
Creating Workflows in Project Online
Creating Workflows in Project OnlineCreating Workflows in Project Online
Creating Workflows in Project OnlineSPC Adriatics
 
Faster than a flash behind the scenes of patching SharePoint Online
Faster than a flash   behind the scenes of patching SharePoint OnlineFaster than a flash   behind the scenes of patching SharePoint Online
Faster than a flash behind the scenes of patching SharePoint OnlineSPC Adriatics
 
Role based views in Project and Resource Center
Role based views in Project and Resource CenterRole based views in Project and Resource Center
Role based views in Project and Resource CenterSPC Adriatics
 
OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)
OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)
OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)SPC Adriatics
 
SharePoint Governance and Compliance
SharePoint Governance and ComplianceSharePoint Governance and Compliance
SharePoint Governance and ComplianceSPC Adriatics
 
From analyses to successful Implementation
From analyses to successful ImplementationFrom analyses to successful Implementation
From analyses to successful ImplementationSPC Adriatics
 
The key to a successful Office 365 implementation is adoption
The key to a successful Office 365 implementation is adoptionThe key to a successful Office 365 implementation is adoption
The key to a successful Office 365 implementation is adoptionSPC Adriatics
 
10 Steps to be Successful with Enterprise Search
10 Steps to be Successful with Enterprise Search10 Steps to be Successful with Enterprise Search
10 Steps to be Successful with Enterprise SearchSPC Adriatics
 
How the Cloud Changes Business Solution Design and Delivery
How the Cloud Changes Business Solution Design and DeliveryHow the Cloud Changes Business Solution Design and Delivery
How the Cloud Changes Business Solution Design and DeliverySPC Adriatics
 
Scaling SharePoint 2016 Farms with MinRole & Other Tools
Scaling SharePoint 2016 Farms with MinRole & Other ToolsScaling SharePoint 2016 Farms with MinRole & Other Tools
Scaling SharePoint 2016 Farms with MinRole & Other ToolsSPC Adriatics
 
SharePoint 2013 Search Operations
SharePoint 2013 Search OperationsSharePoint 2013 Search Operations
SharePoint 2013 Search OperationsSPC Adriatics
 
Office Online Server 2016 - a must for on-premises installation for SharePoin...
Office Online Server 2016 - a must for on-premises installation for SharePoin...Office Online Server 2016 - a must for on-premises installation for SharePoin...
Office Online Server 2016 - a must for on-premises installation for SharePoin...SPC Adriatics
 
Custom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance PuzzleCustom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance PuzzleSPC Adriatics
 
SharePoint 2016 Hybrid Sites Inside Out
SharePoint 2016 Hybrid Sites Inside OutSharePoint 2016 Hybrid Sites Inside Out
SharePoint 2016 Hybrid Sites Inside OutSPC Adriatics
 
Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?
Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?
Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?SPC Adriatics
 
What's New for the BI workload in SharePoint 2016 and SQL Server 2016
What's New for the BI workload in SharePoint 2016 and SQL Server 2016What's New for the BI workload in SharePoint 2016 and SQL Server 2016
What's New for the BI workload in SharePoint 2016 and SQL Server 2016SPC Adriatics
 

Mehr von SPC Adriatics (20)

How to secure your data in Office 365
How to secure your data in Office 365 How to secure your data in Office 365
How to secure your data in Office 365
 
Do you know, where your sensitive data is?
Do you know, where your sensitive data is?Do you know, where your sensitive data is?
Do you know, where your sensitive data is?
 
Securing Intellectual Property using Azure Rights Management Services
Securing Intellectual Property using Azure Rights Management ServicesSecuring Intellectual Property using Azure Rights Management Services
Securing Intellectual Property using Azure Rights Management Services
 
Creating Workflows in Project Online
Creating Workflows in Project OnlineCreating Workflows in Project Online
Creating Workflows in Project Online
 
Faster than a flash behind the scenes of patching SharePoint Online
Faster than a flash   behind the scenes of patching SharePoint OnlineFaster than a flash   behind the scenes of patching SharePoint Online
Faster than a flash behind the scenes of patching SharePoint Online
 
Role based views in Project and Resource Center
Role based views in Project and Resource CenterRole based views in Project and Resource Center
Role based views in Project and Resource Center
 
OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)
OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)
OneDrive, TwoDrive, Whiterive, BlueDrive (hahaha)
 
SharePoint Governance and Compliance
SharePoint Governance and ComplianceSharePoint Governance and Compliance
SharePoint Governance and Compliance
 
From analyses to successful Implementation
From analyses to successful ImplementationFrom analyses to successful Implementation
From analyses to successful Implementation
 
The key to a successful Office 365 implementation is adoption
The key to a successful Office 365 implementation is adoptionThe key to a successful Office 365 implementation is adoption
The key to a successful Office 365 implementation is adoption
 
Office 365 Video
Office 365 VideoOffice 365 Video
Office 365 Video
 
10 Steps to be Successful with Enterprise Search
10 Steps to be Successful with Enterprise Search10 Steps to be Successful with Enterprise Search
10 Steps to be Successful with Enterprise Search
 
How the Cloud Changes Business Solution Design and Delivery
How the Cloud Changes Business Solution Design and DeliveryHow the Cloud Changes Business Solution Design and Delivery
How the Cloud Changes Business Solution Design and Delivery
 
Scaling SharePoint 2016 Farms with MinRole & Other Tools
Scaling SharePoint 2016 Farms with MinRole & Other ToolsScaling SharePoint 2016 Farms with MinRole & Other Tools
Scaling SharePoint 2016 Farms with MinRole & Other Tools
 
SharePoint 2013 Search Operations
SharePoint 2013 Search OperationsSharePoint 2013 Search Operations
SharePoint 2013 Search Operations
 
Office Online Server 2016 - a must for on-premises installation for SharePoin...
Office Online Server 2016 - a must for on-premises installation for SharePoin...Office Online Server 2016 - a must for on-premises installation for SharePoin...
Office Online Server 2016 - a must for on-premises installation for SharePoin...
 
Custom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance PuzzleCustom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance Puzzle
 
SharePoint 2016 Hybrid Sites Inside Out
SharePoint 2016 Hybrid Sites Inside OutSharePoint 2016 Hybrid Sites Inside Out
SharePoint 2016 Hybrid Sites Inside Out
 
Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?
Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?
Microsoft BI demystified: SharePoint 2016 BI or for PowerBI v2?
 
What's New for the BI workload in SharePoint 2016 and SQL Server 2016
What's New for the BI workload in SharePoint 2016 and SQL Server 2016What's New for the BI workload in SharePoint 2016 and SQL Server 2016
What's New for the BI workload in SharePoint 2016 and SQL Server 2016
 

Kürzlich hochgeladen

Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 

Kürzlich hochgeladen (20)

Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 

SharePoint 2013 APIs demystified

  • 1. SharePoint 2013 APIs demystified JOŠKO IVANKOV, EVISION SHAREPOINT AND PROJECT CONFERENCE ADRIATICS 2013 ZAGREB, NOVEMBER 27-28 2013
  • 3. Agenda • About SharePoint • SharePoint APIs history • SharePoint 2013 API overview • What API to choose • SharePoint Apps overview • SharePoint Dev environment • Key Takeaways • Q&A
  • 4. What is SharePoint? • It’s web & intranet platform for… • • • • • • • Collaboration Enterprise Content Management Search Business Process Management (Workflows) Business Intelligence Social Computing Enterprise Application Integration • More than 50% of intranets in the world use SharePoint!!!
  • 5. Why SharePoint? • Worldwide used product and platform • Leading platform for ECM, BPM, BI and Social Computing • On premise and Cloud ready • Standardized and widely accepted functionalities • Lot’s of Out-Of-The-Box features and platform for creating your own applications
  • 6. What is SharePoint Development? End user Power user • SharePoint Configuration • Internet Explorer • XML, XSL, JavaScript, jQuery, UI Config • SharePoint designer Designer • Master Page, Page layout, CSS • SharePoint designer Developer • SSOM, CSOM, .NET, JS, REST • Visual Studio
  • 7. One day in life of SharePoint developer • Server side OM • Client side OM • JavaScript • Rest • WCF (SOAP, OData) • HTML, CSS • XML, XSLT • jQuery • TypeScript • Oauth • NTLM, Kerberos • FBA authentication • Claims • InfoPath forms • Azure ACS • AppFabric Cache • Windows RT • Windows Phone • Workflow Foundation • Silverlight
  • 8. Development overview Client Side • Client Object Model • REST Services Data Platform • • • • Farm Sites List data External lists Server side • Server Side Object Model
  • 9. APIs – History: SharePoint 2007 • Server-side object model • RPC Calls (owssrc.dll) • ASMX Web Services (The only client side possibility) • SPServices (Community Project based on ASMX services)
  • 10. APIs – History: SharePoint 2010 • Server Side object model • RPC Calls (owssrc.dll) • ASMX Web Services • SPServices (Community Project based on ASMX services) • ListData.svc (REST-like web service) • Client Side Object Model
  • 11. APIs – SharePoint 2013 • Server Side Object Model • RPC Calls (owssrc.dll) • ASMX Web Services • Client-Side Object Model (extended) • New REST APIs
  • 12. Sever object model • Largest API set • Cover all functionalities of SharePoint – both end user and administrative • Microsoft.SharePoint… namespace • Assemblies are deployed to GAC • On premises use only • Sandboxed solutions are deprecated in favor of Apps for SharePoint
  • 13. Sever object model - example
  • 14. Server object model – remember • Code that use SharePoint data platform (SPSite, SPWeb, SPList, SPListItem, SPFile …) should be on SharePoint server with Front End role • Use WSP – easier to deploy and maintain • Check disposing of SharePoint objects • Use it for Web Parts, Layout pages, Timer jobs, EventReceivers, custom WCF/ASMX on SharePoint server, • On premises only!!!
  • 15. SharePoint 2013 Remote API Architecture
  • 16. Client object model for managed code • .NET client object model • .NET application that run on a non-phone Windows client • user computer • external server • web or worker role on Windows Azure • Core classes in SSOM have corresponding classes in CSOM • SPSite -> Site • SPWeb -> Web • SPList -> List • Support for ECM, taxonomy, user profiles, publishing, search, BCS… • Lines of code are sent to the server in batches (to improve performance) • Install SharePoint client components • Namespace Microsoft.SharePoint.Client
  • 17. Client object model for managed code • Silverlight client object model • Used in Silverlight applications regardless where the compiled .xap file is persisted • • • • Assets library on SharePoint 2013 site Client computer Cloud storage External server • Nearly identical to .NET Client object model • Difference: in Silverlight version all batches of commands are sent to the server asynchronously -> UI of the application remains active • Silverlight .xap files can be included in Apps for SharePoint
  • 18. Client object model for managed code • Mobile object model • Special version of the Silverlight client object model for Windows Phone devices • Additional API – relevant only to telephones (push notifications…) • Supports only core SharePoint functionalities • Support for ECM, taxonomy, user profiles, publishing, search, BCS…
  • 19. JavaScript object model • Inline script or separate .js files • Includes all the same functionality as the .NET Framework and Silverlight client object models • Batches of code always run asynchronously • Data is returned from the server in JavaScript Object Notation (JSON)
  • 20. Client Object Model Mechanics
  • 21. Changes to CSOM in SharePoint 2013
  • 24. REST/OData endpoints • Access SharePoint entities from client technology that do not use JavaScript and are not built on the .NET Framework or Silverlight platforms • CRUD operations on SharePoint list data using OData protocol • Response: Atom or JSON format
  • 26. REST URLs in SharePoint 2013
  • 27. Mapping Objects to Resources
  • 28. Testing REST Calls Through the Browser
  • 29. Returning ATOM XML vs. JSON
  • 30. REST Query from Managed Code
  • 31. REST Query Using JavaScript & jQuery
  • 32. Factors that determine which API to use • The type of application • SharePoint App, Web Part, Silverlight application, timer job… • Your existing skill • JavaScript, ASP.NET, REST/OData, Silverlight, Windows Phone… • The device on which the code runs • Server in the SharePoint farm, external server, a client computer, mobile device…
  • 33. What API to use?
  • 34. If you want to do this • Create an ASP.NET web application that performs create/read/update/deleted (CRUD) operations across a firewall on SharePoint data or external data that is surfaced in SharePoint by a Microsoft Business Connectivity Services (BCS) external content type …use these APIs • JavaScript client object model
  • 35. If you want to do this • Create an ASP.NET web application that performs CRUD operations on SharePoint data or external data that is surfaced in SharePoint by a BCS external content type, but does not have to call SharePoint across a firewall …use these APIs • .NET Framework client object model, Silverlight client object model, or REST/OData endpoints
  • 36. If you want to do this • Create a LAMP web application that performs CRUD operations on SharePoint data or external data that is surfaced in SharePoint by a BCS external content type …use these APIs • REST/OData endpoints
  • 37. If you want to do this • Create a Windows Phone app that performs CRUD operations on SharePoint data …use these APIs • Mobile client object model
  • 38. If you want to do this • Create an iOS or Android app that performs CRUD operations on SharePoint data …use these APIs • REST/OData endpoints
  • 39. If you want to do this • Create a .NET Framework application that performs CRUD operations on SharePoint data …use these APIs • .NET Framework client object model
  • 40. If you want to do this • Create a Silverlight application that performs CRUD operations on SharePoint data …use these APIs • Silverlight client object model
  • 41. If you want to do this • Create an HTML/JavaScript application that performs CRUD operations on SharePoint data …use these APIs • JavaScript client object model
  • 42. If you want to do this • Create an app for Office that works with SharePoint …use these APIs • JavaScript client object model
  • 43. If you want to do this • Create a custom Windows PowerShell command …use these APIs • Server object model
  • 44. If you want to do this • Create a timer job …use these APIs • Server object model
  • 45. If you want to do this • Create a custom Web Part, application page, or ASP.NET user control …use these APIs • Server object model
  • 46. What to chose? SharePoint extensions SharePoint Data models Web parts Farm Solutions Application Pages Event Handlers SharePoint Business customizatio ns Connectivity Services Service Applications Timer Jobs Admin stuff SharePoint Server Side Object Model ...
  • 47. What to chose? Admin stuff PowerShell Communicate with SharePoint from outer world Client Object Model SharePoint Server Side Object Model REST API
  • 48. What to chose? .net Applications Silverlight Applications Windows Phone applications JavaScript (in SharePoint pages) SharePoint Apps Office Apps iOS, Android * CLR PowerShell SL WP ECMA Client Object Model SharePoint Server Side Object Model * REST API
  • 49. SharePoint solution types with SP 2013 1 2 Farm solutions 3 Sandbox SP Apps Full trust solutions Declarative elements New Apps model Customizations to file system of servers Partially trusted code service still included for limited server side support Deployed from corporate catalog or office market place Classic model from 2007 Manage permission and licenses specifically Preferred option
  • 50. apps… • …are not executed in SharePoint App pool • …are in most of the cases not even running on SP Server • …can have full trust, with user’s approval (OAuth) • …can access SharePoint Data • …can access outer world non-SharePoint Data • …can use any external resources • …can be executed in it’s own chrome, as app parts, or as SharePoint extensions
  • 51. why apps • Isolated (safe!) • Multi-tenant • Multiple development possibilities (even non-MS stack) • Easier to deploy • Easier to maintain (lifecycle – versioning, upgrades) • Manageable (SharePoint Marketplace, Corporate Catalog) • Cloud ready!
  • 52. SP App design - a choice of three approaches Provider-Hosted App Cloud-based Apps “Bring your own server hosting infrastructure” Developers will need to isolate tenants Get remote events from SharePoint Use CSOM/REST + OAuth to work with SP SharePoint Web Your Hosted Site SharePoint Web Azure (from WebDeploy, DacPac) Azure Auto-Hosted App Windows Azure + SQL Azure provisioned invisibly as apps are installed SharePoint-hosted App Provision an isolated sub web on a parent web • Reuse web elements (lists, files, out-of-box web parts) • No server code allowed; use client JavaScript for logic, UX Parent Web App Web (from WSP)
  • 53. Types of Apps for SharePoint Shape Description Example Immersive App (Full Page) App that implements a new scenario for customers Resource Tracking, Budgeting App Part Provides new parts you can add to your sites Weather, Team Mascot, News Extension App (Custom Action) Add new actions for documents and items Display Document Visualization, Print to Print Service Vendor
  • 54. Development environment for SharePoint 2013 • Create solutions with server side object model or develop apps for SharePoint for a corporate catalog (full control permission) • VM • • • • Windows Server 2008 R2(SP1)/2012 SQL Server 2008 R2/2012 (Express/Standard/Enterprise) SharePoint 2013 Foundation/Standard/Enterprise Visual Studio 2012, SharePoint Designer 2013, Office 2013 • Create and publish apps for SharePoint • Get Office365 Developer site • NAPA / Visual Studio 2012
  • 55. Key Takeaways • SharePoint is leading IWS solution • SharePoint development is complex but worthy • Invest time in choosing right technology and approach for SharePoint development • SharePoint Apps – be prepared for new trend • SaaS, Cloud – dominate trends in future
  • 57. thank you. SHAREPOINT AND PROJECT CONFERENCE ADRIATICS 2013 ZAGREB, NOVEMBER 27-28 2013