hi Ben,
The code that was written for my WmsServer does not set ContentType and has not been modified to accommodate V14.2.
The V13.3 client works so V13.3 had to have been designed to accommodate image/image/png.
The only thing that changed in the equation is the introduction of the async methodology. How does V13.3 accommodate this?
Below is an example of the GetMap Request, which contains the FORMAT specification…
From a Bing search of what is wms image/image/png versus image/png? the below result distinguishes between Image/png and image/image/png.
Does this have anything to do with the use of the new HTTP implementation?
Thanks,
Dennis
REQUEST=GetMap&BBOX=-10750391.358502172,4481187.063865244,-10750238.823117875,4481339.599249542&WIDTH=512&HEIGHT=512&LAYERS=NearMapChicagoOemc&STYLES=&FORMAT=image/jpeg&SRS=EPSG:3857&VERSION=1.1.1&SERVICE=WMS&DATUM=WGS84
Copilot
The difference between wms image/image/png and image/png lies in their context and usage:
WMS (Web Map Service) Context :
wms image/image/png : This format is used in the context of a Web Map Service (WMS). WMS is a standard protocol developed by the Open Geospatial Consortium (OGC) for serving georeferenced map images over the internet. When you request a map image from a WMS, you can specify the format of the image you want to receive. wms image/image/png indicates that the requested image format is PNG within the WMS protocol.
General Image Format :
image/png : This is a standard MIME type used to specify that the image is in PNG format. It is commonly used in various contexts, such as HTML, HTTP headers, and other web technologies, to indicate that the content being served or requested is a PNG image.
In summary, wms image/image/png is specific to WMS requests, while image/png is a general MIME type for PNG images. Both indicate the PNG format, but the former is used within the WMS protocol.