|
|
|
|
|
|
|
|
|
Re: DataSourceSecurityFilter [message #1692948 is a reply to message #1690903] |
Mon, 20 April 2015 14:46  |
Eclipse User |
|
|
|
Uwe Degel wrote on Tue, 31 March 2015 22:23How can I decode the password?
Not sure to know what you mean.
As explained by Andreas, you can
1/ use:
org.eclipse.scout.commons.Base64Utility.decode(String)
Where you need it.
2/ create a subclass of DataSourceSecurityFilter
With your own implementation of the encryptPass method. (empty implementation or whatever else content). Here an example:
@Override
protected String encryptPass(String s) throws ServletException {
return s;
}
This way the password will not be encrypted.
See also this thread:
DataSourceSecurityFilter and RAP Client.
|
|
|
Powered by
FUDForum. Page generated in 0.05760 seconds