|
POST
|
George Thanks for the information. Can the enterprise geodatabase management portion of ArcGIS Enterprise be spread out to other servers that don't have other enterprise components? Thanks Mele
... View more
09-11-2017
03:26 PM
|
0
|
1
|
1693
|
|
POST
|
I want to be able to find the best route to a number of fire inspection sites on a given day by inspector. It sounds like the Solve Vehicle Routing Problem (VRP) is what I need to publish as a Geoprocessing Service to our internal ArcGIS Server instance. I have been looking for instructions on how to do this, but have not found a good tutorial. One of the problems that may be inherent in the data is that it is not in the format needed. It doesn't look as though I can map an existing layer to the input VRP depots. Is there a way to field map the attributes from an input layer to the VRP layer? Once I get over this hurdle, if possible, I would like to use the routing service in Web AppBuilder. This all sounds possible, but I am not finding much to get started. Thanks for any assistance, Mele
... View more
09-05-2017
01:45 PM
|
1
|
4
|
3589
|
|
POST
|
Did you find a solution to this? I am trying to do the same but am not sure where to start.
... View more
09-01-2017
01:11 PM
|
0
|
0
|
736
|
|
POST
|
This is what I ended up doing with the GitHub Code from Philip Heede. Works great. https://github.com/pheede/agsadmin-devsummit static async Task DoWork() { AGSClient Client = new AGSClient("https://server:6080/arcgis/admin/", "user", "pwd"); await Client.Authenticate(); Console.Out.WriteLine("Authenticated against {0}: {1}", Client.ServerUrl, Client.IsAuthenticated); Console.Out.WriteLine("Session expires at {0}", Client.TokenExpiration.ToLocalTime()); Console.Out.WriteLine("------------------"); // get status of all services in all folders var folders = await Client.GetFolderNames(); Console.Out.WriteLine("The following folders are defined on the server:"); Console.Out.WriteLine("/"); foreach (string folder in folders) { Console.Out.WriteLine(folder); } Console.Out.WriteLine("------------------"); var taskServiceReports = await Client.GetAllServiceReports(); foreach (string folder in taskServiceReports.Keys) { Console.Out.WriteLine(folder); foreach (var report in taskServiceReports[folder]) { Console.Out.WriteLine(folder); Console.Out.WriteLine(string.Format(" - {0}: {1}", report.serviceName, report.status.realTimeState.ToString())); var manifest = await Client.GetServiceManifest(report, report.folderName); foreach (var db in manifest.databases) { //Console.Out.WriteLine(db.onPremiseConnectionString); foreach (var ds in db.datasets) { Console.Out.WriteLine(ds.onServerName); } } } } Console.Out.WriteLine("------------------"); }
... View more
08-30-2017
10:50 AM
|
1
|
0
|
2922
|
|
POST
|
Found this presentation that helped me out: Home | Esri Video
... View more
08-29-2017
12:03 PM
|
1
|
3
|
2922
|
|
POST
|
Philip, I am finally getting back to this, but am not getting the information I want. Below is the code that I am using. Can you see what I am doing wrong? Thanks, Mele namespace ConsoleApplication1 { class Program { static void Main(string[] args) { AGSClient Client = new AGSClient("https://MyServer:6443/arcgis/admin", "User", "PWD"); Task<Dictionary<string, ArcGISRESTAdmin.Classes.ServiceReport[]>> taskServiceReports = Client.GetAllServiceReports(); Dictionary<string, ArcGISRESTAdmin.Classes.ServiceReport[]> dctServiceReports = taskServiceReports.Result; foreach (KeyValuePair<string, ArcGISRESTAdmin.Classes.ServiceReport[]> kvp in dctServiceReports) { string theKey = kvp.Key; ArcGISRESTAdmin.Classes.ServiceReport[] serviceReports = kvp.Value; for (int x = 0; x < serviceReports.Length; x++) { string serviceName = serviceReports .serviceName; string configuredStatus = serviceReports .status.configuredState.ToString(); Task<ServiceManifest> manifest = Client.GetServiceManifest(serviceReports , ""); } } } } }
... View more
08-28-2017
01:25 PM
|
0
|
4
|
9704
|
|
POST
|
We have an ArcGIS Server Advanced license which gives us certain extensions such as Network Analyst, 3-D Analyst, and Spatial Analyst. It looks like they are not bound to the same license as the ArcGIS Server Advanced, but can be installed on another machine that only has ArcGIS Server Standard licensing. I believe I was able to do it in a previous version, but never used the extensions but I am curious about doing so when we upgrade to ArcGIS Enterprise 10.5.1 Thanks, Mele
... View more
08-24-2017
04:43 PM
|
0
|
1
|
793
|
|
POST
|
Back when ArcSDE was its own product, we bought a license. When ArcGIS Server took ArcSDE under its wing, our ArcSDE license became an ArcGIS Server Basic license as I understand it. We now also have an ArcGIS Server Standard and also an ArcGIS Server Advanced license. As I understand it, they both include the Basic functionality (formerly called ArcSDE). Can we get rid of our ArcGIS Server Basic license and use the GeoDatabase license from ArcGIS Server Standard and/or ArcGIS Server Advanced to authorize our Enterprise Geodatabases? Thanks, Mele
... View more
08-24-2017
04:38 PM
|
0
|
3
|
2326
|
|
POST
|
We have a Map Journal Story Map and I get a message saying that Map Journal is Initializing when it is loading. Is there something in its configuration that I can change to improve the loading performance? http://cos-gis.maps.arcgis.com/apps/MapJournal/index.html?appid=530214fb947d46668ae591c37ce4005c I am using JPEG images and it looks like maybe those are the culprit. The FAQs said that the images are optimized once uploaded, but should I do something to them prior to uploading them? Thanks, Mele
... View more
08-17-2017
10:50 AM
|
0
|
1
|
973
|
|
POST
|
We are using ArcGIS Server 10.2.2 and our log files are showing this message daily on a particular map service. "Error: Operation without query criteria is not allowed" I also see that the method name is "GraphicFeatureServer.HandleREST_QueryOperation" This error appears to be coming from a custom application but I am not able to give our developers enough details to trouble shoot this. Would changing the log level give me more details about what query was attempted? I am reluctant to change the logging level as this is a production server. Has anyone else seen this error and have some input as to what may be causing it? Thanks, Mele
... View more
08-08-2017
03:30 PM
|
1
|
5
|
4550
|
|
POST
|
I am using the Short List Beta Story Map to show construction projects. I started with using an ArcGIS Map Service in a Web Map. This allowed me to specify what fields in the Feature Layer I wanted to use, but once the Short List wizard completed it created a new web map with a copy of my data that was no longer editable which will be a problem as we want to edit and delete items. I then changed my approach to use a CSV uploaded to a web map using the Short List schema. This allows me to remove the layer in the web map and then re-import the CSV to update the data. This latter option seems to work pretty well for updating the points but has some limitations in that I can't edit the text or add links or format the text once I load the CSV. How are others working around this situation? I understand that I can download a copy of the older Short List app and customize it more, but my preference would be to to use AGOL to host it. Thanks, Mele
... View more
08-08-2017
03:19 PM
|
0
|
2
|
1350
|
|
POST
|
Any luck with resolving this? I would like to do the same thing and change the where query that is used by the widget. Thanks, Mele
... View more
07-14-2017
04:15 PM
|
0
|
0
|
953
|
|
POST
|
I had found this information, but wasn't quite sure how it applied to the scenario I presented. It states that Level 1 Named Users Can Not Edit or make new map Does this mean edit the WebMap or edit features in the WebMap? It seems to me that if all of the features we would be editing are coming from ArcGIS Server Map Services with Feature Access enabled then we are using the Services capabilities to edit. Maybe I am hoping for too much. The Level 1 users don't really buy us much in terms of capabilities. Mele
... View more
06-21-2017
02:56 PM
|
0
|
1
|
2303
|
|
POST
|
We are looking to implement Portal and use Web Appbuilder for ArcGIS to allow users to make edits to our ArcGIS Server Map Services. It is not clear to me when I read what a Level 1 Viewer (Only Role allowed) can do. If we create an WebMap with Map Services from our ArcGIS Server Map Services with Feature Access enabled, it seems like a Level 1 Viewer should be able to edit because ArcGIS Server is handling the edits and we are not hosting layers in Portal. Is this wishful thinking? It sounds like we will get 30 Level 1 Named Users in addition to our allocated Level 2 Users, but I am having a hard time understanding what we can do with the Level 1 Users. Definitely something I will look into at the UC, but if others have some insights prior to San Diego, please let me know. Thanks, Mele
... View more
06-21-2017
02:09 PM
|
1
|
6
|
4105
|
|
POST
|
Thanks Kimberly. I just tried this and it didn't resolve the issue that I am seeing. For what it's worth, I am using ArcGIS Server 10.2.2 and ArcGIS Desktop 10.3.1 to publish the service. I am thinking I might blow away my MXD and start with a fresh one. I only have the two layers so I don't have much time invested so far. Mele
... View more
06-12-2017
10:48 AM
|
0
|
0
|
754
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-27-2026 09:23 AM | |
| 1 | 02-26-2026 06:47 AM | |
| 3 | 10-20-2025 05:21 AM | |
| 1 | 03-13-2015 04:39 PM | |
| 1 | 09-18-2025 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|