public DarResponse run(boolean asynch) throws Exception
{
DarRequest request = ClientHelper.getRequest();
System.out.println(new Date() + " Sending request...");
DarResponse darResponse;
if (asynch)
{
Response<DarResponse> response = endpoint.processAsync(request);
System.out.println("Doing something interesting in the mean time... ;-) ");
darResponse = response.get();