Details
Description
A call to the WFS getDescribeFeature service, for a FeatureType
with no explicit schema defined, ends up calling:
String org.vfny.geoserver.responses.wfs.DescribeResponse.generateFromSchema(FeatureType schema)
that calls:
org.geotools.gml.producer.FeatureTypeTransformer.transform(schema, writer);
that in the end calls:
org.geotools.gml.producer.FeatureTypeTransformer$FeatureTypeTranslator.encode(AttributeType attribute)
This method is missing support for the Boolean type (and maybe for others), so an excpetion is thrown.
I fixed this bug (for Boolean only), but I'm unsure if the org.geotools.gml.producer package is to be replaced by something better altogether or will stay with us a little more.
Bye
Paolo Rizzi
Paolo, could you commit the boolean fix?