We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my code I am trying to renew my proxy credentials without giving password. My code looks like follows;
MyProxy myproxy = new MyProxy(this.myProxyHostname, this.myProxyPortNumber); GetParams getParams = new GetParams(); getParams.setAuthzCreds(credential); getParams.setUserName(this.myProxyUserName);
getParams.setWantTrustroots(true);
GSSCredential renewedCredentials = myproxy.get(credential, getParams);
Above code is failing with client side exception message,
"Caused by: Unable to respond to server's authentication challenge. Unimplemented method: SASL".
This is tested with jglobus 2.0.5 and 2.0.6-rc2.
Thanks Amila
The text was updated successfully, but these errors were encountered:
Discussion about this issue at https://groups.google.com/a/sciencegatewaysecurity.org/forum/#!topic/discuss/XxakfA5zLlI with Amila's patch attached at the bottom.
Sorry, something went wrong.
No branches or pull requests
In my code I am trying to renew my proxy credentials without giving password. My code looks like follows;
MyProxy myproxy = new MyProxy(this.myProxyHostname, this.myProxyPortNumber); GetParams getParams = new GetParams();
getParams.setAuthzCreds(credential);
getParams.setUserName(this.myProxyUserName);
getParams.setWantTrustroots(true);
GSSCredential renewedCredentials = myproxy.get(credential, getParams);
Above code is failing with client side exception message,
"Caused by: Unable to respond to server's authentication challenge. Unimplemented method: SASL".
This is tested with jglobus 2.0.5 and 2.0.6-rc2.
Thanks
Amila
The text was updated successfully, but these errors were encountered: