Hello,
recently I got some exception while debugging using visual studio. IE sometimes show javascript error.
after I checked using fiddler this is what i found.
I found some differences between successfull request and failed one.
below is a correct request url (does not return exception)
<a href=“localhost” tabindex=“0”>localhost</a>:8910/SmartMap/GeoTile.axd?BBOX=115.191650390625,-8.7451171875,115.20263671875,-8.734130859375&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&EXCEPTIONS=application/vnd.ogc.se_inimage&FORMAT=image/jpeg&SRS=EPSG:4326&PAGENAME=iProTax.SmartMap&EXTRA=&OVERLAYID=ServerOverlay5103010001jl&CONNECTOR=SmartMapConnector&&WIDTH=256&HEIGHT=256&UNIT=DecimalDegree&SCALE=18023.4310913086
I notice that in above url the “OVERLAYID” and “CONNECTOR” query string values are present and has correct value,
But, when exception happens, this is the url
<a href=“localhost”>localhost</a>:8910/SmartMap/GeoTile.axd?BBOX=115.15869140625,-8.7451171875,115.169677734375,-8.734130859375&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&EXCEPTIONS=application/vnd.ogc.se_inimage&FORMAT=image/jpeg&SRS=EPSG:4326&PAGENAME=iProTax.SmartMap&EXTRA=&OVERLAYID=14b86d55-fde7-4e9e-8091-e9962b50a63b&CONNECTOR=&&WIDTH=256&HEIGHT=256&UNIT=DecimalDegree&SCALE=18023.4310913086
you can see from the request that “OVERLAYID” value is some GUID string, and “CONNECTOR” value is empty.
anybody knows what is wrong?