|
POST
|
So if I have a spreadsheet with zip codes in one column and number of residents in another column (for example), I can use Esri Maps for Office in Excel and connect to AGOL, select cell range, and choose Zipcode for Location Type. This will result in a zip code polygon layer that is symbolized by my # of residents column. It's a great way to turn an excel spreadsheet quickly into a choropleth map. However, I cannot seem to replicate this functionality in Portal 10.3. Is there a way to do this? I've tried the following Created a zip code Geocode service based on a polygon zip code feature class, and registering that zip code geocode service with my Portal. However, that just allows me to geocode points by zip code in Maps for Office. It doesn't end up with a choropleth map like it does in AGOL. What is the difference between AGOLs geocode service for zip codes and my own? What are the correct steps for creating an internal geocode service based on zip code polygons that will allow me to create choropleth maps in Maps for Office? I could be successful in replicating this task in Excel by adding my own location type and using a zip codes feature class in Portal (not the geocode service), but I would like to create a central locator that all users would be able to select in the Location Type drop-down (instead of walking each user through the steps of creating their own location type). thanks!
... View more
12-17-2015
11:15 AM
|
0
|
0
|
2465
|
|
POST
|
Is there some reason why I would be unable to update the urls from http to https. I log into my Portal for ArcGIS (10.3) instance, and click on the the "Update the URLs of Registered Apps and Services". I am able to change the url from http to https, and when I click update I get the "success" popup, but the change never takes. If I log back into the AGOL assistant or just go to my portal directly, the service is still http. Any thoughts why?
... View more
12-04-2015
11:44 AM
|
0
|
1
|
1297
|
|
POST
|
Thanks so much! This was incredibly helpful! For what it's worth, maybe because I'm using SQL 2012 combined with ArcGIS Server 10.3, the query I had to use was eventDate >= CURRENT_DATE - 1. The DATEADD function was not working. I was able to test what worked by trying different search strings in the WHERE field of the REST endpoint, and then just copying the correct string into the AGOL assistant. Anyway, if I didn't know about this assistant, I wouldn't have been able to do this, so thanks for the tip!
... View more
11-24-2015
08:48 AM
|
0
|
1
|
3941
|
|
POST
|
I have a 10.3 Portal for ArcGIS instance, with various layers, maps, and apps registered. When I search by keyword, I get a correct list of results for content registered with those keywords, but I also get results from web mapping application templates, often in another language. Please see the attached screenshot for an example. When I search for DRAs, I get some maps and layers that have DRAs as a tag, but at the bottom of the results, there are links to two web mapping application templates in Norwegian. Is there any way to omit these search results so my users don't see them? Some update to a config file somewhere? Thanks!
... View more
11-19-2015
11:17 AM
|
0
|
1
|
4013
|
|
POST
|
I recently downloaded the map-tools-template from Esri/map-tools-template · GitHub and configured defaults.js to connect to my 10.3 Portal for ArcGIS Instance and a web map I had created earlier (i'm hosting the application on a entirely separate web server). Most of the core functionality works great, but I have some problems when trying to enable some enhanced features. 1: Print task - the print task executes successfully using our internal Export Web Map Task - if I check response in the Chrome console, I can see the uri for the resultant pdf (ie,https://ourgisserver.domain.com/arcgis/rest/directories/arcgisoutput/Utilities/PrintingTools_GPServer/_ags_a9f6356224014f44bd08ed32495ff169.pdf). However, the app doesn't automatically download the pdf. At some point in the JS, window.location would have to be set to the uri for the pdf but that doesn't seem to happen and the casual user does not get the pdf.... 2. Table view: I can't seem to control the table view. In defaults.js, there is a tableLayer object with id and fields parameters, but no matter what I put in there, I can't seem to control what appears in the table view (right now it is arbitrarily the 9th layer in my map). I also don't know what to put for the tableLayer id attribute (the name of the layer in the web map? I can't seem to find any "layer id" associated with layers in a Portal web map). 3. Search layers: in addition, I can't seem to control the searchLayers function. The search function works well on my various locators I've configured with portal, but I can't figure out how to include an attribute from one or more of my layers in the search query. Again, in defaults.js there is a searchLayers object with id and fields attributes, but if I add anything to this section, it breaks the entire search box. In addition, editing the web map properties itself to Search by Layer also breaks the search functionality in my application. If anyone has any tips on how to make these features work, please let me know! Thanks so much!
... View more
09-29-2015
10:00 AM
|
0
|
1
|
3219
|
|
POST
|
Thanks so much! I thought it might be something like this. Not having a ton of experience with SQL, would I be able to create this SQL view using ArcGIS tools, or will I need to use Management Studio? And once the view is created, I assume I publish it like any other feature class, and the underlying data table keeps getting updated from the raw data at some specified interval? Thanks again!
... View more
09-24-2015
05:49 AM
|
0
|
1
|
3941
|
|
POST
|
I have a time-enabled feature class that grows by about 60 events each day (it is currently up to about 100k events). This feature class is published to a ArcGIS for Server 10.3 instance. I've been messing around with the "filter" option for layers in AGOL. I can set a filter to display events for a specific day or a date range, but I'm curious if it's possible to have a web map always just display the last 24 hours of events. It doesn't look like it can be done with the filter option as it has no understanding of "today" or even timestamps (just dates) - is there a way to update the filter on an AGOL web map programatically, so every five minutes it updates the query to only retrieve the last 24 hours of data? Alternatively, would the only other way to achieve this effect be to create a second feature class that is itself updated every 5 minutes to only include the last 24 hours of data from the first feature class. Then expose the "subset" feature class to ArcGIS Server and build my webmap off that? It seems inefficient, but I'm struggling to determine the best way to do this. Thanks in advance! Jay PS - I haven't yet explored geoevent processor fully and don't know if this extension would make this more possible/efficient or not.
... View more
09-21-2015
09:34 AM
|
0
|
7
|
8189
|
|
POST
|
I would like to know if the following is possible using the Portal REST API - I want to programatically update a filter on one of the layers (probably using Python) on my web map. I have a web map in Portal for ArcGIS 10.3 that contains a layer (which itself is hosted on our ArcGIS for Server) with a time field. I want the filter on this layer to always be set to the current day. However, I can't configure that in the web map itself, you can only specify a specific date or date range, but not specify 'always today' or 'always the most recent week' - I would have to edit the web map manually each day to achieve this effect. So I'm curious if it is possible to do this programatically with a recurring script. I'm pretty familiar with the Server API, but not so much with ArcGIS Online / Portal API, and couldn't find anything useful in my quick research. Any thoughts? My other option would to just host another service in ArcGIS for server (or a table view in my geodatabase), but would prefer to minimize the number of services and just programatically change the filter itself. Thanks!
... View more
09-17-2015
02:01 PM
|
0
|
3
|
3454
|
|
POST
|
Okay, I can confirm the MAC address definately changed. It sounds like there are a couple steps to deauthorize the licenses though Portal and deal with the license server administrator - I'll work on getting a support ticket started. Thanks for your help!
... View more
09-16-2015
08:25 AM
|
0
|
0
|
1097
|
|
POST
|
Also, looks like there is only one NIC connection now, but it doesn't mean that it wasn't changed or switched out at some point....
... View more
09-16-2015
07:23 AM
|
0
|
1
|
11253
|
|
POST
|
The IT department might have switched VM hosts for this particular machine (I've been gone for quite some time, so "recently" is relative.. And yes, that would also mean the MAC address or NIC card might have changed too. The Machine IDs shows two UMNs. And here is the first line of the service.txt file: SERVER this_host 00155d381f33 27000 It looks like I still have the .prvc file originally used to authorize the Portal, but curious if there is something else I can do to get license manager working again - I'm afraid reauthorizing might affect some other stuff! Thanks!
... View more
09-16-2015
07:06 AM
|
0
|
0
|
11253
|
|
POST
|
I have the old authorization file I originally used (it worked when I used it 6 months ago). Should I just try using that again? I am unfamiliar with the different between a license and an authorization file - I thought they were one in the same. Whenever I have authoirzed software, the only "file" I need is the authorization file. I'm unsure where a different license might come into play. Thanks!
... View more
09-15-2015
02:11 PM
|
0
|
0
|
11254
|
|
POST
|
I see that that is the error, but I don't know how to fix it. I tried replacing the one line in the service.txt file with the id in the server line, but that caused more errors. Furthermore, I don't know what could have caused this. Do I need to reauthroize Portal using a different prvc file? Or something else entirely?
... View more
09-15-2015
01:57 PM
|
0
|
1
|
11253
|
|
POST
|
Every time I try to start the service (from the application window, not from Windows services - ArcGIS License Manager service is started in Windows services, I just can't start the License Server from the application itself, if that makes sense) the application freezes for 20 seconds but the service never starts. When I click on Diagnostics and real through the log, I get the following error-looking lines: 15:56:22 (ARCGIS) Wrong hostid on SERVER line for license file: 15:56:22 (ARCGIS) C:\Program Files (x86)\ArcGIS\License10.3\bin\service.txt SERVER line says 00155d381f33, hostid is 00155d381f02 15:56:22 (ARCGIS) Invalid hostid on SERVER line 15:56:22 (ARCGIS) Disabling 9000 licenses from feature 3DAnalystN(0C74 5D9A 80F8 7C0D ) 15:56:22 (ARCGIS) Disabling 1 license from feature ACT(1794 C1C7 F2F3 58A8 ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature dataReviewerN(0DC5 EFB6 840D 0B55 ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature desktopAdvN(0D07 CDDA B087 4351 ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature desktopBasicN(1C31 1D6B 6066 0853 ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature desktopStdN(199E E2A5 8BFE 05CE ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature geostatAnalystN(0578 2BC0 1665 8198 ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature networkAnalystN(03B8 7ACE CDD0 6065 ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature spatialAnalystN(0C5E 578F 97F5 4ABC ) 15:56:22 (ARCGIS) Disabling 9000 licenses from feature workflowMgrN(106B 98A2 3380 26E0 ) This problem is affecting my ability to check out ArcGIS Pro licenses from my Portal Machine (which is configured as the licensing portal for Pro. Any tips on what I need to do to resolve this issue without breaking current Portal functionality, please advise.
... View more
09-15-2015
01:35 PM
|
0
|
10
|
19319
|
|
POST
|
I had Esri Maps for Office 2.x working perfectly with my ArcGIS for Portal 10.3 (with dedicated hosting ArcGIS for Server 10.3). Everything worked as expected. I recently upgraded to Esri Maps for Office 3.0, and suddenly I can't log in. When I click the sign-in button, instead of being presented with my Portal's login page, I get en error that says Invalid redirect_uri Error:400. Any thoughts on what's going on here?
... View more
04-15-2015
06:43 AM
|
0
|
2
|
4455
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 02-23-2026 11:00 AM | |
| 1 | 07-08-2025 11:33 AM | |
| 1 | 11-07-2023 08:32 AM | |
| 2 | 10-01-2025 06:52 AM | |
| 5 | 09-08-2025 07:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|