http://developer.android.com/resources/tutorials/views/hello-webview.html
There should be additional features that developer can customise:
Probably they would be implemented with dependency injection.
http://code.google.com/p/roboguice/
- handling ssl policy (custom TrustManager)
TrustManager[] trustManagers = new TrustManager[] {
new X509TrustManager() {
public X509Certificate[] getAcceptedIssuers() {
return null;
}
public void checkClientTrusted(
X509Certificate[] certs, String authType) {
}
public void checkServerTrusted(
X509Certificate[] certs, String authType) {
}
}
- custom certificate chain validation
- custom certificate store
- custom password checking (ldap, domain, websservices, ...)
- ?
Do you like this idea or it is no matter to you?
I will implement it if there is any need for it.
Original issue reported on code.google.com by supp.san...@gmail.com on 21 Apr 2011 at 6:30
Original issue reported on code.google.com by
supp.san...@gmail.com
on 21 Apr 2011 at 6:30