BaseRequestType gft = (BaseRequestType)getFeature.getParameters()[0];
List featureCollections = results.getFeature();
//round up the info objects for each feature collection
MultiHashMap ns2metas = new MultiHashMap();
for (Iterator fc = featureCollections.iterator(); fc.hasNext();) {
FeatureCollection<SimpleFeatureType, SimpleFeature> features = (FeatureCollection) fc.next();
SimpleFeatureType featureType = features.getSchema();
//load the metadata for the feature type
String namespaceURI = featureType.getName().getNamespaceURI();
FeatureTypeInfo meta = catalog.getFeatureTypeByName( namespaceURI, featureType.getTypeName() );
if(meta == null)
throw new WFSException("Could not find feature type " + namespaceURI + ":" + featureType.getTypeName() + " in the GeoServer catalog");
NamespaceInfo ns = catalog.getNamespaceByURI( namespaceURI );
ns2metas.put( ns, meta );
}
Collection<FeatureTypeInfo> featureTypes = ns2metas.values();
//create the encoder
ApplicationSchemaXSD xsd = new ApplicationSchemaXSD( null, catalog, gft.getBaseUrl(),
org.geotools.wfs.v1_0.WFS.getInstance(), featureTypes );
Configuration configuration = new ApplicationSchemaConfiguration( xsd, new org.geotools.wfs.v1_0.WFSConfiguration() );
Encoder encoder = new Encoder(configuration);
//encoder.setEncoding(wfs.getCharSet());
encoder.setSchemaLocation(org.geoserver.wfs.xml.v1_1_0.WFS.NAMESPACE,
buildSchemaURL(gft.getBaseUrl(), "wfs/1.0.0/WFS-basic.xsd"));
//declare application schema namespaces
Map<String, String> params = params("service", "WFS", "version", "1.0.0", "request", "DescribeFeatureType");
for (Iterator i = ns2metas.entrySet().iterator(); i.hasNext();) {
Map.Entry entry = (Map.Entry) i.next();
NamespaceInfo ns = (NamespaceInfo) entry.getKey();
String namespaceURI = ns.getURI();