[Surat] MuleSoft Meetup Group
Building JWT OAuth 2.0 Connector With
MuleSoft XML SDK
2
Organizers
Jitendra Bafna
Senior Solution Architect
Capgemini
About the organizer:
 Working as Senior Solution Architect at Capgemini.
 Surat MuleSoft Meetup Leader.
 12.5+ Years of Experience in Integrations and API Technologies.
 Certified MuleSoft Integration Architect and platform Architect.
3
Organizers
Nitish Jain
Consultant
IBM
About the organizer :
 Working as Consultant at IBM.
 Surat MuleSoft Meetup Leader.
 2.5+ Years of Experience in Integrations and API Technologies.
 Certified MuleSoft Developer and Platform Architect.
4
Speakers
Jitendra Bafna
Senior Solution Architect
Capgemini
About the speaker:
 Working as Senior Solution Architect at Capgemini.
 Surat MuleSoft Meetup Leader.
 12.5+ Years of Experience in Integrations and API Technologies.
 Certified MuleSoft Integration Architect and platform Architect.
Agenda
Introduction – XML SDK
Setting up XML SDK Connector Project
Live Demonstration on Creating JWT Token Generation Connector
Deploying Connector To Anypoint Exchange
References
Quiz
1
2
3
4
5
6
MuleSoft XML SDK
MuleSoft created an XML SDK that lets developers write custom connectors and it's actually
easier than using the Java-based Mule SDK. The new XML SDK is one of the easiest ways to
write code for a custom connector with MuleSoft.
Here are the basic components of the new SDK:
 Input parameters: a set of parameters that declares the type to be entered when calling the operation.
 Body: where the action is performed. It executes the sequence of components, like flows.
 Output: declares an output type for your XML SDK module.
 Errors: declares an error type that the XML SDK can raise in the body.
Operations: these are basically a set of parameters, the body, and the output. Operations are a type of function
which takes multiple parameters, performs a given set of actions, and gives a single output. For example, if you
want to add two numbers, 'Add' is the operation. It will take two parameters, and the action will be performed in the
body, which will add the two numbers. The output will then be the sum of these two numbers.

MuleSoft XML SDK
Property
Parameters
Body
Error
Module
Operation
Output
Setting Up an XML SDK Connector Project
Step 1 - Add below profile in settings.xml of your .m2 repository
<?xml version="1.0" encoding="UTF-8"?>
<profiles>
<profile>
<id>Mule</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>mulesoft-releases</id>
<name>MuleSoft Repository</name>
<url>http://repository.mulesoft.org/releases/</url>
<layout>default</layout>
</repository>
</repositories>
</profile>
</profiles>
Setting Up an XML SDK Connector Project
Step 2 - Add Anypoint credentials to your settings.xml file located in the .m2 repository.
<servers>
<server>
<id>Repository</id>
<username>Anypoint_Username</username>
<password>Anypoint_Password</password>
</server>
</servers>
Setting Up an XML SDK Connector Project
Step 3 – Generate XML SDK Custom Connector Project
mvn archetype:generate
-DarchetypeGroupId=org.mule.extensions
-DarchetypeArtifactId=mule-extensions-xml-archetype
-DarchetypeVersion=1.2.0
-DgroupId=math-connector-extension
-DartifactId=math-connector-extension
-DmuleConnectorName=math-connector
Attributes Description
archetypeGroupId
The GroupId in the Mule repository where the skeleton of the XML SDK is defined.
archetypeArtifactId
The ArtifactId of the archetype in the Mule repository.
archetypeVersion
A version of the archetype.
groupId
The GroupId for your application or module. Generally, it should be an AnypointOrganizationId.
artifactId
The ArtifactId for your project or module.
muleConnectorName
The name of your Mule custom connector.
Setting Up an XML SDK Connector Project
We will write all our code in the module-
<app>.xml file contained in the following
folder:
src/main/resources/org/mule/extensions
/smart/connector.
Live Demonstration
Building JWT OAuth 2.0 Connector With MuleSoft
XML SDK
Deploying Connector To Exchange
Add the below Anypoint Exchange repository to the pom.xml file under the distributionManagement
tag. Make sure {orgId} is replaced with your Anypoint OrganizationId.
Execute the below command on the root of your project and it will deploy the project to Anypoint
Exchange.
mvn deploy
<distributionManagement>
<snapshotRepository>
<id>Repository</id>
<name>Exchange Repository</name>
<url>https://maven.anypoint.mulesoft.com/api/v1/organizations/{orgId}/maven</url>
<layout>default</layout>
</snapshotRepository>
<repository>
<id>Repository</id>
<name>Exchange Repository</name>
<url>https://maven.anypoint.mulesoft.com/api/v1/organizations/{orgId}/maven</url>
<layout>default</layout>
</repository>
</distributionManagement>
Get ready to WIN a Special Gift from MuleSoft Community
Quiz Time
Questions
1. What is operation comprises of in XML SDK?
a. Property, Body, Parameters.
b. Parameters, Body, Error
c. Property, Error, Body
d. Parameters, Error, Property
Trivia Quiz
2. What is the correct command to deploy Connector to Anypoint Exchange?
a. maven deploy
b. maven clean install
c. mvn deploy
d. mvn clean install
Trivia Quiz
3. What kind of configuration or attributes defined in the Property?
a. Global Property
b. Local Property
c. Global and Local Property
d. None of the above
Trivia Quiz
References
https://dzone.com/articles/mulesoft-custom-connector-with-xml-sdk
https://docs.mulesoft.com/mule-sdk/1.1/xml-sdk
Thank You

