Description
When retrieving a WSDL that is behind digest authentication.
Part of the digest algorithm uses the URL and expects it to be the full URL including any query parameters.
So when there is a URL like http://myhost/myservice?wsdl it should be using the whole URL, but it is only using http://myhost/myservice which creates an incorrect digest token and fails the authentication.
In the DigestAuthSupplier the method generateAuth takes the URL/URI as
a parameter. Currently it is called like:
di.generateAuth(currentURI.getPath(), ...
I'll leave the 'correct' fix up to the experts, but when it's called with something like di.generateAuth(currentURI.getFile(),...
it works because it includes the query parameters as well.
Thank you