Hey Chris, that worked perfectly.&nbsp; I should have known openlayers with javascript couldn&#39;t access that kind of info.&nbsp; I didn&#39;t think about it though, thanks.<br><br>So, I&#39;m pretty sure this will be my one last thing.&nbsp; Is it possible to retrieve various xml tags from the featureServer WFS output into the openlayers Feature object?
<br><br>For example:<br>&lt;/gml:coordinates&gt;<br>&lt;/gml:LinearRing&gt;<br>&lt;/gml:outerBoundaryIs&gt;<br>&lt;/gml:Polygon&gt;<br>&lt;/fs:geometry&gt;<br>&lt;fs:PERIMETER&gt;4.616&lt;/fs:PERIMETER&gt;<br>&lt;fs:STATE_FIPS&gt;56&lt;/fs:STATE_FIPS&gt;
<br>&lt;fs:AREA&gt;0.579&lt;/fs:AREA&gt;<br>&lt;fs:COUNTY&gt;Hot Springs County&lt;/fs:COUNTY&gt;<br><br>those perimeter, state_fips, area, county, and there&#39;s a few more.&nbsp; I&#39;ve done a:<br><br>for(prop in feature){
<br>&nbsp;&nbsp; html += prop + &quot; value : &quot; + feature[prop] + &quot;&lt;br&gt;&quot;;<br>}<br><br>in the openlayers app, which I think prints out all the attributes from the feature, and perimeter, area, etc. are not defined attributes, but..that doesn&#39;t stop me.&nbsp; 
<br><br><br>Any ideas about this?<br>Thanks again.<br>-Ed<br>