hi everybody
I try to connect to server with https connection.
i have a exception uncaught handler : thread pool-1-thread-1 existing du to uncaught exception
I don't find a uncaught exception.
my source :
SSLUtilities.trustAllHostnames();
SSLUtilities.trustAllHttpsCertificates();
//default programm
//Create scheme registry
SchemeRegistry registry = new SchemeRegistry();
registry.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));
registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
//Create a http client using a threadsave connection manager
ThreadSafeClientConnManager connectionManager = new ThreadSafeClientConnManager(parameters, registry);
httpClient = new DefaultHttpClient(connectionManager, parameters);
The SSLUtilities are there : http://en.wikibooks.org/wiki/Programmin ... ertificate
So i need to success my connection
So anybody know where is the problem??
regards,
Steph


