Make a mex/wxf request to a server.
final String request = getMexWsdlRequest(address, protocol);
if (logger.isLoggable(Level.FINE)) {
logger.fine("Request message:\n" + request + "\n");
}
String contentType = "application/soap+xml"; // soap 1.2
if (protocol == Protocol.SOAP_1_1) {
contentType = "text/xml; charset=\"utf-8\"";
}
return postClient.post(request, address, contentType);