dhanendras opened a new issue #1475:
URL: https://github.com/apache/camel-quarkus/issues/1475
java.lang.RuntimeException:
org.apache.camel.NoTypeConversionAvailableException: No type converter
available to convert from type: java.util.HashMap to the required type:
java.nio.ByteBuffer with value {name=e}
I am trying to upload form data from postman and below is my Quarkus-camel
code
rest() .description("Upload Multiple Report via camel and netty")
.post("/submitodc")
.bindingMode(RestBindingMode.off)
.consumes(MediaType.MULTIPART_FORM_DATA)
.to("direct:uploadReportProcessor");
from("direct:uploadReportProcessor")
.routeId("uploadProcessorRouteId") .process(OdcFileProcessor);
Please let me know what am I missing over here.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]