wsdl2java-gradle-plugin
wsdl2java-gradle-plugin copied to clipboard
How to set headers?
I can get the wsdl2java part working just fine. However, I can't figure out how to set headers on the outgoing requests is that beyond the scope of this plugin?
I had the same issue, but was able to generate the header parameters by enabling this cxf property
wsdl2java {
// Enables processing of implicit SOAP headers https://cxf.apache.org/docs/wsdl-to-java.html
options.addAll("-exsh", "true")
}