Hi, I'm trying to use CXF client with TIBCO BW service (SOAP over JMS with attachments). The problem is that against the SOAP over JMS specification, TIBCO accepts the following JMS message properties:
Content_Type SoapAction I need to have interceptor for outgoing and incoming messages that. 1. In case of outgoing message (CXF is consumer and TIBCO is provider, Request) After CXF finishes with creating the JMS message, to add new header "Content_Type" copy the value of "SOAPJMS_contentType" header to "Content_Type". 2. In case of incoming message (CXF is consumer and TIBCO is provedier, Response) Before CXF do anything with the JMS message, to add new header "SOAPJMS_contentType" and copy the contents of "Content_Type". What I want to do is something like JMS properties tranlation in both directions. I think that this could be achived with Interceptors, but I don't know in which phase and after which interceptor I have to put them. Thanks.
