Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have a very basic esb route using a cRest -> cprocessor
In the cprocessor i am setting the header like that :
exchange.getIn().setHeader("Test","asdasds");
According to the documentation the header should be propagated to the response but the client (me sending a request using soapui) is not receiving the test header, how come?
Hello
Can you share us the document page link?
Regards
Shong
The documentation i used as a guide is https://help.talend.com/r/en-US/8.0/mediation-apache-cxf/mediation-apache-cxf-scenario
I use cRest as a testing endpoint to trigger the addition of the header.
The endgoal is to have a soap interface, add an authentication header and send it to a rest interface. So something like this:
cSOAP -> cSetHeader (that adds ("Auth","test123") as a header needed for the rest) -> cProcess (do some translation from soap to rest) -> cREST
But in my test setup (cREST -> cProcess -> cSetHeader) when i send a request with postman i am not getting the custom header back.