Skip to content

Instantly share code, notes, and snippets.

View jayhilden's full-sized avatar

Jay Hilden jayhilden

  • Amazon
  • Minneapolis, MN
View GitHub Profile
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RabbitMQ.Client.Events;
using Verify.Platform.Infrastructure.RabbitMQ.Producers;
namespace Verify.Platform.Infrastructure.RabbitMQ
{
public interface IRabbitUtilityService
DELETE index1
PUT index1
PUT index1/type1/_mapping
{
"properties": {
"Comments": {
"type": "nested",
"properties": {
@jayhilden
jayhilden / RabbitMQ Setup
Created February 19, 2015 15:33
RabbitMQ setup script
#region setup values
$apiURL = "http://localhost:15672/api";
$apiUsername = "username";
$apiPassword = "password";
$envName = "int";
$clientName = "sales";
$clientUsername = "sales";
$clientPassword = "sales";
#endregion