I am trying to set up a wms server using point data in a postgis (v 1.5.1, pgsql v 8.4) database and mapserver (v 1.5.1) (I know these are not the most current versions of anything, but my server is running debian stable, if neccesary, I'll upgrade them).
The data is a global data set, so the points are stored in lat/lon as postgis geography data type. I manage to display the data (using either arcmap 10 or Qgis 1.8 or directly in a web server) in lat,lon, but I would like to be able to serve the data in other projections as well. I have tried to set up LAEA north pole (EPSG 3408) as well. In the GetCapabilities, I get a part like this:
<Layer>
<Name>xxxx</Name>
<Title>yyyy</Title>
<Abstract>zzzz</Abstract>
<CRS>EPSG:4326</CRS>
<CRS>EPSG:3408</CRS>
<EX_GeographicBoundingBox>
<westBoundLongitude>-50</westBoundLongitude>
<eastBoundLongitude>90</eastBoundLongitude>
<southBoundLatitude>-50</southBoundLatitude>
<northBoundLatitude>90</northBoundLatitude>
</EX_GeographicBoundingBox>
<BoundingBox CRS="EPSG:4326" minx="-50" miny="-50" maxx="90" maxy="90" />
</Layer>
I.e my two projections are listed, but I only get the bounding box for the original projection. SHould I also get the other one?
As far as I can see from the instructions I can find, I just need to list the projections I want to use in wms_srs in the METADATA section - in the layer, in the MAP or both places (I've put it both places, but I've also tried it in just the layer or MAP, with the same result)