if (execute.getResponseForm().getRawDataOutput() == null) {
// normal execute response encoding
standardResponse.write(value, output, operation);
} else {
// raw response, let's see what the output is
ExecuteResponseType response = (ExecuteResponseType) value;
OutputDataType result = (OutputDataType) response
.getProcessOutputs().getOutput().get(0);
LiteralDataType literal = result.getData().getLiteralData();
BoundingBoxType bbox = result.getData().getBoundingBoxData();
if (literal != null) {
writeLiteral(output, literal);