if (request.getResponse() == null && !request.getOperation().isOneWay()) {
create = UISupport.confirm("Request is missing response, create default mock response instead?", title);
}
if (create) {
String response = operation.createResponse(operation.getSettings().getBoolean(
WsdlSettings.XML_GENERATION_ALWAYS_INCLUDE_OPTIONAL_ELEMENTS));
CompressedStringSupport.setString(responseContent, response);
} else if (request.getResponse() != null) {
String response = request.getResponse().getContentAsString();
CompressedStringSupport.setString(responseContent, response);