My polygons have a property named fillColor with text values such as #FF0000, #00FF00, etc. In the PolygonSymbolizer, I specify that value of that property to be used as the fill color, so the intent is to have each polygon filled with the color that's in its fillColor property. This should be possible according to p.35 of the OGC Styled Layer Descriptor spec v1.0.0 dated 2002-09-19.However, ArcGIS 10 does not seem to handle that. When I replace <ogc:Literal><ogc:PropertyName>fillColor</ogc:PropertyName></ogc:Literal> with #ff0000, then each polygon is filled with RED. But with the symbolizer below, each polygon is filled with the default which seems to be #000000. Am I doing something wrong here or is there really no support for this standard in ArcGIS.Thanks.<sld:PolygonSymbolizer>
<sld:Fill>
<sld:CssParameter name="fill">
<ogc:Literal><ogc:PropertyName>fillColor</ogc:PropertyName></ogc:Literal>
</sld:CssParameter>
<sld:CssParameter name="fill-opacity">1</sld:CssParameter>
</sld:Fill>
<sld:Stroke>
<sld:CssParameter name="stroke">#0000ff</sld:CssParameter>
<sld:CssParameter name="stroke-width">2</sld:CssParameter>
<sld:CssParameter name="stroke-opacity">1</sld:CssParameter>
</sld:Stroke>
</sld:PolygonSymbolizer>