Mule 4: API Gateway and Auto Discovery

  Рет қаралды 21,358

Vishwas Pawar

Vishwas Pawar

Күн бұрын

Пікірлер
@jacekbiaecki8076
@jacekbiaecki8076 3 жыл бұрын
Your videos are fantastic. I really like the way how you explain things (course of thoughts, detailed and concise). There is a lot of Mulesoft-related channels on YT but yours is unique. Thanks!
@coolguyrbh
@coolguyrbh 2 жыл бұрын
As others have echoed, such concise and clear explanation. Thank you. I see the videos have dried up on your channel, we would massively benefit if you resume again bro. Thanks again!
@FunFaithFacts24
@FunFaithFacts24 3 жыл бұрын
Thank you Vishwas for all the videos that you post. All are precise and well versed, hitting the concept with perfection.
@dheeraj931
@dheeraj931 3 жыл бұрын
one of the best video i have watched on this topic so faar. Great job Vishwas
@scbharde
@scbharde 4 жыл бұрын
Beautifully explained. Thank you so much for uploading this video.
@prashantgawande4186
@prashantgawande4186 6 ай бұрын
thanks Vishwas for your excellent explanation not this Video your every Video is good way of explanation , i watched your most videos , once i seen your video i need not to go for another video for that concept, you tried include from start to end all. Thanks to contribute in mule soft world.
@jeevanatharva3820
@jeevanatharva3820 3 жыл бұрын
Nice explanation Brother much useful information
@ramakrishnaravirala8669
@ramakrishnaravirala8669 3 жыл бұрын
Hi Vishwas, nice explanation
@sriraghava1576
@sriraghava1576 2 жыл бұрын
Hi vishwas very nice amazing explanation very well.
@dpachecomartins
@dpachecomartins 2 жыл бұрын
Excelente vídeo. Very useful
@shubhamsureka9930
@shubhamsureka9930 3 жыл бұрын
Hello vishwas, your all the videos are soo beautifully explained. It's very helpful. Keep it up. Kindly create more content.
@sreekanthreddy9498
@sreekanthreddy9498 3 жыл бұрын
Thank you so much, understood clearly
@alekhyamulesoft7876
@alekhyamulesoft7876 2 жыл бұрын
thank you so much sir
@rangraopatil3229
@rangraopatil3229 4 жыл бұрын
Very good explanation. And presentation is also really good.
@Vishwasp13
@Vishwasp13 4 жыл бұрын
Thanks Rangrao
@arshhasan2985
@arshhasan2985 6 ай бұрын
legend dude
@ankithsharma725
@ankithsharma725 Жыл бұрын
I'm new to mulesoft, can someone please say what is the difference between implementation layer and orchestration layer ?? as per my understanding implementation layer is what we do in anypoint studio ( develop the api) and orchestration layer is where we deploy to the cloudhub ??
@Vishwasp13
@Vishwasp13 Жыл бұрын
Orchestration layer and Implementation both are part of Mule runtime. In earlier version of Mule 3.8.x and before the API Gateway (Orchestration Layer) was separate runtime later may be from 3.9.x it was embedded into the Mule runtime. So Mule Runtime = Implementation Layer + Orchestration Layer (API Gateway). Also, Anypoint studio is where you develop apps, runtime is where you deploy your developed apps to run. Anypoint Studio comes with an embedded mule runtime hence you can run your apps in studio as well.
@samalmanoranjan
@samalmanoranjan 4 жыл бұрын
Well articulated...
@mayuria2447
@mayuria2447 3 жыл бұрын
Hi vishwas ,thanks for providing so much information to us ,can we know what the most important policies in interview point of view that they ask
@mayuria2447
@mayuria2447 3 жыл бұрын
Sir what is the difference between API gateway version 1.0 and 2.0
@manikantaadabala3122
@manikantaadabala3122 4 жыл бұрын
Nice explanation vishwas....please do one video on CI/CD pipeline
@Vishwasp13
@Vishwasp13 4 жыл бұрын
Sure, I'll try to post a video on CICD.
@TheAQUADEEP
@TheAQUADEEP 4 жыл бұрын
Excellent video . Vishwas if you could kindly explain how we can achieve a multiple Implementation API against a single API gateway that would be great.
@Vishwasp13
@Vishwasp13 4 жыл бұрын
Implement a proxy and configure routing to the implementations in the proxy API, that's the best option I believe.
@abhijith501
@abhijith501 Жыл бұрын
Hi Vishwas that is really a good video.i am learning mulesoft and wanted to implement oAuth this is really helpful. One question i see you have added client_id,secret from access management once and also in exchange. What is the difference between both. And another question lets say if i want my application to be invoked by end users instead of we giving the client id and secret can they create their own client id and secret and invoke the application that is just created. And last question do we need to create new applications everytime and assign instance id to the new project created and request access for client_id and client_credentials
@khadarshaik8012
@khadarshaik8012 4 жыл бұрын
please do a video on Proxy VS Gateway
@lopintipriya3510
@lopintipriya3510 4 жыл бұрын
Thank you for the woderful explanation Vishwas. Im beginer to mulesoft , so sorry for the silly doubts .. Ok now, u mentioned about API gateway as the placeholder for configuring the Non - functional requirements, So is this Gateway has to be configured seperately , or gets automatically created , when you create policies [clientId,Enforcemen, Ratelimiting etc] on API manager ? and second one , you have created ClientId Enforcement policy on API manager , i guessed that you would pass this information in the request header with two seperate parameters , but you created basic authentication and added them as username and password. so is that the way we need to send those details or can i pass that information as part of header too. plz give me some infor abt it
@Vishwasp13
@Vishwasp13 4 жыл бұрын
Thanks for appreciating my work. Doubt 1: The Mule runtime comes embedded with Gateway (Orchestration Layer as shown in video), which means its already there you need not configure it separately. The runtime has 2 layers Orchestration and Implementation, Orchestration layer is where the policies that you configure in the API Manager gets applied, the implementation layer hosts your mule code. Doubt 2: There are multiple ways to configure client Id enforcement policy, you can configure it by using the Credentials Orgin option available in API manager, it gives you two options 1. HTTP Basic Authentication Header In this case you need not configure anything, it automatically detects the client ID secret sent as Authroization Header with Basic Base64 encoded Username & password 2. Custom Expression Here you can give you own format like reding from query params, headers or maybe payload, using expressions like #[attributes.queryParams['client_id']] #[attributes.queryParams['client_secret']] Recommend you to do some hands-on that will give you much more clarity. Finally, feel free to ask your doubts no matter how silly you might think it to be and I'll try my best to answer it. When you ask doubt, it means you're learning things. Asking doubt not only helps you but it also helps me and may be others who read this comment.
@lopintipriya3510
@lopintipriya3510 4 жыл бұрын
@@Vishwasp13 Thank you very much for taking time and giving such detailed explanation. Its clear now .. : )
Advanced Concepts in Mule | Streams | Repeatable | Non Repeatable
31:15
What is an API Gateway?
10:19
IBM Technology
Рет қаралды 326 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 10 МЛН
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
Mule 4 | XA | Local Transactions | Bitronix Transaction Manager
36:34
API Led Connectivity | Anypoint Platform ( Session 2 )
37:07
Salesforce Apex Hours
Рет қаралды 18 М.
AWS API Gateway Introduction
27:48
Be A Better Dev
Рет қаралды 34 М.
Something is wrong with ISPs in India 🇮🇳
13:17
Mehul - Codedamn
Рет қаралды 46 М.
MuleSoft Jenkins CI-CD || Fly High Automating Your Build & Deployment
21:18
siva thankamanee (siva.thankamanee)
Рет қаралды 22 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 10 МЛН