Top Banner
Beginning Logic Apps – Part 2 Mikael Sand https://se.linkedin.com/in/mikaelsand
12

Beginning Logic Apps – Part 2

Jan 22, 2018

Download

Technology

BizTalk360
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Beginning Logic Apps – Part 2

Beginning Logic Apps – Part 2

Mikael Sand

https://se.linkedin.com/in/mikaelsand

Page 2: Beginning Logic Apps – Part 2

Beginning Logic Apps – Part 2

Mikael Sand

https://se.linkedin.com/in/mikaelsand

Page 3: Beginning Logic Apps – Part 2

LOGIC APPS

A BEGINNER’S

GUIDE PART 2

2017-12-04 STOCKHOLM

Publicity: Open

Page 4: Beginning Logic Apps – Part 2

WELCOME

Page 5: Beginning Logic Apps – Part 2

Mikael Sand

Long time blogger & community contributor

Did 10 years of BizTalk!

Works for Enfo Sweden

Practice lead for Microsoft integration

@mikaelsand

Mikaelsand.com

[email protected]

Page 6: Beginning Logic Apps – Part 2

AGENDA 1 . QUICK RECAP PART 1

2 . A LOT OF CONCEPTSUsing the Azure Portal only this time

Code Behind

Flow control – loops etc

Parallel actions

Scope

Run after

Variables

Expressions

Retry policy

Calling other Logic Apps

3 . Q&A / JAM SESSIONTime left?

Page 7: Beginning Logic Apps – Part 2

Last time on Beginning Logic Apps…

Page 8: Beginning Logic Apps – Part 2

• A changing world, in IT and integration space

• Be ready to change – experiment

• Logic Apps is Software as a Service

• Connect different APIs

• Workflow – Logic - Reusability

• Web and cloud based

WHY LOGIC APPS

Page 9: Beginning Logic Apps – Part 2

• This shoud be familiar

JSON

{"IsThisGoodNews":false,"Your text":"The food was bad and the waitor was mean.","Person": {

"FirstName":"Mikael","LastName":"Sand"

}}

Page 10: Beginning Logic Apps – Part 2

• Basically what the web runs on : HTTP

• Typical CRUD operations are replaced by

– Create : POST

– Read: GET

– Update: PUT

– Delete: DELETE

REST

Page 11: Beginning Logic Apps – Part 2

• This should be familiar

REST