+ All Categories
Home > Engineering > 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Date post: 16-Apr-2017
Category:
Upload: rene-winkelmeyer
View: 373 times
Download: 0 times
Share this document with a friend
27
App Cloud and IBM Domino - same, same, but different SUTOL Conference 2016 @muenzpraeger René Winkelmeyer Senior Developer Evangelist
Transcript
Page 1: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

App Cloud and IBM Domino -same, same, but different

SUTOL Conference 2016

@muenzpraeger

René Winkelmeyer Senior Developer Evangelist

Page 2: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Thanks to our sponsors!

Page 3: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

A Big Shoutout

Paul Mooney Senior Architect @ Bluewave [email protected]

Mark Myers Developer From Hell / Wookie [email protected]

Page 4: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Forward-Looking StatementsStatement under the Private Securities Litigation Reform Act of 1995:

This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.

The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.

Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 5: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Agenda

What is Salesforce? What is the App Cloud? Why should you care?

Let’s talk about differences to/with Domino

Similarities – in structure, security and App Dev

Show me the code!

1

2

3

4

Page 6: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

What is Salesforce?What is the App Cloud?Why should you care?

Page 7: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

What is Salesforce?

Page 8: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

What is Salesforce?

Page 9: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

What is the Salesforce App Cloud?

Page 10: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Vertical Split LayoutSubtitle placeholder Lorem ipsum dolor sit

amet, consectetur Cras egestas mauris ut

faucibus cursus Pellentesque et risus

ac turpis maximus

Page 11: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Why should you care?

Understand the system that you want to integrate with

Leverage your existing knowledge to build best-of-breed apps

Page 12: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Let’s talk about differences to/with Domino

Page 13: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Differences

Salesforce is born for multi-tenancy in the cloud- there is nothing on-premises

Salesforce doesn’t provide eMail end user capabilities – it integrates them

An administrator is not an administrator

Page 14: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Differences (a bit provocative though)

1) We care about the platform and how you write code!2) We care about the platform and how you write code!3) We care about the platform and how you write code!4) We care about the platform and how you write code!5) We care about the platform and how you write code!

Page 15: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Similarities –in structure, security and App Dev

Page 16: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Structure - simplified

Organization

Database

Forms

Organization

App

Objects

Page 17: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Security – simplified

Server

Database

Form/Document

Field

Organization

App

Form/Document

Field

Page 18: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

App Dev – simplified

Forms

Views

XPages

Layouts

Views

Lightning

<co

de />

<code />

<declarative />

Page 19: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

App Dev – simplified

NoSQL

Validation rules

Formulas

Agents

Relational

Validation rules

Formulas

ProcessBuilder

<co

de />

<code />

<declarative />

Page 20: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

App Dev – simplified

LotusScript

Java

JavaScript

Apex

JavaScript

(Python, Ruby etc.on Heroku)

<co

de />

<code />

<declarative />

Page 21: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Show me the code!

Page 22: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Integration consideration – Security

Single Sign-On• SAML 2.0 Identity Provider• SAML 1.1 / 2.0 Service

Provider• OpenID Connect

API Access• OAuth 2• OAuth 2 SAML Bearer Tokens• OAuth 2 JWT Bearer Tokens

Cloud Directory & Provisioning

• SCIM • SAML Provisioning

Page 23: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Integration options

CRUD (SOAP / REST) Lightning Out Canvas Salesforce Connect Apex (WS/REST) Streaming …

Page 24: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Code…

https://github.com/muenzpraeger

Page 25: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

3-Column Layout

These three placeholders can hold text, table, charts, smart art, or media.

These three placeholders can hold text, table, charts, smart art, or media.

These three placeholders can hold text, table, charts, smart art, or media.

Subtitle placeholder

Page 26: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Thank Y u

Page 27: 2016 SUTOL - Salesforce App Cloud and Domino - same same, but different

Recommended