If the RestBinding returns a json object it fails on fuse returning: Could not find MessageBodyWriter for response object of type: org.switchyard.quickstarts.rules.multi.Item of media type: application/json
In the binding-service quickstart in the services instead of returning @Produces(MediaType.APPLICATION_XML) Try to change it by
@Produces(MediaType.APPLICATION_JSON)
|