* Parses GML3 without specifying a schema location, and illusrates the use
* of the streaming parser.
*/
public static void streamParseGML3() throws Exception {
InputStream in = GMLParsing.class.getResourceAsStream( "states.xml");
GMLConfiguration gml = new GMLConfiguration();
StreamingParser parser = new StreamingParser( gml, in, SimpleFeature.class );
int nfeatures = 0;
SimpleFeature f = null;
while( ( f = (SimpleFeature) parser.parse() ) != null ) {