<div class="gmail_quote"><br>
<div>Hi,</div>
<div>Im using Geoserserver 1.7.4 and Openlayers 2.8.</div>
<div>Im  wondering if anyone else has had problems displaying geowebcached images in<br>OpenLayers.<br>The Mrsid images display fine as a cached images singularly but if more than<br>one cached image is added to the map only the first one displays. They don&#39;t<br>
display as a combined group layer either.<br>   Any suggestion much appreciated.<br>   Thanks</div>
<div>        &lt;script defer=&quot;defer&quot; type=&quot;text/javascript&quot;&gt;<br>            var map;<br>            var untiled;<br>            var tiled;<br>            var pureCoverage = true;<br>            // pink tile avoidance<br>
            OpenLayers.IMAGE_RELOAD_ATTEMPTS = 5;<br>            // make OL compute scale according to WMS spec<br>            OpenLayers.DOTS_PER_INCH = 25.4 / 0.28;<br>        <br>            function init(){<br>                // if this is just a coverage or a group of them, disable a few items,<br>
                // and default to jpeg format<br>                format = &#39;image/png&#39;;<br>                if(pureCoverage) {<br>                    document.getElementById(&#39;filterType&#39;).disabled = true;<br>
                    document.getElementById(&#39;filter&#39;).disabled = true;<br>                    document.getElementById(&#39;antialiasSelector&#39;).disabled = true;<br>                    document.getElementById(&#39;updateFilterButton&#39;).disabled = true;<br>
                    document.getElementById(&#39;resetFilterButton&#39;).disabled = true;<br>                    document.getElementById(&#39;jpeg&#39;).selected = true;<br>                    format = &quot;image/jpeg&quot;;<br>
                }<br>            <br>                var bounds = new OpenLayers.Bounds(<br>                    1717600, 5632800,<br>                    1720000, 5636400<br>                );<br>                var options = {<br>
                    controls: [],<br>                    maxExtent: bounds,<br>                    maxResolution: 14.0625,<br>                    projection: &quot;EPSG:2193&quot;,<br>                    units: &#39;m&#39;<br>
                };<br>                map = new OpenLayers.Map(&#39;map&#39;, options);<br>            <br>            <br>                // setup single tiled layer<br>                one= new OpenLayers.Layer.WMS(<br>                    &quot;topp:roto1 - Untiled&quot;, &quot;<a href="http://localhost:8080/geoserver/gwc/service/wms">http://localhost:8080/geoserver/gwc/service/wms</a>&quot;,<br>
                    {<br>                        width: &#39;417&#39;,<br>                        layers: &#39;topp:roto1&#39;,<br>                        styles: &#39;&#39;,<br>                        srs: &#39;EPSG:2193&#39;,<br>
                        height: &#39;550&#39;,<br>                        format: format<br>                    }<br>                );<br>                        // setup single tiled layer<br>                two = new OpenLayers.Layer.WMS(<br>
                    &quot;topp:roto2 - Untiled&quot;, &quot;<a href="http://localhost:8080/geoserver/gwc/service/wms">http://localhost:8080/geoserver/gwc/service/wms</a>&quot;,<br>                    {<br>                        width: &#39;417&#39;,<br>
                        layers: &#39;topp:roto2&#39;,<br>                        styles: &#39;&#39;,<br>                        srs: &#39;EPSG:2193&#39;,<br>                        height: &#39;550&#39;,<br>                        format: format,<br>
                    }<br>                );<br>                map.addLayers([one, two]);</div></div><br>