103104105106107108109110
SSLContext context = SSLContext.getInstance("SSL"); context.init(null, new TrustManager[] {new EasyX509TrustManager(null)}, null); return context; } catch (Exception e) { LOG.error(e.getMessage(), e); throw new HttpClientError(e.toString()); } }
4445464748495051
SSLContext context = SSLContext.getInstance("SSL"); context.init(null, new TrustManager[] { new DummyX509TrustManager(null) }, null); return context; } catch (Exception e) { if (LOG.isErrorEnabled()) { LOG.error(e.getMessage(), e); } throw new HttpClientError(e.toString()); } }
6061626364656667
116117118119120121122123
{ if (Trace.ssl) { Trace.trace(e.getMessage()); } throw new HttpClientError(e.toString()); } }
117118119120121122123124125
{ } } if ( m_aSSLContext == null ) throw new HttpClientError(); return m_aSSLContext; }
139140141142143144145146
LOGGER.exiting(EasySSLProtocolSocketFactory.class.getName(), sFunctionName); return context; } catch (final Exception e) { // LOGGER.severe(e.getMessage(), e); LOGGER.severe(e.getMessage()); throw new HttpClientError(e.toString()); } }
110111112113114115116117
SSLContext context = SSLContext.getInstance("SSL"); context.init(null, new TrustManager[] { new EasyX509TrustManager(null) }, null); return context; } catch (Exception e) { LOG.error(e.getMessage(), e); throw new HttpClientError(e.toString()); } }
7576777879808182
} }, null); return context; } catch (Exception e) { throw new HttpClientError(e.toString()); } }