defaults.put("http", DefaultHTTPTransportClientProperties.class);
defaults.put("https", DefaultHTTPSTransportClientProperties.class);
TransportClientProperties tcp =
(TransportClientProperties)cache.get(protocol);
if (tcp == null) {
tcp = (TransportClientProperties)
AxisProperties.newInstance(TransportClientProperties.class,
(Class)defaults.get(protocol));
if (tcp != null) {
cache.put(protocol, tcp);
}
}
return tcp;