dojo.connect(map, "onClick", SimpleIdentifyTask); function SimpleIdentifyTask(evt) { var identifyTask = new esri.tasks.IdentifyTask("http://[hidden]/ArcGIS/rest/services/myMap/MapServer"); var identifyParams = new esri.tasks.IdentifyParameters(); identifyParams.tolerance = 2; identifyParams.returnGeometry = true; identifyParams.layerOption = esri.tasks.IdentifyParameters.LAYER_OPTION_ALL; identifyParams.layerIds = [5,7]; identifyParams.geometry = evt.mapPoint; identifyParams.mapExtent = map.extent; identifyParams.spatialReference = map.spatialReference; identifyTask.execute(identifyParams, function(idResults) { alert(idResults.length); }, function(err){alert(err.message);}); }
Solved! Go to Solution.
if(reqUrl.toLowerCase().contains(stokens[0].toLowerCase())) {
if(reqUrl.toLowerCase().indexOf(stokens[0].toLowerCase())>=0) {
for(String surl : serverUrls) {
for(int i = 0; i<serverUrls.length; i++) { String surl = serverUrls;
if(reqUrl.toLowerCase().contains(stokens[0].toLowerCase())) {
if(reqUrl.toLowerCase().indexOf(stokens[0].toLowerCase())>=0) {
for(String surl : serverUrls) {
for(int i = 0; i<serverUrls.length; i++) { String surl = serverUrls;
in working with another customer today i believe we pinpointed a similar problem when Oracle WebLogic was used for hosting. in version 10.3.3.0 of WebLogic, our JSP proxy worked out of the box, but it was necessary to make a few changes to get things up and running in version 8.1.4 because of the underlying version of Java in use.