I'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("Roads WFS-T", {<br>
strategies: [new OpenLayers.Strategy.Save()],<br> protocol: new OpenLayers.Protocol.WFS({<br> version: "1.0.0",<br> url: "<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>",<br>
featureType: "ethroads",<br> srsName: "EPSG:4326",<br> featureNS: "<a href="http://www.opengis.net/ethroads">http://www.opengis.net/ethroads</a>",<br>
geometryName: "roadgeom",<br> schema: "<a href="http://localhost/cgi-bin/mapserv.exe?map=C:/ms4w/apps/Eth/config.map&service=WFS&version=1.0.0&request=DescribeFeatureType&TypeName=ethroads">http://localhost/cgi-bin/mapserv.exe?map=C:/ms4w/apps/Eth/config.map&service=WFS&version=1.0.0&request=DescribeFeatureType&TypeName=ethroads</a>"<br>
})<br> });<br><br> oMap.addLayer(ethRoads);<br><br> What is going wrong??? Can anyone out there help...Thanks in advance!!!<br>