У нас вы можете посмотреть бесплатно P1-S12| или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
@hb_mulesoftTechworld =============== Mule Connectors =============== Connection means path, And the tool/component used to create a path is called as Connector. Mulesoft provided default connectors to connect with most of the external systems or applications. Connectors will work as :: Source end point to listen or start the flow Message processor to perform the activity in between flow Target end point which produces the final payload of the flow HTTP Request connector :: It will be used as a Message processor with in Flow. Used to consume or invoke REST API's. HTTP Method protocol://host:port/resource Payload /body headers query parameters uri parameters Employees Service details ========================= GET http://hbcs-dev-employees-api.us-e2.c... POST http://hbcs-dev-employees-api.us-e2.c... GET http://hbcs-dev-employees-api.us-e2.c...{empId} === 1.GET http://hbcs-dev-employees-api.us-e2.c... Query params: deptNo - optional Response list of employees ======== [ { "empId": 101, "name": "Bhagat", "dept": 10, "salary": 1000 } ] From Connectors-API ======= Use the above response and build a response in below format { "employees":[ { "empNumber": 101, "empName": "Bhagat", "deptNumber": 10, "salary": 1000 } ] } 2.GET http://hbcs-dev-employees-api.us-e2.c...{empId} GET http://hbcs-dev-employees-api.us-e2.c... get single-employee details Connectors api resp { "employeeDetails": { "empNumber": 101, "empName": "Bhagat", "deptNumber": 10, "salary": 1000 } } 3. POST http://hbcs-dev-employees-api.us-e2.c... Query params: technology - optional Headers: channel - optional Logical values to evaluate the response technology : Mulesoft/Oracle/MySql channel : DB if no channel and technology values are satisfied, it will make use of Payload values and provides a response. Request Payload: { "drivingLicenece": "KA0123" } Response Text format === Response from Mulesoft From Connectors-API ======= Use the above response and build a response to json format {"message": "Response from Mulesoft"}