Originally posted by **sunil-solace** April 9, 2023
We have a custom Camel based Adapter being developed. It basically invokes the Producer and Consumer implementations we've defined using Receiver and Sender, but we also would like to invoke a custom Processor in our Adapter from the Integration Suite. Is this supported, if yes, then what's the way around it?
Following is the example of what is being done:
The following processor is implemented in the Custom Adapter:
```
public class MyCustomProcessor implements Processor {
@Override
public void process(Exchange exchange) throws Exception {
//...
}
}
```
and this is how it would work in the Camel world:
```
```
Discussed in https://github.com/SAP/apibusinesshub-integration-recipes/discussions/74