POST
|
That 0001730 error should be solved by copying the runtime database to the computer you are running ArcCatalog/ArcMap from. Once you run the tool, you will see your normal attachments table. You can then use a script provided by Esri to export the attachments out if you need. How To: Batch export attachments from a feature class in ArcGIS Pro I run into sync problems that seem like different problems and we just manually import the data. Hope this helps.
... View more
06-15-2020
07:48 AM
|
0
|
0
|
72
|
POST
|
Forgot to mention. I find the IP by going to <server>/server/admin/system/webadaptors/nameofadaptor or by going to <portal>/portal/portaladmin/system/webadaptors/nameofadaptor
... View more
09-14-2018
11:33 AM
|
1
|
0
|
62
|
POST
|
ArcGIS Server / Portal 10.4.1 I am using a federated Portal/Server site. I installed a VPN server on the machine to be able to remote in. When I restarted the server, ArcGIS Portal and Server pull the IP address from the VPN server instead of the local machine. Is there a way to manually force the web adaptor to use the local IP? I already tried going through IIS and setting the website binding IP and host name instead of using all available IPs. I disabled the VPN adaptor as well but it still pulled the IP from it. I made sure the service was off. I restarted ArcGIS Server and Portal after each. Do I need to reboot the machine instead?
... View more
09-14-2018
11:21 AM
|
0
|
2
|
324
|
POST
|
My basic workflow is Create a toolbox in pro. Create a new script tool in the toolbox. Import my script in. Set the parameters since I am using the GetParametersAsText variables in my script. It seems random. Some tools work. Some just simply won't open in a newer or older versions of Pro. I will continue to investigate. It's possible I am using some desktop arcpy instead of going to the Pro arcpy help.
... View more
04-18-2018
02:05 PM
|
0
|
7
|
228
|
POST
|
Is there a document somewhere that describes ArcGIS Pro version compatibility for toolboxes. I created a toolbox in Pro 2.1.2 and I can't use it in previous versions of Pro. I have also created a toolbox in an earlier release of Pro and could not use it in a later release. These are all python scripts imported into a toolbox.
... View more
04-18-2018
12:55 PM
|
0
|
11
|
2226
|
POST
|
I had to strip the extension and re-add the file path for it to work. Final script is below. # import system modules import os import arcpy arcpy . env . workspace = r "C:\Locators\Test_LocatorRebuild\\" for loc in arcpy . ListFiles ( "*.loc" ) : locator = os . path . splitext ( os . path . basename ( loc ) ) [ 0 ] print ( "Rebuilding " + locator ) arcpy . RebuildAddressLocator_geocoding ( arcpy . env . workspace + "\\" + locator )
... View more
12-05-2017
03:29 PM
|
1
|
1
|
30
|
POST
|
I'd like to loop through a file folder and rebuild all the locators in it. Unfortunately, I can't find anything that returns the locator name. I have been able to loop through using arcpy.ListFiles and find all *.loc files but arcpy.RebuildAddressLocator_geocoding doesn't allow you to use this because of the .loc. It says it cannot open the locator. The Esri technical article doesn't apply here because I can rebuild it fine as long as I don't include the .loc. Throws the error 000005 Could not open address locator # import system modules import os import arcpy # Set environment settings arcpy . env . workspace = "C:/Locators/Test_LocatorRebuild/" for loc in arcpy . ListFiles ( "*.loc" ) : print ( loc ) arcpy . RebuildAddressLocator_geocoding ( loc ) Anyone have any suggestions. I am currently just adding all locators into the python array and looping through them that way. It's not ideal but works for now. # import system modules import os import arcpy #Set my_workspace to the folder location of the locators my_workspace = r 'C:\Locators\Test_LocatorRebuild\\' #Set my_locators array to include the names of each locator to be rebuilt my_locators = [ my_workspace + "Streets_Test" , my_workspace + "Structures_Test" ] #Loop through the array and rebuild the address locators for loc in my_locators : print ( "Rebuilding " + loc ) arcpy . RebuildAddressLocator_geocoding ( loc ) print ( loc + " rebuild complete" )
... View more
12-05-2017
01:30 PM
|
0
|
2
|
276
|
POST
|
Instead of doing it that way, I just manually created an MXD with the locator in it. The locator gets rebuilt then the runtime content gets created using the same MXD over and over.
... View more
06-22-2017
05:35 PM
|
1
|
0
|
7
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|