|
POST
|
I was reading about distributed collaborations recently for a different reason and it’s helped me understand the message better I think*. I think the message we are getting about bidirectional syncing has to do with distributed collaborations and maybe this is something to ask tech support about. It might be where the confusion is coming from for us because when I think of “bidirectional syncing” I think of syncing in both directions between the mobile device and the database, but what the message is talking about is actually between “bidirectional collaborations” which I assume is in reference to distributed collaborations. If you’re not using distributed collaborations, based on the own message page’s suggestion, the message can be ignored and we don’t have to do anything. The wording of the message is poor if what they’re actually talking about with it has to do with distributed collaborations, but that’s the most sense I can make out of it. I thought I had tried to publish and bidirectionally sync my data between device and database anyway (I think I did and it worked fine) when I got this message, but I made the post so long ago I can’t remember now. I’ll have to test it in the coming weeks.
... View more
09-09-2022
10:34 AM
|
0
|
0
|
1768
|
|
POST
|
I didn’t end up pursuing the problem further at the time so I don’t think I came up with a solution. I do plan to get back to this issue sometime this month however, so I will follow up if I figure it out. Unfortunate to hear that not even ESRI has been able to help you though, that doesn’t bode well for me!!
... View more
09-09-2022
10:19 AM
|
0
|
0
|
1769
|
|
POST
|
That worked and never would have occurred to me, thank you!!
... View more
08-23-2022
12:03 PM
|
0
|
0
|
1410
|
|
POST
|
I'm just trying to run it locally right now. I have ArcGIS Pro 3.0 and I am using Visual Studio as my IDE with the arcgispro-py3 interpreter. Full traceback: Traceback (most recent call last): File "C:\Users\NBCI\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None, File "C:\Users\NBCI\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\runpy.py", line 87, in _run_code exec(code, run_globals) File "c:\program files (x86)\microsoft visual studio\2019\enterprise\common7\ide\extensions\microsoft\python\core\debugpy\__main__.py", line 45, in <module> cli.main() File "c:\program files (x86)\microsoft visual studio\2019\enterprise\common7\ide\extensions\microsoft\python\core\debugpy/..\debugpy\server\cli.py", line 430, in main run() File "c:\program files (x86)\microsoft visual studio\2019\enterprise\common7\ide\extensions\microsoft\python\core\debugpy/..\debugpy\server\cli.py", line 267, in run_file runpy.run_path(options.target, run_name=compat.force_str("__main__")) File "C:\Users\NBCI\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\runpy.py", line 268, in run_path return _run_module_code(code, init_globals, run_name, File "C:\Users\NBCI\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\runpy.py", line 97, in _run_module_code _run_code(code, mod_globals, init_globals, File "C:\Users\NBCI\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\runpy.py", line 87, in _run_code exec(code, run_globals) File "E:\NET_Projects\HabitatMapGPServices\HabitatClassificationGPService\HabitatClassification.py", line 592, in <module> with arcpy.da.UpdateCursor(svyPtFC, ['CropResidue', 'CnpyOver12', 'CnpyDecid', 'CnpyConif', 'ShrubCover', RuntimeError: 'in_table' is not a table or a featureclass
... View more
08-23-2022
11:54 AM
|
0
|
0
|
1414
|
|
POST
|
I've been going through and updating some old scripts from Python 2 to Python 3. These are typically very very minor changes, such as updating dictionary methods from old stuff like "viewitems" and "iteritems" to "items." I haven't changed anything in this script at all except now when I run it, when it hits lines with an UpdateCursor (hereforth, UC), it says the "in_table" is not a table or feature class. I have run Describe on feature class that I am passing to the UC to ensure that it is a feature class and it is. It is not participating in any joins, topologies, networks, network datasets or anything like that. It is coming from a file geodatabase. The documentation mentions something about "some" feature classes not working with class extensions and I wonder if that's my problem? This feature class does use domains, but I'm uncertain if the class extensions they're referring to in the documentation are custom class extensions and not the "out of the box" stuff. The last time this script worked, I was using ArcMap and Enterprise 10.7 I believe. I can alter my code to make a feature layer and give that to the UC and it works, but I don't understand why... The code is really long, so I've tried to boil it down. svyPtFC = os.path.join(uploadedGDB, "{0}_Patch_Template".format(stateID))
try:
#Check the projection of the input feature class.
prjInfo = inputDesc.spatialReference
if prjInfo.PCSCode != 102003:
#Project the feature class to match the Patches FC in the SDE database
spatialRef = arcpy.SpatialReference(102003) #USA Contiguous Albers Equal Area Conic EPSG code
svyPtFC = arcpy.Project_management(svyPtFC, os.path.join(scratchGDB, "projection"),
spatialRef)
except:
# do stuff
#Split multipart polygons to single part. Each polygon has to be evaluated separately. Multipart features would not work
#well when evaluating appropriate access or adjacency.
multipartFL = arcpy.MakeFeatureLayer_management(svyPtFC, 'multipartFL')
svyPtFC = arcpy.MultipartToSinglepart_management(multipartFL, os.path.join(scratchGDB, 'singlepart'))
#Find any gaps between polygons 1 meter wide or less and fix the polygon edges so they are coincident with each other.
svyPtFC = arcpy.Integrate_management(svyPtFC, '1 Meter')
##### FAILS HERE ######
# Check float fields for decimals. If there is a decimal, multiply by 100 to make it a whole number.
with arcpy.da.UpdateCursor(svyPtFC, ['CropResidue', 'CnpyOver12', 'CnpyDecid', 'CnpyConif', 'ShrubCover',
'ShbHiStemsDens','GrassCover', 'ForbCover', 'FrbAsProtect', 'BareGround']) as uCursor:
for row in uCursor:
for position, item in enumerate(row):
if item < 1 and item != 0 and item != None:
item = item * 100
row[position] = item
uCursor.updateRow(row)
... View more
08-23-2022
10:19 AM
|
0
|
4
|
1449
|
|
POST
|
I am attempting to publish a map service where I use some data from a folder I have registered with the server. The folders are located in different locations on their respective machines, it is NOT a shared drive. Maybe that's what is causing the issue here...but the folder registers and validates successfully: Unfortunately, the publishing of the service always fails due to error 001488: "The service you are trying to publish includes data but the site has been configured such that data cannot be copied to the server." I purposely have that checked off on my server as I do not want any data to be copied to my server when publishing anything. What am I misunderstanding here?
... View more
07-25-2022
02:38 PM
|
0
|
2
|
1246
|
|
POST
|
I am able to use it in Portal, the problem comes when you try to take the basemap offline in an application like Collector. It will not allow you to use it unless you're logged in as an AGOL subscriber unfortunately. You can see the functionality limitation highlighted in the little gray "Note" box in this document: https://enterprise.arcgis.com/en/portal/latest/use/take-maps-offline.htm I might have been a little unclear in my use case when describing my question; I have a Portal account and my AGOL account. I am not an administrator on our AGOL subscription, but I am an administrator of our Portal so I can control the membership. The members of my Portal are not members of our AGOL subscription, so while they would be able to see the ESRI imagery basemap when logged into Portal or even on Collector when connected to wifi, the minute they try to download the map in Collector for use offline, it will ask for AGOL credentials. The linked doc above explicitly states: You can take an Esri basemap from ArcGIS Online offline with an ArcGIS Enterprise web map. To do so, you must have an account as a member of an organization in ArcGIS Online. What I was hoping was that by setting up a collaboration, the portal members would sort of "inherit" permission to use the ESRI imagery basemap since the Portal would be affiliated with our AGOL subscription more or less, but I don't think that will work now that I read how explicit the wording is.
... View more
07-25-2022
12:22 PM
|
0
|
0
|
1322
|
|
POST
|
I didn’t test it, but upon more reading and in looking at the imagery page it has the little “Subscriber” badge, so I think even if I was able to share it through a collaboration, it’d just be a reference (not a copy) and would require members of my portal to have AGOL credentials which they don’t have. Bummer.
... View more
07-25-2022
12:10 PM
|
0
|
2
|
1326
|
|
POST
|
I have an enterprise deployment and I’m thinking about setting up a distributed collaboration between my portal and my organization’s AGOL. The main reason for this would be to get access to ESRI’s imagery basemap for offline use in Collector (if you’re not part of AGOL, you cannot use ESRI basemaps in offline Collector maps). Will this give me the access I seek or will I still be out of luck? I wish it was as a simple as me testing this out myself, but I have to go through a lot of people before I can test anything and figured someone might be able to answer my question right off the bat.
... View more
07-25-2022
06:16 AM
|
0
|
4
|
1368
|
|
POST
|
Oddly, I went in today and it's working again. I'm not sure what the deal was as I haven't had the time to try anything else since I posted yesterday. Thank you for listing all those files though, that will be helpful for me to know if the service is truly running next time or not!
... View more
07-08-2022
05:28 AM
|
0
|
0
|
3367
|
|
POST
|
I receive the connection refused error for the 7443 URL and the 500 internal server error for the webadaptorname/portaladmin URL.
... View more
07-07-2022
07:05 AM
|
0
|
2
|
3412
|
|
POST
|
Recently some IT folks installed a patch on our windows server and now I can no longer reach our Portal admin URL and am getting a "Connection refused" error message. If I try to load the portal home page I get a 500 error. I reconfigured the ArcGIS Server Account and restarted the service just to ensure that wasn't causing problems, but no dice. I can only find one help article on this issue and it's for 10.3 and I cannot find files the steps are referencing so that's no good. Anybody have any bright ideas on how to move forward?
... View more
07-07-2022
06:41 AM
|
0
|
4
|
3421
|
|
POST
|
Have you contacted ESRI support over this? If not, you should. That’s an important flaw/bug they need to know about. No viewer should ever be able to edit and I cannot imagine they ever intended AGP to act that way.
... View more
04-07-2022
04:17 AM
|
1
|
3
|
2864
|
|
POST
|
I tried that the other day and it doesn’t work. It says that the web adaptor config URL has to be accessed from the machine hosting the web adaptor. I’m logged into the server machine when I do this, so the message is non-sensical to me.
... View more
03-18-2022
01:35 PM
|
0
|
1
|
2877
|
|
POST
|
Well that sucks. I can't use any client closer to the source. The rasters are aerial imagery if that's what you mean by type. I need to be able to cache and publish them as a map service to use them as a basemap in Collector. We have an unfederated server with no copying of data upon publishing allowed, so they need to be registered in some way. Seems like putting them in the EGDB would be the way to go, but I honestly never really work with raster data so maybe not. Open to suggestions of course. Would dumping them in a folder registered with the server be more appropriate?
... View more
03-17-2022
01:57 PM
|
0
|
1
|
1760
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-16-2025 02:17 PM | |
| 2 | 09-12-2025 09:26 AM | |
| 1 | 08-16-2023 05:11 PM | |
| 1 | 02-27-2024 06:48 AM | |
| 1 | 04-15-2019 09:38 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-16-2025
02:16 PM
|