For Woden-179, https://issues.apache.org/jira/browse/WODEN-179, the
signature of readWSDL method on the WSDLReader class will be changing.
Currently each type of readWSDL method has a combination that accepts a
ErrorHandler object to set the ErrorHandler used by that read method call.
As this can also be set for the WSDLReader class though the ErrorReporter,
for every call to readWSDL, these two method signatures are not needed. To
keep constancy in the Woden api to use setters they will be removed with the
patch on Woden-179.
For any code that currently uses the readWSDL method as such:
reader.readWSDL(wsdlUri, myErrHandler);
will need to be changed to set the ErrorHandler before the readWSDL call as
below:
reader.getErrorReporter().setErrorHandler(myErrHandler);
reader.readWSDL(wsdlUri);
Of the three known Woden adopters both Apache Axis 2 and ServiceMix don't
use the ErrorHandler readWSDL signature, Woden4SAWSDL does but they have
imported the Woden source into their repository to use, so committing will
not directly affect their code.
Thanks,
Dan