|
POST
|
Robert All of the calls are HTTPS What's interesting is when I run the same application on my localhost that is only HTTP calling HTTPS services it works. I wonder if HTTPS to HTTPS communication is not configured correctly. I can ping the proxy, but it does not pass along the user name and password to a secured service and only works with non secured services when using HTTP but not with HTTPS Mele
... View more
09-13-2017
01:09 PM
|
0
|
1
|
3287
|
|
POST
|
Robert, yes that is correct. Our proxy.config file has HTTPS in it. Mele
... View more
09-13-2017
11:34 AM
|
0
|
1
|
3287
|
|
POST
|
We have a Web AppBuilder site that we are moving to a Server which has HTTPS and will be calling the map Services from an internal ArcGIS Server that also has HTTPS enabled. When I try to load the services in the App, I get a 500 Internal Server Error. I am using a proxy and have configured the proxy.config. If I run the site locally on my machine with the proxy site as HTTP it works calling the HTTPS service, but if doesn't work when going from HTTPS to HTTPS in our production environment. https://appServer/SFDHydrantReview/proxy/proxy.ashx?https://mapsServer/arcgis/rest/servic… In Chrome I see a security warning when trying to access the ArcGIS Server Map Service. What do I need to configure to get this to work? Thanks, Mele
... View more
09-13-2017
09:50 AM
|
0
|
8
|
4320
|
|
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
|
1772
|
|
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
|
3642
|
|
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
|
754
|
|
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
|
2997
|
|
POST
|
Found this presentation that helped me out: Home | Esri Video
... View more
08-29-2017
12:03 PM
|
1
|
3
|
2997
|
|
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
|
9964
|
|
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
|
818
|
|
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
|
2405
|
|
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
|
1005
|
|
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
|
4633
|
|
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
|
1378
|
|
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
|
988
|
| 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
|