i want to load grib file in in browser and openlayers through mapfile . <br>this is my mapfile<br>MAP<br>  NAME &quot;MAP&quot;<br>  # Map image size<br>  SIZE 300 200<br>  UNITS meters<br><br>  CONFIG  &quot;MS_ERRORFILE&quot; &quot;/ms4w/Apache/logs.log&quot;<br>
  DEBUG 5<br><br>  EXTENT -9.000000 -110.772277 369.000000 109.772277<br>  #FONTSET &#39;../etc/fonts.txt&#39;<br>  #SYMBOLSET &#39;../etc/symbols.sym&#39;<br>  PROJECTION<br>    &#39;proj=longlat&#39;<br>    &#39;ellps=WGS84&#39;<br>
    &#39;datum=WGS84&#39;<br>    &#39;no_defs&#39;<br>  END<br><br>  # Background color for the map canvas -- change as desired<br>  IMAGECOLOR 255 255 255<br>  IMAGEQUALITY 95<br>  IMAGETYPE png<br><br>  OUTPUTFORMAT<br>
    NAME png<br>    DRIVER &#39;GD/PNG&#39;<br>    MIMETYPE &#39;image/png&#39;<br>    IMAGEMODE RGBA<br>    EXTENSION &#39;png&#39;<br>  END<br>  # Legend<br>  LEGEND<br>      IMAGECOLOR 255 255 255<br>    STATUS ON<br>    KEYSIZE 18 12<br>
    LABEL<br>      TYPE BITMAP<br>      SIZE MEDIUM<br>      COLOR 0 0 89<br>    END<br>  END<br><br>  # Web interface definition. Only the template parameter<br>  # is required to display a map. See MapServer documentation<br>
  WEB<br>    # Set IMAGEPATH to the path where MapServer should<br>    # write its output.<br>        #IMAGEPATH &#39;/tmp/ms_tmp/&#39;<br><br>    # Set IMAGEURL to the url that points to IMAGEPATH<br>    # as defined in your web server configuration<br>
        #IMAGEURL &#39;/ms_tmp/&#39;<br><br>          IMAGEPATH &#39;output/&#39;<br>          IMAGEURL &#39;output/&#39;<br>          LOG &quot;/tmp/gmap.log&quot;<br><br>    # WMS server settings<br>    METADATA<br>      &#39;ows_title&#39;           &#39;MAP&#39;<br>
      &#39;ows_onlineresource&#39;  &#39;<a href="http://localhost/cgi-bin/mapserv?map=C:/ms4w/Apache/htdocs/shapefiles/GRIB_DATA/grib.map">http://localhost/cgi-bin/mapserv?map=C:/ms4w/Apache/htdocs/shapefiles/GRIB_DATA/grib.map</a>&#39;<br>
      &#39;ows_srs&#39;             &#39;EPSG:4326&#39;<br>    END<br><br>    #Scale range at which web interface will operate<br>    # Template and header/footer settings<br>    # Only the template parameter is required to display a map. See MapServer documentation<br>
    TEMPLATE &#39;templates/grib.html&#39;<br>  END<br><br>  LAYER<br>    NAME &#39;gfs.t00z.pgrbf03&#39;<br>    TYPE RASTER<br>    DUMP true<br>    TEMPLATE fooOnlyForWMSGetFeatureInfo<br>    EXTENT -9.000000 -110.772277 369.000000 109.772277<br>
    #DATA &#39;C:/ms4w/Apache/htdocs/shapefiles/GRIB_DATA/gfs.t00z.pgrbf03&#39;<br>    DATA &#39;C:/ms4w/Apache/htdocs/shapefiles/GRIB_DATA/55&#39;<br>    METADATA<br>      &#39;ows_title&#39; &#39;gfs.t00z.pgrbf03&#39;<br>
      &#39;ows_title&#39; &#39;55&#39;<br>    END<br>    STATUS OFF<br>    TRANSPARENCY 10<br>    PROJECTION<br>    &#39;proj=longlat&#39;<br>    &#39;ellps=WGS84&#39;<br>    &#39;datum=WGS84&#39;<br>    &#39;no_defs&#39;<br>
    END<br>        PROCESSING &#39;BANDS=1&#39;<br>        CLASS<br>                NAME &#39;red&#39;<br>                EXPRESSION ([pixel] &lt; -3)<br>                STYLE<br>                COLOR 255 0 0<br>                END<br>
        END<br>        CLASS<br>                NAME &#39;green&#39;<br>                EXPRESSION ([pixel] &gt;= -3 and [pixel] &lt; 3)<br>                STYLE<br>                COLOR 0 255 0<br>                END<br>
        END<br>        CLASS<br>                NAME &#39;blue&#39;<br>                EXPRESSION ([pixel] &gt;= 3)<br>                STYLE<br>                COLOR 0 0 255<br>                END<br>        END<br><br><br>
  END<br>and i put the url in browser as<br><a href="http://localhost/cgi-bin/mapserv.exe?map=/ms4w/Apache/htdocs/shapefiles/GRIB_DATA/grib.map&amp;LAYERS=gfs.t00z.pgrbf03&amp;FORMAT=png&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;STYLES=&amp;SRS=EPSG:4326&amp;BBOX=-9.000000%20-110.772277%20369.000000%20109.772277&amp;WIDTH=500&amp;HEIGHT=500">http://localhost/cgi-bin/mapserv.exe?map=/ms4w/Apache/htdocs/shapefiles/GRIB_DATA/grib.map&amp;LAYERS=gfs.t00z.pgrbf03&amp;FORMAT=png&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;STYLES=&amp;SRS=EPSG:4326&amp;BBOX=-9.000000%20-110.772277%20369.000000%20109.772277&amp;WIDTH=500&amp;HEIGHT=500</a><br>
it throws the ERROR<br>msWMSLoadGetMapParms():WMS server error.wrong number of arguments for BBOX <br>plz help me to find where i m doing wrong in mapfile or in url<br>Thanks Regards<br>