I just started working with MapServer yesterday and it rocks!<br><br>I've been learning my around with the MapServer 5.x Demo App (Itasca) and while it works fine using HTML templates, I can't get it to play nicely with OpenLayers.  OpenLayers simply returns blank map tiles.<br>
<br>The itasca.map file is stock except that I uncommented the projection info:<br>PROJECTION<br>"init=epsg:26915"<br>END<br><br>My OpenLayers setup is very simple as well:<br><br> function init(){<br>            map = new OpenLayers.Map( 'map' );<br>
            layer = new OpenLayers.Layer.MapServer( "OpenLayers WMS", <br>               "<a href="http://dev.312pulse.com/cgi-bin/mapserv?map=itasca.map">http://dev.312pulse.com/cgi-bin/mapserv?map=itasca.map</a>", {layers: 'drgs,lakespy2'},<br>
                    {gutter: 15});<br>            map.addLayer(layer);<br>            map.zoomToMaxExtent();<br>            map.addControl( new OpenLayers.Control.LayerSwitcher() );<br>        }<br><br><br>Does anyone have any idea why OpenLayers isn't displaying any data, or how to troubleshoot this issue?  MapServer logging isn't the most verbose, and I haven't been able to track down any other clues.<br>
<br>My OpenLayers test page (doesn't work):<br><a href="http://dev.312pulse.com/map.html">http://dev.312pulse.com/map.html</a><br><br>Workshop demo (works):<br><a href="http://dev.312pulse.com/workshop/">http://dev.312pulse.com/workshop/</a><br>
<br>Thanks,<br><br>Jason<br>