More Related Content

PDF
MuleSoft Surat Virtual Meetup#15 - Caching Scope, Caching Strategy and Jenkin...
PDF
MuleSoft Surat Live Demonstration Virtual Meetup#4 - Automate Anypoint VPC, V...
PDF
MuleSoft Surat Virtual Meetup#6 - MuleSoft Project Template Using Maven Arche...
PDF
MuleSoft Surat Virtual Meetup#4 - Anypoint Monitoring and MuleSoft dataloader.io
PDF
MuleSoft Surat Live Demonstration Virtual Meetup#5 - Salesforce Composite Con...
PDF
Mule soft mcia-level-1 Dumps
PDF
MuleSoft Surat Virtual Meetup#18 - Persistent Queue, Object Store and Persist...
PDF
MuleSoft Surat Virtual Meetup#3 - Anypoint Custom Policies, API Manager (Prox...
MuleSoft Surat Virtual Meetup#15 - Caching Scope, Caching Strategy and Jenkin...
MuleSoft Surat Live Demonstration Virtual Meetup#4 - Automate Anypoint VPC, V...
MuleSoft Surat Virtual Meetup#6 - MuleSoft Project Template Using Maven Arche...
MuleSoft Surat Virtual Meetup#4 - Anypoint Monitoring and MuleSoft dataloader.io
MuleSoft Surat Live Demonstration Virtual Meetup#5 - Salesforce Composite Con...
Mule soft mcia-level-1 Dumps
MuleSoft Surat Virtual Meetup#18 - Persistent Queue, Object Store and Persist...
MuleSoft Surat Virtual Meetup#3 - Anypoint Custom Policies, API Manager (Prox...

What's hot (20)

