private static final Logger log = LoggerFactory.getLogger(CoinsetterPingDemo.class);
public static void main(String[] args) throws IOException {
Exchange coinsetter = CoinsetterExamplesUtils.getExchange();
CoinsetterPingServiceRaw pingService = new CoinsetterPingServiceRaw(coinsetter.getExchangeSpecification());
String text = pingService.ping("HelloWorld");
log.info("ping result: {}", text);
}