Select to view content in your preferred language

3.9 Internal Server Error 500

6309
22
05-14-2014 05:27 AM
BrianCowan
New Contributor
I downloaded ArcGIS 3.9 but after updating the files and running my map I got the following error

GET http://localhost:9000/proxy?./proxy?http://services.arcgisonline.com/ArcGIS/rest/services/World_Stre...   500 (Internal Server Error)

Any help would be greatly appreciated!
0 Kudos
22 Replies
TamaraOsborn
New Contributor

Yes and no. If I add the World_Topo_Map as a ArcGISTiledMapServiceLayer I get the same errors. If I add it as a ArcGISDynamicMapServiceLayer, I don't get the errors. I don't think that's a good solution because I don't want to render it dynamically.

I don't know how to set the basemap other than using map name. By the way, I also tried other basemaps, street, oceans etc. All of them result in the same error. For example:

http://localhost:8080/proto1ProxyTest/proxy.jsp?proxy.jsp?http://services.a…ine.com/ArcGIS/rest/serv...".

0 Kudos
JeffPace
MVP Alum

ahh ok so it is only on the layer you set as a basemap when you define your map object?

did you post your code where you do new Map

0 Kudos
TamaraOsborn
New Contributor

That's right it happens for the baseMap. My original code for the map was posted earlier but here it is again:

        var effortMap = new Map("effortMap", {

            center: [-122.3348, 47.5978],

            zoom: 6,

            sliderStyle: "large",

            basemap: "streets"

          });

I only did the basemap as a layer per your request to see if the link you sent me worked.

0 Kudos