PDF
MuleSoft Surat Virtual Meetup#21 - MuleSoft API and RAML Design Best Practice...
PPTX
MuleSoft Surat Virtual Meetup#9 - RAML Reusability and Simplified
PDF
MuleSoft Surat Virtual Meetup#17 - Automated Code Review
PDF
MuleSoft Surat Virtual Meetup#16 - Anypoint Deployment Option, API and Operat...
PDF
MuleSoft Surat Live Demonstration Virtual Meetup#1 - Anypoint VPC VPN and DLB
PDF
MuleSoft Surat Virtual Meetup#19 - Identity and Client Management With MuleSoft
PDF
MuleSoft Surat Virtual Meetup#29 - Deep Dive into MuleSoft Batch Processing (...
PDF
MuleSoft Surat Virtual Meetup#6 - MuleSoft API Led Connectivity, SEDA and MUn...
PPTX
MuleSoft Meetup Virtual_ 2_Charlotte
PDF
MuleSoft Nashik Virtual Meetup#2 - API Led Connectivity Integration:SAGA
PDF
MuleSoft Surat Virtual Meetup#7 - JSON Logger and Common Error Handling With ...
PPTX
Kochi Mulesoft Meetup #4
PPTX
Mulesoftmeetup Thiruvanathapuram #4
PPTX
New York City Meetup- 6th March 2021
PPT
Net35 Overview
PPTX
MuleSoft Meetup Bangalore #12
PDF
Nashik MuleSoft Virtual Meetup#1 - Shared and Dedicated Load Balancer
PPTX
MuleSoft Meetup Bangalore - March 6 2021
PPTX
Mumbai MuleSoft Meetup #18
PPTX
Meetup bangalore-may22nd2021
MuleSoft Surat Virtual Meetup#21 - MuleSoft API and RAML Design Best Practice...
MuleSoft Surat Virtual Meetup#9 - RAML Reusability and Simplified
MuleSoft Surat Virtual Meetup#17 - Automated Code Review
MuleSoft Surat Virtual Meetup#16 - Anypoint Deployment Option, API and Operat...
MuleSoft Surat Live Demonstration Virtual Meetup#1 - Anypoint VPC VPN and DLB
MuleSoft Surat Virtual Meetup#19 - Identity and Client Management With MuleSoft
MuleSoft Surat Virtual Meetup#29 - Deep Dive into MuleSoft Batch Processing (...
MuleSoft Surat Virtual Meetup#6 - MuleSoft API Led Connectivity, SEDA and MUn...
MuleSoft Meetup Virtual_ 2_Charlotte
MuleSoft Nashik Virtual Meetup#2 - API Led Connectivity Integration:SAGA
MuleSoft Surat Virtual Meetup#7 - JSON Logger and Common Error Handling With ...
Kochi Mulesoft Meetup #4
Mulesoftmeetup Thiruvanathapuram #4
New York City Meetup- 6th March 2021
Net35 Overview
MuleSoft Meetup Bangalore #12
Nashik MuleSoft Virtual Meetup#1 - Shared and Dedicated Load Balancer
MuleSoft Meetup Bangalore - March 6 2021
Mumbai MuleSoft Meetup #18
Meetup bangalore-may22nd2021
Ad

Similar to MuleSoft Surat Live Demonstration Virtual Meetup#3 - Building JWT OAuth 2.0 Connector With MuleSoft XML SDK (20)

PPTX
Ahmadabad mule soft_meetup_20_february_2021_muleconnectordevelopment
PPTX
Mulesoft Meetup Bangalore - 6th March 2021
PPTX
Custom connectorsinmule
PPTX
Creating a custom connector in mule
PPTX
Creating a custom connector in mule
PPTX
How to build custom connectors in MuleSOft
PPTX
MuleSoft Meetup Charlotte 2 - 2019
PPT
Anypoint connector dev kit
PPTX
Custom Connector using Java and XML SDK in MuleSoft | Kolkata MuleSoft Meetup #6
PPT
Mule anypoint connector
PPT
Mule anypoint connector dev kit
PPT
Mule tcat server
PPTX
How to Expand Anypoint Platform's Capabilities by Developing Custom Connectors
PPTX
Custom Connector development using Mule SDK
PPTX
Anypoint connector Roadmap
PDF
02 basics
PPTX
Building Custom Connectors Using XML SDK in Mule 4
PDF
Using the Mule 4 SDK to build a connector : MuleSoft Virtual Muleys Meetups
PPTX
Anypointconnectordevkit 160816041722
PPTX
Mumbai MuleSoft Meetup #21
Ahmadabad mule soft_meetup_20_february_2021_muleconnectordevelopment
Mulesoft Meetup Bangalore - 6th March 2021
Custom connectorsinmule
Creating a custom connector in mule
Creating a custom connector in mule
How to build custom connectors in MuleSOft
MuleSoft Meetup Charlotte 2 - 2019
Anypoint connector dev kit
Custom Connector using Java and XML SDK in MuleSoft | Kolkata MuleSoft Meetup #6
Mule anypoint connector
Mule anypoint connector dev kit
Mule tcat server
How to Expand Anypoint Platform's Capabilities by Developing Custom Connectors
Custom Connector development using Mule SDK
Anypoint connector Roadmap
02 basics
Building Custom Connectors Using XML SDK in Mule 4
Using the Mule 4 SDK to build a connector : MuleSoft Virtual Muleys Meetups
Anypointconnectordevkit 160816041722
Mumbai MuleSoft Meetup #21
Ad

