I&#39;m trying to add a vector layer into my map. No error message. I can see the layer name listed in my layer switcher, but nothing is displaying on my map. Here is my code...<br clear="all"><br>ethRoads = new OpenLayers.Layer.Vector(&quot;Roads WFS-T&quot;, {<br>
            strategies: [new OpenLayers.Strategy.Save()],<br>            protocol: new OpenLayers.Protocol.WFS({<br>                version:       &quot;1.0.0&quot;,<br>                url:           &quot;<a href="http://localhost/cgi-bin/mapserv.exe?map=C:/ms4w/apps/Eth/config.map">http://localhost/cgi-bin/mapserv.exe?map=C:/ms4w/apps/Eth/config.map</a>&quot;,<br>
                featureType:   &quot;ethroads&quot;,<br>                srsName:       &quot;EPSG:4326&quot;,<br>                featureNS:     &quot;<a href="http://www.opengis.net/ethroads">http://www.opengis.net/ethroads</a>&quot;,<br>
                geometryName:  &quot;roadgeom&quot;,<br>                schema:        &quot;<a href="http://localhost/cgi-bin/mapserv.exe?map=C:/ms4w/apps/Eth/config.map&amp;service=WFS&amp;version=1.0.0&amp;request=DescribeFeatureType&amp;TypeName=ethroads">http://localhost/cgi-bin/mapserv.exe?map=C:/ms4w/apps/Eth/config.map&amp;service=WFS&amp;version=1.0.0&amp;request=DescribeFeatureType&amp;TypeName=ethroads</a>&quot;<br>
            })<br>        });<br><br>        oMap.addLayer(ethRoads);<br><br> What is going wrong??? Can anyone out there help...Thanks in advance!!!<br>