Open thejkane opened 11 years ago
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
Discussion about this issue at https://groups.google.com/a/sciencegatewaysecurity.org/forum/#!topic/discuss/XxakfA5zLlI with Amila's patch attached at the bottom.
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