Dan, Thanks for checking with our known adopters.
For any other projects that have adopted Woden, we would be happy to inform you of breaking changes and fixes directly if you can identify yourselves to us. We even have a page for adopting projects at [1]. [1] http://incubator.apache.org/woden/projectsusingwoden.html Lawrence "Dan Harvey" <[EMAIL PROTECTED]> 09/17/2007 11:29 AM Please respond to [email protected] To [email protected] cc Subject readWSDL, ErrorHandler signature change [Breaking Change] 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 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
