SlideShare ist ein Scribd-Unternehmen logo
1 von 42
Quorum on Azure
Blockchain
Juarez Barbosa Junior
Azure Developer Relations Lead –Western Europe HQ
juarez.junior@Microsoft.com
@juarezjunior
Deployment of Quorum network to Azure
Quorum
Describe in detail the automated deployment of Quorum to Azure by using our BaaS (Blockchain as a Service) option
We will not go into the details about the Quorum architecture/design, although we do provide links to both OSS
Quorum as well as the Azure Blockchain Service for reference whenever it’s applicable.
Our goal:
• Practical hands-on lab
• How to deploy a Quorum network by using Azure Blockchain Service (BaaS)
• How to connect and execute a Blockchain transaction with VS Code
• https://news.microsoft.com/2019/05/02/j-p-morgan-and-microsoft-announce-strategic-partnership-to-drive-
enterprise-adoption-of-quorum/
• https://docs.microsoft.com/en-us/azure/blockchain/service/
• https://docs.microsoft.com/en-us/azure/blockchain/service/create-member
• https://docs.microsoft.com/en-us/azure/blockchain/service/connect-vscode
Hyperledger on Azure
Blockchain
Juarez Barbosa Junior
Azure Developer Relations Lead –Western Europe HQ
juarez.junior@Microsoft.com
@juarezjunior
Deployment of Hyperledger nodes to Azure
Hyperledger Fabric
Describe in detail the automated deployment of Hyperledger to Azure by using AKS (Azure Kubernetes Service)
We will not go into the details about the Hyperledger architecture/design, although we do provide links to both OSS
Hyperledger as well as Hyperledger on Azure documentation for reference whenever it’s applicable.
Our goal:
• Practical hands-on lab
• How to deploy the Hyperledger components by using AKS
• How to build a Hyperledger network
• How to call chaincode
• https://azure.microsoft.com/en-gb/blog/hyperledger-fabric-updates-now-available/
• https://azure.microsoft.com/en-gb/updates/azure-blockchain-updated-hyperledger-fabric-template-1-3-now-
available/
• https://cloudblogs.microsoft.com/opensource/2019/06/18/microsoft-joins-hyperledger-blockchain-community/
• https://azure.microsoft.com/en-gb/blog/hyperledger-fabric-on-azure-kubernetes-service-marketplace-
template/
• https://docs.microsoft.com/en-gb/azure/blockchain/templates/hyperledger-fabric-consortium-azure-
kubernetes-service
Corda on Azure
Blockchain (Preview)
Juarez Barbosa Junior
Azure Developer Relations Lead –Western Europe HQ
juarez.junior@Microsoft.com
@juarezjunior
History of Corda on Azure
2016
Corda solution added to Azure
Marketplace
2017
Partnership announced between R3
and Microsoft
2018
Onboarded Insurwave consortium on
Azure
2019
Introduced Corda Logic Apps and Flow
to help with integration
Corda Enterprise (DIY)
- Deployment,
Networking and
Security
Building from scratch is a huge undertaking
Choose
your ledger
Write smart
contract
Manage node
health
Build the
network
Manually
deploy ledger
Write
business logic
Assign node
identities
Connect
nodes
Provision
members
Network
governance
Extend to
additional
networks
Manage
permissions
Establish
node roles
Enforce
policies
Customize
integrations
Deployment and monitoring of Corda nodes
on Azure
High-level architecture
Describe in detail the automated deployment of Corda nodes along with the design needed to support networking and
security of such an enterprise solution.
We will not go into the details about the Corda Enterprise architecture/design, although we do provide links to the
Corda Enterprise documentation for reference wherever applicable.
Our goal:
• How to deploy Corda network on Microsoft Azure?
• How to integrate Corda with Azure Key Vault?
• How to secure Corda network communication?
Reference Implementation
Trade Finance – Business (classic)
A business scenario that involves peer-to-peer transactions in a non-trusted environment is a viable candidate for
Blockchain technology.
Trade Finance enables the exchange of goods. However, the classic process is prone to delays and frauds.
It’s largely manual and lacks transparency.
It is one of the key business scenario for realizing the benefits of Blockchain, which can help reduce the disputes and
errors and bring in transparency by providing a single source of truth.
https://en.wikipedia.org/wiki/Trade_finance
Business Architecture
Trade Finance - Business
Biz Architecture with Blockchain
Trade Finance - Blockchain
Benefits of using Blockchain/DLT:
▪ Real-time review: Financial documents linked and accessible through Blockchain are reviewed and approved in real
time, reducing the time it takes to initiate shipment.
▪ Disintermediation: Banks facilitating trade finance through Blockchain do not require a trusted intermediary to assume
risk, eliminating the need for correspondent banks.
▪ Decentralized contract execution: As contract terms are met, status is updated on Blockchain in real time, reducing the
time and headcount required to start transactions as well as monitor the delivery of goods.
▪ Proof of ownership: Blockchain provides transparency into the location and ownership of the goods.
▪ Automated settlement and reduced transaction fees: contract terms executed via smart contract eliminate the need for
correspondent banks and additional transaction fees.
Tech Architecture - Cloud
Trade Finance – Cloud Infrastructure and Azure
Describe the cloud services needed to enable such a scenario on Microsoft Azure using Corda Enterprise.
The design follows the ‘Multiple Organizations, Private Consortium’ approach (refer here).
It is a true consortium setup where each organization/party has its own setup of Azure services (e.g. AD tenant etc.),
which is provisioned in its own Azure subscription/region.
The Corda node running in respective organization/party setup is enabled for peer-to-peer communication with other
Corda nodes within other organization/party setup.
A conceptual multi-member network architecture follows (refer here for more details).
Tech Architecture - Cloud
Trade Finance (Cloud/On-Premises)
Azure
Trade Finance
(Azure)
Corda
Core Components
▪ A persistence layer for storing data
▪ A network interface for interacting with other nodes
▪ An RPC interface for interacting with the node’s owner
▪ A service hub for allowing the node’s flows to call upon the node’s other services
▪ A CorDapp interface and provider for extending the node by installing CorDapps
https://docs.corda.net/key-concepts-node.html
Corda
Corda
Network -
https://docs.cord
a.net/key-
concepts-
node.html
Azure
Which Operating System (OS) to use?
Corda can be deployed on both Windows and Linux. It can also be containerized with Docker (Refer
https://docs.corda.net/head/deploying-a-node.htm for more details)
When using Azure VM, as a best practice we should always use Azure Data Disks and at the Operating System level run
the Corda node from the logical data disk which can be configured to aggregate 2 or more disks.
On Windows we recommend the usage of Storage Spaces and on Linux we have the following guidance available to
achieve maximum performance - https://docs.microsoft.com/enus/azure/virtual-machines/linux/optimization
Corda has made available a docker image which allows to run inside a container and can be found in the following
repository - https://github.com/corda/corda-docker. Also, if we run the Corda node in a container, we should also use
volumes which are the preferred mechanism for persisting data generated by and used by Docker containers:
https://docs.docker.com/storage/volumes/
Azure
OS
Azure
DevOps and CI/CD
We can use a continuous integration and continuous deployment (CI/CD) pipeline to automate the deployment tasks
and push changes to the Corda nodes automatically.
Visual Studio Team Services (VSTS) provides the CI/CD pipeline, starting with a Git repository for managing your
application source code and infrastructure code (ARM templates).
Note: Please refer to the resource below for more details on Continuous Integration and Delivery
using Visual Studio Team Services
https://www.visualstudio.com/team-services/continuous-integration/
The pipeline can use Azure ARM templates to provision or update the infrastructure as necessary in each subscription,
and then deploy the updated build following a workflow as described in the next diagram.
Azure
CI / CD
Azure
Keys Management Using Azure Key Vault - Understanding Corda Keys and Certificates
It’s critical to be familiar with Corda key/certificate management concepts before understanding the possibilities of
integrating with Azure Key Vault - https://docs.corda.net/permissioning.html
A Corda network has four types of Certificate Authorities (CAs):
▪ Root Network CA
▪ Doorman CA
▪ Node CAs
▪ Legal Identity Cas
Corda’s X509Utilities (which uses Bouncy Castle) can be used to create public/private keypairs and certificates. Included
below are the steps needed to build the Certificate hierarchy:
• Root Network CA – Generate keypair, create a self-signed certificate for the keypair
• Doorman CA – Generate keypair, obtain a certificate for the keypair signed with the root network CA key
• Node CA – For each node, generate keypair, obtain a certificate for the keypair signed with the doorman CA key
Azure
AKV and
Corda Certs
Azure
Keys Management Using Azure Key Vault - Azure
Key Vault (AKV) Integration
The diagram below describes, at a high-level, the
certificate creation process involving a given application
and AKV. The step by step description of the process is
available - https://docs.microsoft.com/en-gb/azure/key-
vault/create-certificate
Azure
Securing Corda Network Communication
A Corda network is an authenticated peer-to-peer network of nodes, where each node is a Java Virtual Machine run-
time environment hosting Corda services and executing applications. All communication between nodes is direct, with
TLS-encrypted messages sent over AMQP/1.0.
Each Corda network has a Network Map Service that publishes the IP addresses through which every node on the
network can be reached, along with the identity certificates of those nodes and the services they provide.
More information is available here: https://docs.corda.net/key-concepts-ecosystem.html
On Azure, a Corda network will constitute of corda nodes running within an Azure Virtual Network (VNET) deployed
across multiple Azure subscriptions owned by the respective consortium participants.
We have multiple options to interconnect them. These options take in account subscription limits and best practices for
each of the connectivity methods used to connect corda network nodes across the different VNETs.
Azure
Network - VNET peering
The first option to interconnect a Corda
network would be using VNET peering,
which would allow for higher number
of transactions along with enabling
better performance
https://docs.microsoft.com/en-
us/azure/azure-subscription-service-
limits
In blockchain, we’ll typically have each
member belonging to a different
company, each with its own subscription,
Identity management requirements and
restrictions. So peering works when all
subscriptions are associated with the
same Azure AD tenant.
Azure
Network - Site-to-Site VPN
In case each member of the consortium wants to have its own Azure AD tenant then the next solution is setting up
the network through either a VPN Gateway or a Network Virtualization Appliance (NVA) which would establish the
connections between both networks https://aka.ms/AzureSiteToSiteVPNCORDA
Azure
Network - Nginx with DDoS
Standard
The third solution is when customers have
a public IP address which is associated
with the Corda node and we need to
secure this endpoint with the means which
we have available for Layers 3, 4.
The Azure DDoS Standard Protection
service protects your application from a
comprehensive set of network layer (Layer
3, 4) attacks.
https://docs.microsoft.com/en-
us/azure/virtual-machines/linux/tutorial-
secure-web-server
Corda Enterprise with
Azure Blockchain
Service (BaaS)
Announcing Corda Enterprise on Azure Blockchain Service
+
Azure Blockchain Service
Simple node deployment and configuration
Simple, quick deployment
Configure and deploy a Corda node (Corda Enterprise v4) with a
single Azure portal pane, or through REST APIs, x-Plat CLI and
Powershell
Easily join Corda network of choice
Add your Corda node to Testnet, UAT, Corda Network, or a private
business network
Simple node deployment and configuration
Simple, quick deployment
Configure and deploy a Corda node (Corda Enterprise v4) with a
single Azure portal pane, or through REST APIs, x-Plat CLI and
Powershell
Easily join Corda network of choice
Add your Corda node to Testnet, UAT, Corda Network, or a private
business network
Azure + Corda Enterprise = Built for business
Designed for enterprise readiness
Built to meet enterprise standards in terms of
performance, compliance, security, and
interoperability
Optimized for Azure customers
Integrated with key Azure services, such as AKV,
Azure SQL, and Azure Monitor
Open and extensible platform and ecosystem
Innovate and extend the shared partner ecosystem by
leveraging Corda Enterprise on Azure Blockchain
Service
Simple node deployment and configuration
Simple, quick deployment
Configure and deploy a Corda node (Corda Enterprise v4) with a
single Azure portal pane, or through REST APIs, x-Plat CLI and
Powershell
Easily join Corda network of choice
Add your Corda node to Testnet, UAT, Corda Network, or a private
business network
Node management
Manage access to node
Provide access to node via basic
authentication and manage password
Gracefully drain and restart nodes
Control node restart on your own terms,
gracefully allowing flows to drain
Node users management
Manage node user permissions
Easily add and manage node user
permissions based on installed CorDapps
CorDapp management
Manage installed CorDapps
Easily add and manage CorDapps to
your node with built-in graceful flow
draining
Deploy and broadcast CorDapps
Easily deploy as many CorDapps you
want to your node and share those
CorDapps with others in your network
Node health, monitoring and logging
Azure Monitor logging and alerting integration
Get node insights such as transaction count, CPU and memory
usage, as well as alerts for user-defined thresholds
View ledger and proxy logs in Log Analytics
Configure rich views for logging events emitted from Corda and
proxy, enabling insights into blockchain activity and network
connections
Roadmap
• Corda node provisioning
• Simple CorDapp management
• Single RPC user
• MVP portal UX
• Basic monitoring and logging
• Simple documentation
• Support channel
• Enhanced CorDapp management
• Enhanced RPC user management
• Full portal UX
• Enhanced monitoring/logging
• Documentation
• HA/DR
• Upgrade support
• Firewall/network privacy
functionality
• AKV signing
• Billing/business model
• Onboard Microsoft support
• Documentation
Milestone 1 – MVP
Private Preview
Milestone 2 – Full
Private Preview
Milestone 3 – Public
Preview
All on the best cloud for blockchain
Analysts place us ahead of the competition
Our open, app-focused approach has been
validated by Gartner, Forrester and many other
third-party analysts
We have designed a thoughtful product portfolio
We have spent 4 years developing the most open
and comprehensive blockchain portfolio to simplify
development of this new class of apps
Customers and partners trust us
Businesses have built thousands of blockchain apps
on Azure working with our rich ecosystem of
blockchain partners ​
Join customers and partners building blockchain apps
on Azure
PARTNERS CUSTOMERS
Thank You

Weitere ähnliche Inhalte

Was ist angesagt?

Adfs Shib Interop Um Oxford
Adfs Shib Interop Um OxfordAdfs Shib Interop Um Oxford
Adfs Shib Interop Um Oxfordguestd9aa5
 
Introduction to OpenStack (Juno)
Introduction to OpenStack (Juno)Introduction to OpenStack (Juno)
Introduction to OpenStack (Juno)Krunal Jain
 
[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...
[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...
[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...DevDay.org
 
Colabora.dk - Azure PTA vs ADFS vs Desktop SSO
Colabora.dk - Azure PTA vs ADFS vs Desktop SSOColabora.dk - Azure PTA vs ADFS vs Desktop SSO
Colabora.dk - Azure PTA vs ADFS vs Desktop SSOPeter Selch Dahl
 
How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365
How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365
How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365Microsoft TechNet - Belgium and Luxembourg
 
Networking deep dive
Networking deep diveNetworking deep dive
Networking deep diveJeroen Niesen
 
Vs host clustering
Vs host clusteringVs host clustering
Vs host clusteringrickythekid
 
Directory Synchronization Single Sign-On in Office 365
Directory Synchronization Single Sign-On in Office 365Directory Synchronization Single Sign-On in Office 365
Directory Synchronization Single Sign-On in Office 365InnoTech
 
Openstack_administration
Openstack_administrationOpenstack_administration
Openstack_administrationAshish Sharma
 
Overview of IoT Infrastructure and Connectivity at AWS
Overview of IoT Infrastructure and Connectivity at AWSOverview of IoT Infrastructure and Connectivity at AWS
Overview of IoT Infrastructure and Connectivity at AWSAmazon Web Services
 
Openstack 101
Openstack 101Openstack 101
Openstack 101POSSCON
 
Virtual Server Host Clustering Step-by- Step Guide for ...
Virtual Server Host Clustering Step-by- Step Guide for ...Virtual Server Host Clustering Step-by- Step Guide for ...
Virtual Server Host Clustering Step-by- Step Guide for ...webhostingguy
 
Oracle Blockchain Cloud Service
Oracle Blockchain Cloud ServiceOracle Blockchain Cloud Service
Oracle Blockchain Cloud ServiceMonte Kluemper
 
VMware vCloud Director 1.5 - What's New
VMware vCloud Director 1.5  - What's NewVMware vCloud Director 1.5  - What's New
VMware vCloud Director 1.5 - What's New1CloudRoad.com
 
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...DirkjanMollema
 
CCI2018 - Azure Network - Security Best Practices
CCI2018 - Azure Network - Security Best PracticesCCI2018 - Azure Network - Security Best Practices
CCI2018 - Azure Network - Security Best Practiceswalk2talk srl
 
Security_of_openstack_keystone
Security_of_openstack_keystoneSecurity_of_openstack_keystone
Security_of_openstack_keystoneUT, San Antonio
 

Was ist angesagt? (20)

Adfs Shib Interop Um Oxford
Adfs Shib Interop Um OxfordAdfs Shib Interop Um Oxford
Adfs Shib Interop Um Oxford
 
Introduction to OpenStack (Juno)
Introduction to OpenStack (Juno)Introduction to OpenStack (Juno)
Introduction to OpenStack (Juno)
 
[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...
[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...
[DevDay 2016] OpenStack and approaches for new users - Speaker: Chi Le – Head...
 
Colabora.dk - Azure PTA vs ADFS vs Desktop SSO
Colabora.dk - Azure PTA vs ADFS vs Desktop SSOColabora.dk - Azure PTA vs ADFS vs Desktop SSO
Colabora.dk - Azure PTA vs ADFS vs Desktop SSO
 
OpenStack Cloud Administration Through Live Demonstration
OpenStack Cloud Administration Through Live DemonstrationOpenStack Cloud Administration Through Live Demonstration
OpenStack Cloud Administration Through Live Demonstration
 
How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365
How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365
How to provide AD, ADFS, DirSync in Windows Azure and hook it up with Office 365
 
Networking deep dive
Networking deep diveNetworking deep dive
Networking deep dive
 
Vs host clustering
Vs host clusteringVs host clustering
Vs host clustering
 
Directory Synchronization Single Sign-On in Office 365
Directory Synchronization Single Sign-On in Office 365Directory Synchronization Single Sign-On in Office 365
Directory Synchronization Single Sign-On in Office 365
 
Openstack_administration
Openstack_administrationOpenstack_administration
Openstack_administration
 
Overview of IoT Infrastructure and Connectivity at AWS
Overview of IoT Infrastructure and Connectivity at AWSOverview of IoT Infrastructure and Connectivity at AWS
Overview of IoT Infrastructure and Connectivity at AWS
 
Openstack 101
Openstack 101Openstack 101
Openstack 101
 
Virtual Server Host Clustering Step-by- Step Guide for ...
Virtual Server Host Clustering Step-by- Step Guide for ...Virtual Server Host Clustering Step-by- Step Guide for ...
Virtual Server Host Clustering Step-by- Step Guide for ...
 
Oracle Blockchain Cloud Service
Oracle Blockchain Cloud ServiceOracle Blockchain Cloud Service
Oracle Blockchain Cloud Service
 
VMware vCloud Director 1.5 - What's New
VMware vCloud Director 1.5  - What's NewVMware vCloud Director 1.5  - What's New
VMware vCloud Director 1.5 - What's New
 
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
 
CCI2018 - Azure Network - Security Best Practices
CCI2018 - Azure Network - Security Best PracticesCCI2018 - Azure Network - Security Best Practices
CCI2018 - Azure Network - Security Best Practices
 
Global Windows Azure Bootcamp - San Diego
Global Windows Azure Bootcamp - San DiegoGlobal Windows Azure Bootcamp - San Diego
Global Windows Azure Bootcamp - San Diego
 
Security_of_openstack_keystone
Security_of_openstack_keystoneSecurity_of_openstack_keystone
Security_of_openstack_keystone
 
Ad fs
Ad fsAd fs
Ad fs
 

Ähnlich wie Workshop: Blockchain on Azure for Developers

Corda on Azure Blockchain
Corda on Azure BlockchainCorda on Azure Blockchain
Corda on Azure BlockchainJuarez Junior
 
Becoming a Microsoft Specialist in Microsoft Azure Infrastructure
Becoming a Microsoft Specialist in Microsoft Azure InfrastructureBecoming a Microsoft Specialist in Microsoft Azure Infrastructure
Becoming a Microsoft Specialist in Microsoft Azure InfrastructureSyed Irtaza Ali
 
Technical considerations for Blockchain networks with AWS
Technical considerations for Blockchain networks with AWSTechnical considerations for Blockchain networks with AWS
Technical considerations for Blockchain networks with AWSatSistemas
 
IoT cloud system implemented based on Azure services
IoT cloud system implemented based on Azure servicesIoT cloud system implemented based on Azure services
IoT cloud system implemented based on Azure servicesSzymon Włodarczyk
 
SCCM on Microsoft Azure
SCCM on Microsoft AzureSCCM on Microsoft Azure
SCCM on Microsoft AzureMohamed Tawfik
 
Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...
Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...
Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...Edureka!
 
Cloud Security Architecture.pptx
Cloud Security Architecture.pptxCloud Security Architecture.pptx
Cloud Security Architecture.pptxMoshe Ferber
 
AZUG.BE - Azure User Group Belgium - First public meeting
AZUG.BE - Azure User Group Belgium - First public meetingAZUG.BE - Azure User Group Belgium - First public meeting
AZUG.BE - Azure User Group Belgium - First public meetingMaarten Balliauw
 
Azure Arc - Managing Hybrid and Multi-Cloud Platforms
Azure Arc - Managing Hybrid and Multi-Cloud PlatformsAzure Arc - Managing Hybrid and Multi-Cloud Platforms
Azure Arc - Managing Hybrid and Multi-Cloud PlatformsWinWire Technologies Inc
 
Microsoft blockchain vision - enterprise smart contracts, coco framework and...
Microsoft blockchain vision  - enterprise smart contracts, coco framework and...Microsoft blockchain vision  - enterprise smart contracts, coco framework and...
Microsoft blockchain vision - enterprise smart contracts, coco framework and...Razi Rais
 
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, Microsoft
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, MicrosoftBizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, Microsoft
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, MicrosoftR3
 
Azure Community Tour 2019 - AZUGDK
Azure Community Tour 2019 - AZUGDKAzure Community Tour 2019 - AZUGDK
Azure Community Tour 2019 - AZUGDKPeter Selch Dahl
 
A Deepdive into Azure Networking
A Deepdive into Azure NetworkingA Deepdive into Azure Networking
A Deepdive into Azure NetworkingKarim Vaes
 
Azure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User GroupAzure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User GroupMichael Frank
 
Introduction to the world of Cloud Computing & Microsoft Azure.pptx
Introduction to the world of Cloud Computing & Microsoft Azure.pptxIntroduction to the world of Cloud Computing & Microsoft Azure.pptx
Introduction to the world of Cloud Computing & Microsoft Azure.pptxPrazolBista
 
AWS Webcast - Deploying Remote Desktop Gateway on the AWS Cloud
AWS Webcast - Deploying Remote Desktop Gateway on the AWS CloudAWS Webcast - Deploying Remote Desktop Gateway on the AWS Cloud
AWS Webcast - Deploying Remote Desktop Gateway on the AWS CloudAmazon Web Services
 
IRJET- Proof of Document using Multichain and Ethereum
IRJET- Proof of Document using Multichain and EthereumIRJET- Proof of Document using Multichain and Ethereum
IRJET- Proof of Document using Multichain and EthereumIRJET Journal
 

Ähnlich wie Workshop: Blockchain on Azure for Developers (20)

Corda on Azure Blockchain
Corda on Azure BlockchainCorda on Azure Blockchain
Corda on Azure Blockchain
 
Becoming a Microsoft Specialist in Microsoft Azure Infrastructure
Becoming a Microsoft Specialist in Microsoft Azure InfrastructureBecoming a Microsoft Specialist in Microsoft Azure Infrastructure
Becoming a Microsoft Specialist in Microsoft Azure Infrastructure
 
Technical considerations for Blockchain networks with AWS
Technical considerations for Blockchain networks with AWSTechnical considerations for Blockchain networks with AWS
Technical considerations for Blockchain networks with AWS
 
IoT cloud system implemented based on Azure services
IoT cloud system implemented based on Azure servicesIoT cloud system implemented based on Azure services
IoT cloud system implemented based on Azure services
 
SCCM on Microsoft Azure
SCCM on Microsoft AzureSCCM on Microsoft Azure
SCCM on Microsoft Azure
 
Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...
Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...
Microsoft Azure Tutorial | Microsoft Cloud Computing | Microsoft Azure Traini...
 
Cloud Security Architecture.pptx
Cloud Security Architecture.pptxCloud Security Architecture.pptx
Cloud Security Architecture.pptx
 
AZUG.BE - Azure User Group Belgium - First public meeting
AZUG.BE - Azure User Group Belgium - First public meetingAZUG.BE - Azure User Group Belgium - First public meeting
AZUG.BE - Azure User Group Belgium - First public meeting
 
UNIT - II.docx
UNIT - II.docxUNIT - II.docx
UNIT - II.docx
 
Azure Arc - Managing Hybrid and Multi-Cloud Platforms
Azure Arc - Managing Hybrid and Multi-Cloud PlatformsAzure Arc - Managing Hybrid and Multi-Cloud Platforms
Azure Arc - Managing Hybrid and Multi-Cloud Platforms
 
Microsoft blockchain vision - enterprise smart contracts, coco framework and...
Microsoft blockchain vision  - enterprise smart contracts, coco framework and...Microsoft blockchain vision  - enterprise smart contracts, coco framework and...
Microsoft blockchain vision - enterprise smart contracts, coco framework and...
 
Azure bootcamp (1)
Azure bootcamp (1)Azure bootcamp (1)
Azure bootcamp (1)
 
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, Microsoft
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, MicrosoftBizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, Microsoft
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, Microsoft
 
Sky High With Azure
Sky High With AzureSky High With Azure
Sky High With Azure
 
Azure Community Tour 2019 - AZUGDK
Azure Community Tour 2019 - AZUGDKAzure Community Tour 2019 - AZUGDK
Azure Community Tour 2019 - AZUGDK
 
A Deepdive into Azure Networking
A Deepdive into Azure NetworkingA Deepdive into Azure Networking
A Deepdive into Azure Networking
 
Azure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User GroupAzure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User Group
 
Introduction to the world of Cloud Computing & Microsoft Azure.pptx
Introduction to the world of Cloud Computing & Microsoft Azure.pptxIntroduction to the world of Cloud Computing & Microsoft Azure.pptx
Introduction to the world of Cloud Computing & Microsoft Azure.pptx
 
AWS Webcast - Deploying Remote Desktop Gateway on the AWS Cloud
AWS Webcast - Deploying Remote Desktop Gateway on the AWS CloudAWS Webcast - Deploying Remote Desktop Gateway on the AWS Cloud
AWS Webcast - Deploying Remote Desktop Gateway on the AWS Cloud
 
IRJET- Proof of Document using Multichain and Ethereum
IRJET- Proof of Document using Multichain and EthereumIRJET- Proof of Document using Multichain and Ethereum
IRJET- Proof of Document using Multichain and Ethereum
 

Mehr von Juarez Junior

Oracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADB
Oracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADBOracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADB
Oracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADBJuarez Junior
 
Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...
Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...
Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...Juarez Junior
 
Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...
Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...
Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...Juarez Junior
 
Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...
Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...
Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...Juarez Junior
 
GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...
GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...
GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...Juarez Junior
 
jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...
jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...
jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...Juarez Junior
 
Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...
Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...
Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...Juarez Junior
 
SevillaJUG - Unleash the power of your applications with Micronaut® ,GraalVM...
SevillaJUG - Unleash the power of your applications with Micronaut®  ,GraalVM...SevillaJUG - Unleash the power of your applications with Micronaut®  ,GraalVM...
SevillaJUG - Unleash the power of your applications with Micronaut® ,GraalVM...Juarez Junior
 
SKILup Days Container Orchestration - Kubernetes Operators for Databases
SKILup Days Container Orchestration - Kubernetes Operators for DatabasesSKILup Days Container Orchestration - Kubernetes Operators for Databases
SKILup Days Container Orchestration - Kubernetes Operators for DatabasesJuarez Junior
 
TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...
TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...
TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...Juarez Junior
 
TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...
TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...
TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...Juarez Junior
 
DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...
DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...
DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...Juarez Junior
 
Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...
Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...
Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...Juarez Junior
 
JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...
JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...
JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...Juarez Junior
 
DWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual Threads
DWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ThreadsDWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual Threads
DWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ThreadsJuarez Junior
 
DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...
DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...
DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...Juarez Junior
 
DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...
DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...
DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...Juarez Junior
 
DeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for Databases
DeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for DatabasesDeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for Databases
DeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for DatabasesJuarez Junior
 
DevConf.cz - Introduction to Kubernetes Operators for Databases
DevConf.cz - Introduction to Kubernetes Operators for DatabasesDevConf.cz - Introduction to Kubernetes Operators for Databases
DevConf.cz - Introduction to Kubernetes Operators for DatabasesJuarez Junior
 
CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...
CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...
CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...Juarez Junior
 

Mehr von Juarez Junior (20)

Oracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADB
Oracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADBOracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADB
Oracle CloudWorld 2023 - How to hook up Telegram with Spring Boot and ADB
 
Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...
Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...
Oracle CloudWorld 2023 - A Practical Guide to Implementing DevOps with IaC fo...
 
Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...
Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...
Oracle CloudWorld 2023 - A High-Speed Data Ingestion Service in Java Using MQ...
 
Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...
Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...
Oracle CloudWorld 2023 - Multi-cloud App Dev for Java Devs with Microsoft Azu...
 
GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...
GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...
GeeCon Prague 2023 - Unleash the power of your applications with Micronaut®, ...
 
jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...
jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...
jPrime 2023 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ...
 
Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...
Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...
Porto Tech Hub Conference 2023 - Revolutionize Java DB AppDev with Reactive S...
 
SevillaJUG - Unleash the power of your applications with Micronaut® ,GraalVM...
SevillaJUG - Unleash the power of your applications with Micronaut®  ,GraalVM...SevillaJUG - Unleash the power of your applications with Micronaut®  ,GraalVM...
SevillaJUG - Unleash the power of your applications with Micronaut® ,GraalVM...
 
SKILup Days Container Orchestration - Kubernetes Operators for Databases
SKILup Days Container Orchestration - Kubernetes Operators for DatabasesSKILup Days Container Orchestration - Kubernetes Operators for Databases
SKILup Days Container Orchestration - Kubernetes Operators for Databases
 
TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...
TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...
TDC Connections 2023 - Revolutionize Java DB AppDev with Reactive Streams and...
 
TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...
TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...
TDC Connections 2023 - A High-Speed Data Ingestion Service in Java Using MQTT...
 
DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...
DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...
DTU Global Azure 2023 Bootcamp - Multi-cloud App Dev for Java Developers with...
 
Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...
Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...
Melee Numerique 2022 - Revolutionize Java DB App Dev with Reactive Streams an...
 
JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...
JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...
JCON OpenBlend Slovenia 2023 - A High-Speed Data Ingestion Service in Java Us...
 
DWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual Threads
DWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual ThreadsDWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual Threads
DWX23 - Revolutionize Java DB AppDev with Reactive Streams and Virtual Threads
 
DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...
DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...
DWX23 - A High-Speed Data Ingestion Service in Java Using MQTT, AMQP, and STO...
 
DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...
DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...
DeveloperWeek Latin America 2023 - A High-Speed Data Ingestion Service in Jav...
 
DeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for Databases
DeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for DatabasesDeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for Databases
DeveloperWeekEnterprise2023 - Introduction to Kubernetes Operators for Databases
 
DevConf.cz - Introduction to Kubernetes Operators for Databases
DevConf.cz - Introduction to Kubernetes Operators for DatabasesDevConf.cz - Introduction to Kubernetes Operators for Databases
DevConf.cz - Introduction to Kubernetes Operators for Databases
 
CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...
CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...
CloudTalks - Revolutionize Java DB AppDev with Reactive Streams and Virtual T...
 

Kürzlich hochgeladen

Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 

Kürzlich hochgeladen (20)

Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 

Workshop: Blockchain on Azure for Developers

  • 1. Quorum on Azure Blockchain Juarez Barbosa Junior Azure Developer Relations Lead –Western Europe HQ juarez.junior@Microsoft.com @juarezjunior
  • 2. Deployment of Quorum network to Azure Quorum Describe in detail the automated deployment of Quorum to Azure by using our BaaS (Blockchain as a Service) option We will not go into the details about the Quorum architecture/design, although we do provide links to both OSS Quorum as well as the Azure Blockchain Service for reference whenever it’s applicable. Our goal: • Practical hands-on lab • How to deploy a Quorum network by using Azure Blockchain Service (BaaS) • How to connect and execute a Blockchain transaction with VS Code • https://news.microsoft.com/2019/05/02/j-p-morgan-and-microsoft-announce-strategic-partnership-to-drive- enterprise-adoption-of-quorum/ • https://docs.microsoft.com/en-us/azure/blockchain/service/ • https://docs.microsoft.com/en-us/azure/blockchain/service/create-member • https://docs.microsoft.com/en-us/azure/blockchain/service/connect-vscode
  • 3. Hyperledger on Azure Blockchain Juarez Barbosa Junior Azure Developer Relations Lead –Western Europe HQ juarez.junior@Microsoft.com @juarezjunior
  • 4. Deployment of Hyperledger nodes to Azure Hyperledger Fabric Describe in detail the automated deployment of Hyperledger to Azure by using AKS (Azure Kubernetes Service) We will not go into the details about the Hyperledger architecture/design, although we do provide links to both OSS Hyperledger as well as Hyperledger on Azure documentation for reference whenever it’s applicable. Our goal: • Practical hands-on lab • How to deploy the Hyperledger components by using AKS • How to build a Hyperledger network • How to call chaincode • https://azure.microsoft.com/en-gb/blog/hyperledger-fabric-updates-now-available/ • https://azure.microsoft.com/en-gb/updates/azure-blockchain-updated-hyperledger-fabric-template-1-3-now- available/ • https://cloudblogs.microsoft.com/opensource/2019/06/18/microsoft-joins-hyperledger-blockchain-community/ • https://azure.microsoft.com/en-gb/blog/hyperledger-fabric-on-azure-kubernetes-service-marketplace- template/ • https://docs.microsoft.com/en-gb/azure/blockchain/templates/hyperledger-fabric-consortium-azure- kubernetes-service
  • 5. Corda on Azure Blockchain (Preview) Juarez Barbosa Junior Azure Developer Relations Lead –Western Europe HQ juarez.junior@Microsoft.com @juarezjunior
  • 6. History of Corda on Azure 2016 Corda solution added to Azure Marketplace 2017 Partnership announced between R3 and Microsoft 2018 Onboarded Insurwave consortium on Azure 2019 Introduced Corda Logic Apps and Flow to help with integration
  • 7. Corda Enterprise (DIY) - Deployment, Networking and Security
  • 8. Building from scratch is a huge undertaking Choose your ledger Write smart contract Manage node health Build the network Manually deploy ledger Write business logic Assign node identities Connect nodes Provision members Network governance Extend to additional networks Manage permissions Establish node roles Enforce policies Customize integrations
  • 9. Deployment and monitoring of Corda nodes on Azure High-level architecture Describe in detail the automated deployment of Corda nodes along with the design needed to support networking and security of such an enterprise solution. We will not go into the details about the Corda Enterprise architecture/design, although we do provide links to the Corda Enterprise documentation for reference wherever applicable. Our goal: • How to deploy Corda network on Microsoft Azure? • How to integrate Corda with Azure Key Vault? • How to secure Corda network communication?
  • 10. Reference Implementation Trade Finance – Business (classic) A business scenario that involves peer-to-peer transactions in a non-trusted environment is a viable candidate for Blockchain technology. Trade Finance enables the exchange of goods. However, the classic process is prone to delays and frauds. It’s largely manual and lacks transparency. It is one of the key business scenario for realizing the benefits of Blockchain, which can help reduce the disputes and errors and bring in transparency by providing a single source of truth. https://en.wikipedia.org/wiki/Trade_finance
  • 12. Biz Architecture with Blockchain Trade Finance - Blockchain Benefits of using Blockchain/DLT: ▪ Real-time review: Financial documents linked and accessible through Blockchain are reviewed and approved in real time, reducing the time it takes to initiate shipment. ▪ Disintermediation: Banks facilitating trade finance through Blockchain do not require a trusted intermediary to assume risk, eliminating the need for correspondent banks. ▪ Decentralized contract execution: As contract terms are met, status is updated on Blockchain in real time, reducing the time and headcount required to start transactions as well as monitor the delivery of goods. ▪ Proof of ownership: Blockchain provides transparency into the location and ownership of the goods. ▪ Automated settlement and reduced transaction fees: contract terms executed via smart contract eliminate the need for correspondent banks and additional transaction fees.
  • 13. Tech Architecture - Cloud Trade Finance – Cloud Infrastructure and Azure Describe the cloud services needed to enable such a scenario on Microsoft Azure using Corda Enterprise. The design follows the ‘Multiple Organizations, Private Consortium’ approach (refer here). It is a true consortium setup where each organization/party has its own setup of Azure services (e.g. AD tenant etc.), which is provisioned in its own Azure subscription/region. The Corda node running in respective organization/party setup is enabled for peer-to-peer communication with other Corda nodes within other organization/party setup. A conceptual multi-member network architecture follows (refer here for more details).
  • 14. Tech Architecture - Cloud Trade Finance (Cloud/On-Premises)
  • 16. Corda Core Components ▪ A persistence layer for storing data ▪ A network interface for interacting with other nodes ▪ An RPC interface for interacting with the node’s owner ▪ A service hub for allowing the node’s flows to call upon the node’s other services ▪ A CorDapp interface and provider for extending the node by installing CorDapps https://docs.corda.net/key-concepts-node.html
  • 18. Azure Which Operating System (OS) to use? Corda can be deployed on both Windows and Linux. It can also be containerized with Docker (Refer https://docs.corda.net/head/deploying-a-node.htm for more details) When using Azure VM, as a best practice we should always use Azure Data Disks and at the Operating System level run the Corda node from the logical data disk which can be configured to aggregate 2 or more disks. On Windows we recommend the usage of Storage Spaces and on Linux we have the following guidance available to achieve maximum performance - https://docs.microsoft.com/enus/azure/virtual-machines/linux/optimization Corda has made available a docker image which allows to run inside a container and can be found in the following repository - https://github.com/corda/corda-docker. Also, if we run the Corda node in a container, we should also use volumes which are the preferred mechanism for persisting data generated by and used by Docker containers: https://docs.docker.com/storage/volumes/
  • 20. Azure DevOps and CI/CD We can use a continuous integration and continuous deployment (CI/CD) pipeline to automate the deployment tasks and push changes to the Corda nodes automatically. Visual Studio Team Services (VSTS) provides the CI/CD pipeline, starting with a Git repository for managing your application source code and infrastructure code (ARM templates). Note: Please refer to the resource below for more details on Continuous Integration and Delivery using Visual Studio Team Services https://www.visualstudio.com/team-services/continuous-integration/ The pipeline can use Azure ARM templates to provision or update the infrastructure as necessary in each subscription, and then deploy the updated build following a workflow as described in the next diagram.
  • 22. Azure Keys Management Using Azure Key Vault - Understanding Corda Keys and Certificates It’s critical to be familiar with Corda key/certificate management concepts before understanding the possibilities of integrating with Azure Key Vault - https://docs.corda.net/permissioning.html A Corda network has four types of Certificate Authorities (CAs): ▪ Root Network CA ▪ Doorman CA ▪ Node CAs ▪ Legal Identity Cas Corda’s X509Utilities (which uses Bouncy Castle) can be used to create public/private keypairs and certificates. Included below are the steps needed to build the Certificate hierarchy: • Root Network CA – Generate keypair, create a self-signed certificate for the keypair • Doorman CA – Generate keypair, obtain a certificate for the keypair signed with the root network CA key • Node CA – For each node, generate keypair, obtain a certificate for the keypair signed with the doorman CA key
  • 24. Azure Keys Management Using Azure Key Vault - Azure Key Vault (AKV) Integration The diagram below describes, at a high-level, the certificate creation process involving a given application and AKV. The step by step description of the process is available - https://docs.microsoft.com/en-gb/azure/key- vault/create-certificate
  • 25. Azure Securing Corda Network Communication A Corda network is an authenticated peer-to-peer network of nodes, where each node is a Java Virtual Machine run- time environment hosting Corda services and executing applications. All communication between nodes is direct, with TLS-encrypted messages sent over AMQP/1.0. Each Corda network has a Network Map Service that publishes the IP addresses through which every node on the network can be reached, along with the identity certificates of those nodes and the services they provide. More information is available here: https://docs.corda.net/key-concepts-ecosystem.html On Azure, a Corda network will constitute of corda nodes running within an Azure Virtual Network (VNET) deployed across multiple Azure subscriptions owned by the respective consortium participants. We have multiple options to interconnect them. These options take in account subscription limits and best practices for each of the connectivity methods used to connect corda network nodes across the different VNETs.
  • 26. Azure Network - VNET peering The first option to interconnect a Corda network would be using VNET peering, which would allow for higher number of transactions along with enabling better performance https://docs.microsoft.com/en- us/azure/azure-subscription-service- limits In blockchain, we’ll typically have each member belonging to a different company, each with its own subscription, Identity management requirements and restrictions. So peering works when all subscriptions are associated with the same Azure AD tenant.
  • 27. Azure Network - Site-to-Site VPN In case each member of the consortium wants to have its own Azure AD tenant then the next solution is setting up the network through either a VPN Gateway or a Network Virtualization Appliance (NVA) which would establish the connections between both networks https://aka.ms/AzureSiteToSiteVPNCORDA
  • 28. Azure Network - Nginx with DDoS Standard The third solution is when customers have a public IP address which is associated with the Corda node and we need to secure this endpoint with the means which we have available for Layers 3, 4. The Azure DDoS Standard Protection service protects your application from a comprehensive set of network layer (Layer 3, 4) attacks. https://docs.microsoft.com/en- us/azure/virtual-machines/linux/tutorial- secure-web-server
  • 29. Corda Enterprise with Azure Blockchain Service (BaaS)
  • 30. Announcing Corda Enterprise on Azure Blockchain Service + Azure Blockchain Service
  • 31. Simple node deployment and configuration Simple, quick deployment Configure and deploy a Corda node (Corda Enterprise v4) with a single Azure portal pane, or through REST APIs, x-Plat CLI and Powershell Easily join Corda network of choice Add your Corda node to Testnet, UAT, Corda Network, or a private business network
  • 32. Simple node deployment and configuration Simple, quick deployment Configure and deploy a Corda node (Corda Enterprise v4) with a single Azure portal pane, or through REST APIs, x-Plat CLI and Powershell Easily join Corda network of choice Add your Corda node to Testnet, UAT, Corda Network, or a private business network
  • 33. Azure + Corda Enterprise = Built for business Designed for enterprise readiness Built to meet enterprise standards in terms of performance, compliance, security, and interoperability Optimized for Azure customers Integrated with key Azure services, such as AKV, Azure SQL, and Azure Monitor Open and extensible platform and ecosystem Innovate and extend the shared partner ecosystem by leveraging Corda Enterprise on Azure Blockchain Service
  • 34. Simple node deployment and configuration Simple, quick deployment Configure and deploy a Corda node (Corda Enterprise v4) with a single Azure portal pane, or through REST APIs, x-Plat CLI and Powershell Easily join Corda network of choice Add your Corda node to Testnet, UAT, Corda Network, or a private business network
  • 35. Node management Manage access to node Provide access to node via basic authentication and manage password Gracefully drain and restart nodes Control node restart on your own terms, gracefully allowing flows to drain
  • 36. Node users management Manage node user permissions Easily add and manage node user permissions based on installed CorDapps
  • 37. CorDapp management Manage installed CorDapps Easily add and manage CorDapps to your node with built-in graceful flow draining Deploy and broadcast CorDapps Easily deploy as many CorDapps you want to your node and share those CorDapps with others in your network
  • 38. Node health, monitoring and logging Azure Monitor logging and alerting integration Get node insights such as transaction count, CPU and memory usage, as well as alerts for user-defined thresholds View ledger and proxy logs in Log Analytics Configure rich views for logging events emitted from Corda and proxy, enabling insights into blockchain activity and network connections
  • 39. Roadmap • Corda node provisioning • Simple CorDapp management • Single RPC user • MVP portal UX • Basic monitoring and logging • Simple documentation • Support channel • Enhanced CorDapp management • Enhanced RPC user management • Full portal UX • Enhanced monitoring/logging • Documentation • HA/DR • Upgrade support • Firewall/network privacy functionality • AKV signing • Billing/business model • Onboard Microsoft support • Documentation Milestone 1 – MVP Private Preview Milestone 2 – Full Private Preview Milestone 3 – Public Preview
  • 40. All on the best cloud for blockchain Analysts place us ahead of the competition Our open, app-focused approach has been validated by Gartner, Forrester and many other third-party analysts We have designed a thoughtful product portfolio We have spent 4 years developing the most open and comprehensive blockchain portfolio to simplify development of this new class of apps Customers and partners trust us Businesses have built thousands of blockchain apps on Azure working with our rich ecosystem of blockchain partners ​
  • 41. Join customers and partners building blockchain apps on Azure PARTNERS CUSTOMERS