One of the possible solutions I tried, was writing an interceptor.
This did not result in sending an query-string.
Should such an approach work?
public class QueryParamInterceptor extends AbstractPhaseInterceptor<Message>
{
public QueryParamInterceptor(String phase) {
super(phase);
}
public QueryParamInterceptor() {
this(Phase.USER_PROTOCOL);
}
public void handleMessage(Message message) throws Fault {
SoapMessage soapMessage = (SoapMessage) message;
soapMessage.put("org.apache.cxf.message.Message.QUERY_STRING",
"apk=myapk&oid=myoid&goid=mygoid");
}
}
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-cxf-SOAP-call-to-url-with-query-parameters-tp5743563p5743903.html
Sent from the Camel - Users mailing list archive at Nabble.com.