wsdl2java-gradle-plugin
wsdl2java-gradle-plugin copied to clipboard
A Gradle plugin for generating Java classes from WSDL files
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?
It's no longer possible to specify the package name to be used per namespace. Like specified in [wsdl2java](https://cxf.apache.org/docs/wsdl-to-java.html) documentation, it's possible to change the package name per XML namespace: `-p...
As noted in the docs, the usefulness of `markGenerated` is limited and does not exclude classes from e.g. Jacoco coverage because all of the current annotation options are only retained...
Hello, first of all thank you for the plugin. It works fine for simple cases, although when I try to use groups(as found in the documentation) to generate different packages...
Hello, thanks for the plugin. I am not sure what i am doing wrong. I can successfully execute `gradle wsdl2java` but when i go to the output directory `$buildDir/generated/sources/wsdl2java/java` i...
I'm trying to generate classes from my multiple WSDL files with the following snippets of WSDL2JAVA code ``` id "com.github.bjornvester.wsdl2java" version "2.0.2" wsdl2java { includes = [ "src/main/resources/wsdl4.0/aflost.wsdl", "src/main/resources/wsdl4.0/process.wsdl", "src/main/resources/wsdl4.0/pdf.wsdl",...
This fixes issue #17 by allowing a comma-separated list to be passed to the packageName property. This way, older configurations only containing a simple package name will continue to work...
When generating Java from WSDL file that contains ```xml ``` this error occurs: ``` org.apache.cxf.BusException: No conduit initiator was found for the namespace http://cxf.apache.org/transports/http. at org.apache.cxf.bus.managers.ConduitInitiatorManagerImpl.getConduitInitiator(ConduitInitiatorManagerImpl.java:108) at org.apache.cxf.transport.TransportURIResolver.resolve(TransportURIResolver.java:105) at org.apache.cxf.wsdl11.CatalogWSDLLocator.getImportInputSource(CatalogWSDLLocator.java:111)...
I've switched to `FileCollection` for the extension/task property and added a convenience method to the extension so users won't necessarily have to deal with the `FileCollection.from()` syntax. This appeared to...
CXF wsdl2java supports specifying multiple binding files by providing multiple `-b` options. The plugin should support this as well - at the moment adding addtional `-b` Parameters via the `options`...