Reputation: 23
I am following the bellow tutorial for creating a wso2 project and i am new in this area . But car file is not deploying as per tutorial.
https://docs.wso2.com/display/ESB500/Sending+a+Simple+Message
System log shows like this:
[2018-10-15 15:45:22,262] WARN - ApplicationManager No artifacts found to be deployed in this server. Ignoring Carbon Application :SampleServicesCompositeApplication_1.0.0.car
NB: But I can deploy another car file using UI.
Upvotes: 0
Views: 613
Reputation: 2653
There can be two problems here, your CAR file does not actually contain any artifacts. Or the artifacts in the CAR file have a Server Role that does not match the ESB.
If these are both set correctly and it still does not deploy check the contents of the actual CAR you are uploading as Rangas explained.
Upvotes: 1
Reputation: 422
This WARN can happen when the car file does not include any artifacts to deploy into the server. You can do a quick test to check whether the artifacts are included inside the car file. Extract the car file and check the content inside it. It should include the artifacts(endpoints, APIs etc.) which you created and also inside the artifacts.xml it will hold dependencies to your artifacts.
In case if you can't find the artifacts inside the car file, follow the link bellow again and check you have packaged the artifacts properly into the car file.
https://docs.wso2.com/display/ADMIN44x/Packaging+Artifacts+into+Composite+Applications
Upvotes: 0