org.geotools.xml.transform.TransformerBase
7879808182838485868788
if (LOGGER.isLoggable(Level.FINE)) { LOGGER.fine(new StringBuffer("executing request ").append(request).toString()); } this.transformer = new DescribeLayerTransformer(this.request.getBaseUrl()); this.transformer.setNamespaceDeclarationEnabled(false); Charset encoding = this.request.getWMS().getCharSet(); this.transformer.setEncoding(encoding); if (request.getServiceConfig().isVerbose()) { this.transformer.setIndentation(2);
6263646566676869707172
public void execute(Request request) throws ServiceException { this.request = (DescribeLayerRequest) request; LOGGER.fine("executing request " + request); this.transformer = new DescribeLayerTransformer(this.request .getSchemaBaseUrl()); this.transformer.setNamespaceDeclarationEnabled(false); this.transformer.setEncoding(this.request.getGeoServer().getCharSet()); ByteArrayOutputStream out = new ByteArrayOutputStream();