Exemple #1
0
  /**
   * This function sets up the call to SQS and returns the raw response.
   *
   * @return the raw response from SQS
   * @throws QueueException
   */
  private HttpResponse makeCall() throws Exception {

    HttpMethod method = sendRequest();
    HttpResponse response = HttpResponse.parseMethod(method);

    return response;
  }