Hello List,<br><br>    I want to store WFS-T (point,line,polygon) data on server.<br>With the help of following layer I am able to store polygon but not getting how to store lines &amp; points. Any help related with this is appreciated. <br>
<br>new OpenLayers.Layer.Vector(&quot;Editable Features&quot;, {<br>        strategies: [new OpenLayers.Strategy.BBOX(), saveStrategy],<br>        projection: new OpenLayers.Projection(&quot;EPSG:4326&quot;),<br>        protocol: new OpenLayers.Protocol.WFS({<br>
            version: &quot;1.1.0&quot;,<br>            srsName: &quot;EPSG:4326&quot;,<br>            url: &quot;<a href="http://demo.opengeo.org/geoserver/wfs">http://demo.opengeo.org/geoserver/wfs</a>&quot;,<br>            featureNS :  &quot;<a href="http://opengeo.org">http://opengeo.org</a>&quot;,<br>
            featureType: &quot;restricted&quot;,<br>            geometryName: &quot;the_geom&quot;,<br>            schema: &quot;<a href="http://demo.opengeo.org/geoserver/wfs/DescribeFeatureType?version=1.1.0&amp;typename=og:restricted">http://demo.opengeo.org/geoserver/wfs/DescribeFeatureType?version=1.1.0&amp;typename=og:restricted</a>&quot;<br>
        })<br>    }); <br><br>Also I don&#39;t want to add multiple layers for it if its possible in single layer. <br><br>1) How to add multiple featureTypes.<br>2) What are feature types for line &amp; point.<br>