java - wsimport -extension equivalent Apache CFX command? -
i have wsdl , have non-unique operation signatures. can create client jax-ws below command(with parameter -extension).
wsimport -s build/src http://localhost:9080/testservice/test?wsdl -extension
how can generate client apache cfx wsdl2java tool. of paces asked use -validate=none maven below.
<wsdloption> <wsdl>${basedir}/src/main/wsdl/my.wsdl</wsdl> <validate>none</validate> </wsdloption>
is there way generate web service client wsdl2java tool command line?
in order generate client can use wsdl2java this
wsdl2java -client <wsdlurl>
here full command description.
wsdl2java -fe|-frontend -db|-databinding -wv -p <[wsdl-namespace =]package-name>* -sn -b * -reserveclass * -catalog -d -compile -classdir -impl -server -client -clientjar -all -autonameresolution -allowelementreferences|-aer<=true> -defaultvalues<=class-name-for-defaultvalueprovider> -ant -nexclude * -exsh <(true, false)> -notypes -dns -dex <(true, false)> -validate<[=all|basic|none]> -keep -wsdllocation -xjc* -asyncmethods<[=method1,method2,...]>* -baremethods<[=method1,method2,...]>* -mimemethods<[=method1,method2,...]>* -noaddressbinding -faultserialversionuid -encoding -exceptionsuper -seisuper * -mark-generated -h|-?|-help -version|-v -verbose|-v -quiet|-q|-q -wsdllist wsdlurl
for more detailed can check cxf documentation. imho, cxf documented project.
Comments
Post a Comment