More from Jitendra Bafna (20)

PDF
MuleSoft Surat Meetup#55 - Unleash the power of Anypoint MQ
PDF
MuleSoft Surat Meetup#54 - MuleSoft Automation
PDF
MuleSoft Surat Meetup#53 - MuleSoft for Clinical Trial Modernization
PDF
MuleSoft Surat Meetup#52 - Flex Gateway (Port Based Routing V/S Path Based Ro...
PDF
MuleSoft Surat Meetup#51 - API Monitoring - Through a New Lens
PDF
Engineering Student MuleSoft Meetup#7 - Leveraging MuleSoft Service in Salesf...
PDF
MuleSoft Nashik Meetup#7 - Building FHIR applications in MongoDB using MuleSoft
PDF
MuleSoft Surat Meetup#50 - Ask the MuleSoft Ambassadors + CloudHub 2.0 Overvi...
PDF
MuleSoft Surat Meetup#49 - Robotic Process Automation - Why, Where, When and ...
PDF
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
PDF
MuleSoft Surat Meetup#47 - Error Handling With MuleSoft
PDF
MuleSoft Surat Meetup#46 - Deep Dive into MUnit With MuleSoft
PDF
MuleSoft Surat Meetup#45 - Anypoint Flex Gateway as a Kubernetes Ingress Cont...
PDF
MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With Rust
PDF
Engineering Student MuleSoft Meetup#6 - Basic Understanding of DataWeave With...
PDF
MuleSoft Nashik Meetup#5 - JSON Logger and Externalize Logs
PDF
MuleSoft Surat Meetup#43 - Combine Service Mesh With Anypoint API Management ...
PDF
Engineering Student MuleSoft Meetup#5 - Error Handling With MuleSoft
PDF
MuleSoft Surat Meetup#42 - Runtime Fabric Manager on Self Managed Kubernetes ...
PDF
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...
MuleSoft Surat Meetup#55 - Unleash the power of Anypoint MQ
MuleSoft Surat Meetup#54 - MuleSoft Automation
MuleSoft Surat Meetup#53 - MuleSoft for Clinical Trial Modernization
MuleSoft Surat Meetup#52 - Flex Gateway (Port Based Routing V/S Path Based Ro...
MuleSoft Surat Meetup#51 - API Monitoring - Through a New Lens
Engineering Student MuleSoft Meetup#7 - Leveraging MuleSoft Service in Salesf...
MuleSoft Nashik Meetup#7 - Building FHIR applications in MongoDB using MuleSoft
MuleSoft Surat Meetup#50 - Ask the MuleSoft Ambassadors + CloudHub 2.0 Overvi...
MuleSoft Surat Meetup#49 - Robotic Process Automation - Why, Where, When and ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#47 - Error Handling With MuleSoft
MuleSoft Surat Meetup#46 - Deep Dive into MUnit With MuleSoft
MuleSoft Surat Meetup#45 - Anypoint Flex Gateway as a Kubernetes Ingress Cont...
MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With Rust
Engineering Student MuleSoft Meetup#6 - Basic Understanding of DataWeave With...
MuleSoft Nashik Meetup#5 - JSON Logger and Externalize Logs
MuleSoft Surat Meetup#43 - Combine Service Mesh With Anypoint API Management ...
Engineering Student MuleSoft Meetup#5 - Error Handling With MuleSoft
MuleSoft Surat Meetup#42 - Runtime Fabric Manager on Self Managed Kubernetes ...
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...

Recently uploaded (20)

