POST
|
What I am observing is, if I open in chrome, it does not display. if I open using IE, it asks for message " do you want to display the blocked content" and click yes, the map is displayed. if I opne using firefox, it displays the map straightway, which any messages. still not sure why chrome is not opening it.
... View more
08-14-2018
09:36 AM
|
0
|
6
|
127
|
POST
|
Thank for replying Robert Scheitlin, GISP. I tried this, it still does not display the layer. the Error on debug is still the same. Thanks Muralidhar Moka.
... View more
08-14-2018
09:04 AM
|
0
|
8
|
127
|
POST
|
Hi , We were exploring 4.8 API. As a test. I created the following code which works with an ArcGIS online rest service(layer2) but does not work with Tile Layer (layer1). I am uploading the code. The code contains layer1 and layer2. layer2 is for test which is an arcgis online layer. This layer is fine. When I try do display layer2 (which is our rest service) it does not display it. on debugging in chrome I found the error which says (failed to load). What I observe after click on the link below on error. I find the request goes like https. I dont know understand why the request is going on https when my url starts with http. The urls starting with https does not work in our environment. How do I make them send request like http. https://mapgis.memphistn.gov/arcgis/rest/info?f=json error.png //contains the error, debug on chrome. Test Map.html // code which I am trying to display our layer.
... View more
08-14-2018
08:36 AM
|
0
|
10
|
386
|
POST
|
Hi, I am trying to create an App from AppStudio using the Web Templates from AppStudio.arcgis.com I started with the Mapviewer sample. I selected required images in the AppInfo Settings Then in MapViewer I try to select (Choose Web Maps(s) ) and in the Choose Web Map(s) tab, I don't see the Web Map which I shared as Organization. if I share it as Public then only they are visible. Also I see a message that I have to share it as Public. It is confusing because, I logged in with my portal account and then there is MyOrganization tab. Still it has to be shared as public? confused
... View more
09-08-2017
10:36 AM
|
0
|
2
|
172
|
POST
|
Hi, I started exploring App Studio. I have been writing sample custom apps. I am using standard version. But till now I am unable to figure out how to debug line by line. if I set break point in the QtCreator and I run the app, but the app does not stop there. see in this program code(snap attached), I am using console.log statment to see if it will print in the Debugger console, but it does not show any thing in the white area. I was able to use app player and log messages to console, that thing I am familiar. But how do I use the QTCreator debugger console. Do I need do some settings. Please send me any video link which explains debugging.
... View more
09-07-2017
10:02 AM
|
0
|
2
|
270
|
POST
|
Hi, I am having a basic version of Appstudio 2.0.26. I logged in with our organizationl Account. I am unable to use use the Upload button. It gets enabled but does nothing when I click it. I know it uploads files to my Organization Account. (It tried in ESRI traning, that's how I know) It is because, I don't have standard License, Let me know. Thanks Muralidhar Moka.
... View more
08-31-2017
08:42 AM
|
0
|
2
|
347
|
POST
|
Hi, We are migrating our silverlight application from 9.3 to 10.3. When we are trying to Query on a feature service. The following code works perfectly with ArcGIS server 9.3 service, but fails when we migrate the same service to 10.3. We used ArcGIS Silverlight API (that is 2.4Ver) in both the cases. QueryTask queryTask = new QueryTask(boundaryDefinition.Url); queryTask.Token = "municiaplities"; queryTask.ExecuteCompleted += QueryTask_ExecuteCompleted; queryTask.Failed += QueryTask_Failed; We observed that the failing in 10.3 happens at line queryTask.Token = "municiaplities"; If we remove this line it works in 10.3 also. The error we received when it fails is this. {Error code '498': 'Invalid Token'} But we have to use line with the Token.( it is required for us). How to solve this error. We need this urgently. Here is the API used. ArcGIS silverlight API 2.4 for 9.3 as well as 10.3. We don't know if we have to use another version for 10.3 Here is the complete code. namespace ESRIStandardMapApplication1 { public partial class MainPage : UserControl { private List<BoundaryDefinition> boundaryDefinitionList = new List<BoundaryDefinition>(); private List<TreeViewItem> tviBoundaryList = new List<TreeViewItem>(); public List<CheckBox> CheckBoxSelectedList { get; set; } private int queryCount = 0; private class BoundaryDefinition { public String Name { get; set; } public String Url { get; set; } public List<String> OutFields { get; set; } } public MainPage() { InitializeComponent(); initBoundaries(); GetBoundaries(); } private void initBoundaries() { boundaryDefinitionList.Add(new BoundaryDefinition() { Name = "Municipalities", //Url = " http://mapview3.memphistn.gov/ArcGIS/rest/services/BaseMaps/Basemap2010/MapServer/3 ", //(9.3 ) Url=" http://memdmzgisprep1.memphisdmz.ad/arcgis/rest/services/LocalGovGIS/Basemap2010/MapServer/3 ", // (10.3) OutFields = new List<String>() { "OBJECTID", "CITY" } }); } private void GetBoundaries() { foreach (BoundaryDefinition boundaryDefinition in boundaryDefinitionList) { queryCount++; QueryTask queryTask = new QueryTask(boundaryDefinition.Url); queryTask.Token = boundaryDefinition.Name; queryTask.ExecuteCompleted += QueryTask_ExecuteCompleted; queryTask.Failed += QueryTask_Failed; Query query = new Query(); query.Geometry = Map.Extent; query.OutFields.AddRange(boundaryDefinition.OutFields); query.OutSpatialReference = Map.SpatialReference; query.ReturnGeometry = true; queryTask.ExecuteAsync(query); } } // Populate county commission boundaries back on council layer results private void QueryTask_ExecuteCompleted(object sender, QueryEventArgs e) { if (e.FeatureSet.Count() == 0) { //do some thing. } else { //code to get the URL BoundaryDefinition thisBoundaryDefinition = boundaryDefinitionList.FirstOrDefault(bd => bd.Name == ((QueryTask)sender).Token); string serviceUrl = thisBoundaryDefinition.Url; } } // Display notification of county commission layer query failure private void QueryTask_Failed(object sender, TaskFailedEventArgs e) { } } }
... View more
10-28-2015
07:12 AM
|
0
|
0
|
2554
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|