protected Map<String, String> buildGetFeatureParametersForGET(GetFeatureRequest request) {
requestDebug("Creating GetFeature request parameters for ", request.getTypeName());
Map<String, String> map = new HashMap<String, String>();
map.put("SERVICE", "WFS");
Version serviceVersion = getServiceVersion();
map.put("VERSION", serviceVersion.toString());
map.put("REQUEST", "GetFeature");
String outputFormat = request.getOutputFormat();
if (outputFormat == null) {
outputFormat = getDefaultOutputFormat(WFSOperationType.GET_FEATURE);
}