PDF
Buy Cash App Verified Accounts Instantly – Secure Crypto Deal.pdf
PPTX
IPCNA VIRTUAL CLASSES INTERMEDIATE 6 PROJECT.pptx
PPTX
Layers_of_the_Earth_Grade7.pptx class by
PPTX
1402_iCSC_-_RESTful_Web_APIs_--_Josef_Hammer.pptx
PPTX
Cyber Hygine IN organizations in MSME or
PDF
Containerization lab dddddddddddddddmanual.pdf
PDF
Exploring VPS Hosting Trends for SMBs in 2025
PDF
mera desh ae watn.(a source of motivation and patriotism to the youth of the ...
PPT
Ethics in Information System - Management Information System
PPTX
artificialintelligenceai1-copy-210604123353.pptx
PDF
Uptota Investor Deck - Where Africa Meets Blockchain
PPTX
KSS ON CYBERSECURITY INCIDENT RESPONSE AND PLANNING MANAGEMENT.pptx
PPTX
t_and_OpenAI_Combined_two_pressentations
PPT
415456121-Jiwratrwecdtwfdsfwgdwedvwe dbwsdjsadca-EVN.ppt
PPTX
Introduction to cybersecurity and digital nettiquette
PDF
📍 LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1 TERPOPULER DI INDONESIA ! 🌟
PPTX
module 1-Part 1.pptxdddddddddddddddddddddddddddddddddddd
PPTX
The-Importance-of-School-Sanitation.pptx
PDF
Alethe Consulting Corporate Profile and Solution Aproach
PDF
The Evolution of Traditional to New Media .pdf
Buy Cash App Verified Accounts Instantly – Secure Crypto Deal.pdf
IPCNA VIRTUAL CLASSES INTERMEDIATE 6 PROJECT.pptx
Layers_of_the_Earth_Grade7.pptx class by
1402_iCSC_-_RESTful_Web_APIs_--_Josef_Hammer.pptx
Cyber Hygine IN organizations in MSME or
Containerization lab dddddddddddddddmanual.pdf
Exploring VPS Hosting Trends for SMBs in 2025
mera desh ae watn.(a source of motivation and patriotism to the youth of the ...
Ethics in Information System - Management Information System
artificialintelligenceai1-copy-210604123353.pptx
Uptota Investor Deck - Where Africa Meets Blockchain
KSS ON CYBERSECURITY INCIDENT RESPONSE AND PLANNING MANAGEMENT.pptx
t_and_OpenAI_Combined_two_pressentations
415456121-Jiwratrwecdtwfdsfwgdwedvwe dbwsdjsadca-EVN.ppt
Introduction to cybersecurity and digital nettiquette
📍 LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1 TERPOPULER DI INDONESIA ! 🌟
module 1-Part 1.pptxdddddddddddddddddddddddddddddddddddd
The-Importance-of-School-Sanitation.pptx
Alethe Consulting Corporate Profile and Solution Aproach
The Evolution of Traditional to New Media .pdf

MuleSoft Surat Live Demonstration Virtual Meetup#3 - Building JWT OAuth 2.0 Connector With MuleSoft XML SDK

  • 1. [Surat] MuleSoft Meetup Group Building JWT OAuth 2.0 Connector With MuleSoft XML SDK
  • 2. 2 Organizers Jitendra Bafna Senior Solution Architect Capgemini About the organizer:  Working as Senior Solution Architect at Capgemini.  Surat MuleSoft Meetup Leader.  12.5+ Years of Experience in Integrations and API Technologies.  Certified MuleSoft Integration Architect and platform Architect.
  • 3. 3 Organizers Nitish Jain Consultant IBM About the organizer :  Working as Consultant at IBM.  Surat MuleSoft Meetup Leader.  2.5+ Years of Experience in Integrations and API Technologies.  Certified MuleSoft Developer and Platform Architect.
  • 4. 4 Speakers Jitendra Bafna Senior Solution Architect Capgemini About the speaker:  Working as Senior Solution Architect at Capgemini.  Surat MuleSoft Meetup Leader.  12.5+ Years of Experience in Integrations and API Technologies.  Certified MuleSoft Integration Architect and platform Architect.
  • 5. Agenda Introduction – XML SDK Setting up XML SDK Connector Project Live Demonstration on Creating JWT Token Generation Connector Deploying Connector To Anypoint Exchange References Quiz 1 2 3 4 5 6
  • 6. MuleSoft XML SDK MuleSoft created an XML SDK that lets developers write custom connectors and it's actually easier than using the Java-based Mule SDK. The new XML SDK is one of the easiest ways to write code for a custom connector with MuleSoft. Here are the basic components of the new SDK:  Input parameters: a set of parameters that declares the type to be entered when calling the operation.  Body: where the action is performed. It executes the sequence of components, like flows.  Output: declares an output type for your XML SDK module.  Errors: declares an error type that the XML SDK can raise in the body. Operations: these are basically a set of parameters, the body, and the output. Operations are a type of function which takes multiple parameters, performs a given set of actions, and gives a single output. For example, if you want to add two numbers, 'Add' is the operation. It will take two parameters, and the action will be performed in the body, which will add the two numbers. The output will then be the sum of these two numbers. 
  • 8. Setting Up an XML SDK Connector Project Step 1 - Add below profile in settings.xml of your .m2 repository <?xml version="1.0" encoding="UTF-8"?> <profiles> <profile> <id>Mule</id> <activation> <activeByDefault>true</activeByDefault> </activation> <repositories> <repository> <id>mulesoft-releases</id> <name>MuleSoft Repository</name> <url>http://repository.mulesoft.org/releases/</url> <layout>default</layout> </repository> </repositories> </profile> </profiles>
  • 9. Setting Up an XML SDK Connector Project Step 2 - Add Anypoint credentials to your settings.xml file located in the .m2 repository. <servers> <server> <id>Repository</id> <username>Anypoint_Username</username> <password>Anypoint_Password</password> </server> </servers>
  • 10. Setting Up an XML SDK Connector Project Step 3 – Generate XML SDK Custom Connector Project mvn archetype:generate -DarchetypeGroupId=org.mule.extensions -DarchetypeArtifactId=mule-extensions-xml-archetype -DarchetypeVersion=1.2.0 -DgroupId=math-connector-extension -DartifactId=math-connector-extension -DmuleConnectorName=math-connector Attributes Description archetypeGroupId The GroupId in the Mule repository where the skeleton of the XML SDK is defined. archetypeArtifactId The ArtifactId of the archetype in the Mule repository. archetypeVersion A version of the archetype. groupId The GroupId for your application or module. Generally, it should be an AnypointOrganizationId. artifactId The ArtifactId for your project or module. muleConnectorName The name of your Mule custom connector.
  • 11. Setting Up an XML SDK Connector Project We will write all our code in the module- <app>.xml file contained in the following folder: src/main/resources/org/mule/extensions /smart/connector.
  • 12. Live Demonstration Building JWT OAuth 2.0 Connector With MuleSoft XML SDK
  • 13. Deploying Connector To Exchange Add the below Anypoint Exchange repository to the pom.xml file under the distributionManagement tag. Make sure {orgId} is replaced with your Anypoint OrganizationId. Execute the below command on the root of your project and it will deploy the project to Anypoint Exchange. mvn deploy <distributionManagement> <snapshotRepository> <id>Repository</id> <name>Exchange Repository</name> <url>https://maven.anypoint.mulesoft.com/api/v1/organizations/{orgId}/maven</url> <layout>default</layout> </snapshotRepository> <repository> <id>Repository</id> <name>Exchange Repository</name> <url>https://maven.anypoint.mulesoft.com/api/v1/organizations/{orgId}/maven</url> <layout>default</layout> </repository> </distributionManagement>
  • 14. Get ready to WIN a Special Gift from MuleSoft Community Quiz Time
  • 16. 1. What is operation comprises of in XML SDK? a. Property, Body, Parameters. b. Parameters, Body, Error c. Property, Error, Body d. Parameters, Error, Property Trivia Quiz
  • 17. 2. What is the correct command to deploy Connector to Anypoint Exchange? a. maven deploy b. maven clean install c. mvn deploy d. mvn clean install Trivia Quiz
  • 18. 3. What kind of configuration or attributes defined in the Property? a. Global Property b. Local Property c. Global and Local Property d. None of the above Trivia Quiz