// We blow away any existing ExtensibilityElements/content before we generate it
// Is it worth being smarter? Look for matching content first and create those which aren't found????
List removeList = new ArrayList(binding.getEExtensibilityElements());
removeExtensebilityElements(binding.getEExtensibilityElements(), removeList);
HTTPBinding httpBinding = HTTPFactory.eINSTANCE.createHTTPBinding();
httpBinding.setVerb(getVerbOption(binding) == VERB_POST ? "POST" : "GET");
binding.addExtensibilityElement(httpBinding);
}