Sunday, August 12, 2018

Message Flows in WSO2 APIM 2.1.0

This article explains how the message flow happens between the main WSO2 APIM 2.1.0 components. WSO2 API Manager includes five main components as the Publisher, Store, Gateway, Traffic Manager and Key Manager. Mainly there are three message flows in WSO2 APIM:

Note: In this article I'm not going to cover the Traffic Manager, it will be covered with details in my next blog.

1) API providers publish the APIs
2) Consumers subscribe to the APIs
3) Consumers of the service invoke the APIs

1) API providers publish the APIs
Token generation and validation using oauth2.0 .
API Key Manager
Consumers Subscribes to the APIs through this interface.
API Store
API Providers Entry point to create APIs.
API Publisher
Traffic Manager
API Manager DB
User Store DB
Registry DB
Access Tokens
API Subscriptions
API Details
Backend Service Endpoint
1) API provider create and publish the APIS
2) API information will be moved to the Registry DB
3) Refering same Registry DB API store will fetch the published API Information.
4) Update API Information to the gateway.
Act as API proxy, Throttling and Security using Handlers
API Gateway
2) Consumers subscribe to the APIs
Token generation and validation using oauth2.0 .
API Key Manager
Consumers Subscribes to the APIs through this interface.
API Store
API Providers Entry point to create APIs.
API Publisher
Traffic Manager
API Manager DB
User Store DB
Registry DB
3) Access Tokens
4) API Subscriptions
API Details
Backend Service Endpoint
Act as API proxy, Throttling and Security using Handlers
API Gateway
1) Susbcribe to the API and request access token.
2) Generate access token 
5) View access tokens through store interface.
3) Consumers of the service invoke the APIs
Token generation and validation using oauth2.0 .
API Key Manager
Consumers Subscribes to the APIs through this interface.
API Store
API Providers Entry point to create APIs.
API Publisher
Traffic Manager
Act as API proxy, Throttling and Security using Handlers
API Gateway
API Manager DB
User Store DB
Registry DB
1) Invoke API with access
 token.
Access Tokens
API Subscriptions
API Details
Backend Service Endpoint
2) Validate the access token.
3) Return validation success / false
4) If successful validation calls the backend.
5) Receive the response from backend.
6) Send back the response