|
POST
|
Hi, the easiest way to do this if the new machine is on the same network / can talk to the existing machine is to set up HA, fail over then remove the old machine. The process is described here Migrate to new machines—Portal for ArcGIS | Documentation for ArcGIS Enterprise I've done this a few times now and find it easier than trying to use webgisdr. I make sure machines are patched to the same level before hand though.
... View more
01-08-2021
11:46 AM
|
1
|
0
|
2942
|
|
POST
|
Thanks for pointing me to that post. I've subscribed to that place so will keep an eye on it. Cheers!
... View more
01-06-2021
04:44 PM
|
0
|
0
|
2220
|
|
POST
|
Hi, Sorry - what I'm asking is when it is going to be part of core and replace the current 3.x viewer. As the default viewer. Thanks
... View more
01-05-2021
11:37 AM
|
0
|
1
|
2268
|
|
POST
|
Hi, Apologies if this has been asked / posted before - but when is the Beta Map Viewer coming to ArcGIS Enterprise as the default Map Viewer - is this slated for 10.9(.x) or later? Thanks @jquinn
... View more
01-05-2021
11:23 AM
|
0
|
5
|
2278
|
|
POST
|
Hi, I think there is a bug in the Python API. When creating a new Table feature and adding it to a webmap I get an error: AttributeError("'NoneType' object has no attribute 'json'",) using something like new_table = Table(new_table_url) wm.add_table(new_table) in the add_table function in C:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\Lib\site-packages\arcgis\mapping\_types.py we have if not isinstance(table, arcgis.features.Table): raise Exception("Type of object passed in must of type 'Table'") self.add_layer(table, options) in def add_layer(self, layer, options=None): the first check is if options is None: options = {} if isinstance(layer, arcgis.features.FeatureLayer) and \ 'renderer' not in options: options['renderer'] = json.loads(layer.renderer.json) which throws the error because tables obviously don't have renderers. If you do this isinstance(table, arcgis.features.Table) True isinstance(table, arcgis.features.FeatureLayer) True which is why it doesn't work. Thanks
... View more
10-26-2020
06:26 PM
|
0
|
1
|
1504
|
|
POST
|
Hi Derek, It's 10.8.1 - upgraded from 10.5.1. All patches applied. This is using the default ArcGIS Dashboard App built into the Enterprise Portal. Thanks Fraser
... View more
10-12-2020
01:04 PM
|
0
|
0
|
1395
|
|
POST
|
HI, When trying to create a gauge from a feature service accessing a SQL db from a federated GIS server that is not the hosting server I see this: edit: Same service from 2 different GIS servers - hosting server and federated server The layer does have query enabled and supports advanced statistics. I don't see this if I published the same service to the hosting server. Has anyone seen this before? Thanks Derek Law
... View more
10-10-2020
01:48 PM
|
0
|
2
|
1447
|
|
POST
|
Hi there, When trying to execute an excel report from the ArcGIS Monitor site I'm seeing an internal server error I can see the reports being generated in ArcGIS Monitor\Server\maintenanceServer\reports This is a fresh install. Anyone seen this before? Thanks EDIT: Worked it out. My collection name had a special character which I believe wasn't being encoded correctly when requesting the xlsx url. I renamed the collection and all is golden. Posting this so I remember for next time.
... View more
08-10-2020
02:32 AM
|
0
|
0
|
882
|
|
POST
|
Hi, I've had one of these pop up on one of my collectors: restarting the service doesn't seem to help - nor does recreating the service. I can import the collector and start again but am wondering what the root cause is and if there is a work around. ArcGIS Monitor 10.6.1 Thanks Fraser Andrew Sakowicz Frank Pizzi Evan Mosby Aaron Lopez
... View more
07-25-2020
01:20 AM
|
0
|
2
|
1560
|
|
POST
|
Hi Jon, I have found a solution to this. I kept circling back to the web adaptors as this was the only difference between a site that the offline packaging was working and the Azure site which wasn't. The App gateway sets X-Forwarded-Host as described here: Configure your portal to use a reverse proxy server—Portal for ArcGIS (10.8) | Documentation for ArcGIS Enterprise - however when looking at the web adaptor you can see that it sets further custom headers when handling requests mainly: X-Forwarded-Url-Base: web adaptor context X-Forwarded-Request-Context: this appears to be the same as the web context url setting webAdaptorID: web adaptor id X-Forwarded-For: an external ip I added these to my App GW and the offline packaging began working - including being able to create offline areas in Collector. Note I could see the response from the GIS Server change from something like https://external url/arcgis/rest/directories/arcgisoutput/Test/Imagery_MapServer/_ags62661154_ch/Map.tpk to https://external url/design/rest/directories/arcgisoutput/Test/Imagery_MapServer/_ags62661154_ch/Map.tpk So it looks like the GIS Server uses the X-Forwarded-Request-Context to write the response rather than the WebContextURL system setting. It appears that if the X-Forwarded-Request-Context header isn't set then it falls back to /arcgis/ - I don't know if this is intended or not but - I had a quick look through the online documentation and couldn't find these headers documented. I naturally assumed that the GIS Server would use the WebContextURL setting for any responses (including responses in GP results or API calls) before any custom headers as not all users use web adaptors - and in the Esri Azure cloud automation tools web adaptors aren't used - and these additional headers aren't set in the App GW configuration (at 10.8 anyway). Bruce Harold - looping you in as you were tagged in the original post Trevor Hart Scott Tansley
... View more
06-23-2020
01:07 PM
|
2
|
1
|
6250
|
|
POST
|
Hi Dallas, We aren't using objectid or globalid for PK / FK due to some other limitations we have - so the attribute rule just uses the Arcade function Guid() to generate a new guid for the key. Thanks
... View more
06-17-2020
07:22 PM
|
0
|
0
|
3331
|
|
POST
|
Sorry - one more - I'm assuming you do something like this right: return { 'result': noAddress + ' addresses found in the district.', 'edit': [{ 'className': 'Address_pnts', 'updates': AddList }] } As in for your inspection you are adding predefined values for the fields - the user in offline mode cannot edit the related table record unless its using objectid or globalid as the PK / FK Thanks!
... View more
06-17-2020
05:25 PM
|
0
|
2
|
3331
|
|
POST
|
Taking a look at the link: However, if you edit the data while offline, the attribute rule information is not included in the offline data. When you synchronize the data with the feature layer, the rules are applied at that time. I'm using a rule to generate an Id with is used as the PK and FK for a relationship. Since this isn't evaluated offline it doesn't look like this workflow will work for me. We had tested online and it was ok. Thanks
... View more
06-17-2020
05:15 PM
|
0
|
0
|
3331
|
|
POST
|
Hi Dallas, Thanks for the reply. I had a simple rule which returned a guid(); for both the feature class and related table. I tried with the exclude option on and off and when offline the rule wouldn't calculate. We tried with Android and iOS. Can you share an example of one of your rules? Would be good to see what I'm missing. Thanks Fraser
... View more
06-17-2020
05:12 PM
|
0
|
0
|
3331
|
|
POST
|
Hi there, We have done some extensive testing with Collector and it looks like attribute rules are not support for client side evaluation especially during offline workflows @10.8. Can someone confirm this is the case and if so, what is the time frame for this support? Thanks Fraser Jeff Shaner
... View more
06-17-2020
01:21 PM
|
0
|
6
|
3675
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-05-2026 01:57 PM | |
| 1 | 05-11-2026 08:21 PM | |
| 2 | 07-11-2024 05:14 PM | |
| 3 | 04-03-2024 01:48 PM | |
| 1 | 08-24-2014 10:51 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-09-2026
03:10 PM
|