*/
public DNSAPIClient createInstanceFromDefaultProviders(final DNSAPIClientConfig config,
final DefaultSSLContextFactoryConfig defaultSSLContextFactoryConfig,
final DefaultTransactionLogHandlerConfig defaultTransactionLogHandlerConfig)
throws Exception {
DefaultObjectMapperFactory objectMapperFactory = new DefaultObjectMapperFactory();
return createInstance(config,
new DefaultSSLContextFactory(defaultSSLContextFactoryConfig),
objectMapperFactory,
new DefaultClientTransactionIdStrategy(),
new DefaultTransactionLogHandler(defaultTransactionLogHandlerConfig,
objectMapperFactory.createInstance()));
}