I developed a custom mediator and its corresponding Factory/Serializer classes so that I can configure complex configuration options for it inside a sequence. This was made with a carbon app project using carbon studio.
The thing is that the only way I can make the configuration element to work is by deploying the jar file outside the .car file.
Can I just deploy the .car file to make it work? Where do I have to put the META-INF/services folder in order to work properly?
Here's my CarbonAppProject structure
CarbonApp
+--artifacts
+--lib
+--library
+--bundle
+--jXLS <-- Java Library Artifact
+--synapse
+--mediator
+--XlsToObjectMediator <-- Custom Mediator Artifact
+--builder
+--META-INF
+--services
+--org.apache.synapse.config.xml.MediatorFactory <-- FILE
+--org.apache.synapse.config.xml.MediatorSerializer <-- FILE
+--src
+--main
+--java
+--<package> <-- mediator, factory and serializer clases
Any help will be much appreciated.
