You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i follow the instructor for the readme page with indicate that the form for pass variable to a camel route.
The code is: "${camel.sendTo('direct:llamarPrueba', 'request')}"
Here, i call the route "llamarPrueba" and send the variable request.
The camel route is this: from("direct:llamarPrueba") .routeId(ROUTE_NAME) .marshal(marshaller) .to("spring-ws:http://localhost:8081/ws") .unmarshal(marshaller);
But when the marshal tried to process the variable, throw:
java.io.IOException: org.apache.camel.NoTypeConversionAvailableException: No type converter available to convert from type: java.util.HashMap to the required type: java.io.InputStream with value {request=com.example.demo.cliente.GetCountryRequest@1922e2c1}
How i get only the value of 'request' for make the soap request properly?
The text was updated successfully, but these errors were encountered:
Hi, i follow the instructor for the readme page with indicate that the form for pass variable to a camel route.
The code is:
"${camel.sendTo('direct:llamarPrueba', 'request')}"
Here, i call the route "llamarPrueba" and send the variable request.
The camel route is this:
from("direct:llamarPrueba") .routeId(ROUTE_NAME) .marshal(marshaller) .to("spring-ws:http://localhost:8081/ws") .unmarshal(marshaller);
But when the marshal tried to process the variable, throw:
java.io.IOException: org.apache.camel.NoTypeConversionAvailableException: No type converter available to convert from type: java.util.HashMap to the required type: java.io.InputStream with value {request=com.example.demo.cliente.GetCountryRequest@1922e2c1}
How i get only the value of 'request' for make the soap request properly?
The text was updated successfully, but these errors were encountered: