OrlandoLabao43 / sandrob

Automatically exported from code.google.com/p/sandrob
2 stars 0 forks source link

SandroB as webview should be used also to develop custom applications #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

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

GoogleCodeExporter commented 8 years ago
No requests for this so it will be closed.

Original comment by supp.san...@gmail.com on 14 Nov 2011 at 7:12