Hi All,After being disappointed with early WMS implementations in ESRI API I was happy to see the addition of a WMSLayer in 2.1/2.2.Now, I've been using the example: http://help.arcgis.com/en/webapi/flex/samples/index.html?sample=WMS_TOC as the basis for my initial work against our own WMS servers which serve imagery of weather information.I'm able to get the default WMS layer back for each Layer from each Service our WMS provides. However, I'm unable to access the additional parameters our WMS provides and allows for selection. E.g. one layer returns a list of date/times for data and in your request you can add this date/time to get that specific image back. I'll include a grab of some of the returned XML from the GetCapabilities call belowNow I'm sure WMSLayer was designed to work against ArcGIS servers rather than other vendor's WMS servers but surely it isn't a big stretch to get there.Could anybody advise on how to get there? I'm currently so close, but so far... 🙂CheersIan----------------------------<Layer queryable="1">
<Name>NOW_Visibility</Name>
<Title>Scaled Visibility</Title>
<SRS>CRS:84</SRS>
<SRS>EPSG:4326</SRS>
<LatLonBoundingBox minx="-180" miny="-90" maxx="180" maxy="90"/>
<BoundingBox SRS="CRS:84" minx="-180" miny="-90" maxx="180" maxy="90"/>
<BoundingBox SRS="EPSG:4326" minx="-180" miny="-90" maxx="180" maxy="90"/>
<Dimension name="DIM_RUN" units="ISO8601"/>
<Dimension name="DIM_FORECAST" units="ISO8601"/>
<Extent name="DIM_RUN" default="2011-02-10T11:00:00">2011-02-10T10:00:00,2011-02-10T11:00:00</Extent>
<Extent name="DIM_FORECAST" default="+0">+0,+1,+2,+3,+4,+5,+6</Extent>
</Layer>