In this blog, I’m going to create Carbon Application (C-App) using the Axis2 service (.aar file). http://amalkas.blogspot.com/2014/05/write-your-own-service-and-deploy-into.html References: https://docs.wso2.org/display/Carbon420/C-App+Deployment+Process https://docs.wso2.org/display/Carbon420/Introduction+to+Server+Roles Create the folder structure with .aar file (axis2 service) and artifact files as follows C-App -> artifacts.xml <?xml version="1.0" encoding="UTF-8"?> <artifacts> <artifact name="OrderProcessingServiceCApp" version="1.0.0" type="carbon/application"> <dependency artifact="OrderProcessingService" version="1.0.0" include="true" serverRole="EnterpriseServiceBus"/> </artifact> </artifacts> C-App -> OrderProcessingServiceCApp -> artifact.xml <?xml version="1.0" encoding="UTF...