protected void sendHttpPostBindingRequest(String destination, Document samlDocument, String relayState, Response response,
boolean willSendRequest) throws ProcessingException, IOException,
ConfigurationException {
String samlMessage = PostBindingUtil.base64Encode(DocumentUtil.getDocumentAsString(samlDocument));
DestinationInfoHolder destinationHolder = new DestinationInfoHolder(destination, samlMessage, relayState);
PostBindingUtil.sendPost(destinationHolder, response, willSendRequest);
}