|
POST
|
Also, here is a thread that Jonathan Quinn and I went back and forth on when I was having issues a few months ago that may be of help to you- https://community.esri.com/thread/121507
... View more
08-16-2019
10:06 AM
|
0
|
0
|
6951
|
|
POST
|
Hi Cody - As I am preparing to upgrade to 10.7.1 from 10.7 I began looking at posts for any gothchas. I ran across this exact issue at 10.6. Basically you get around this by using the FQDN for the machine when registering the Portal with web adaptor and then the web context and redirect uri settings in portal admin keeps it from bouncing back to the machine name: From Portal Admin>Home>System>Web Adaptors > web adaptor item name: Machine name: webadaptor_machine_name.bcc.scgov.local Machine IP: 10.140.20.125 URL: https://webadaptor_machine_name.bcc.scgov.local/portal Description: HTTP port: 80 HTTPS port: 443 Once registered, the web adaptor shows: https://portal_machine_name.bcc.scgov.local:7443 as the url and shows the web server machine name as the machine registered with portal: scggiswb01pw.bcc.scgov.local We use F5 so our web server does not have a DNS entry. The F5 handles the redirect from web_server_machine_name to public_facing_url_name (F5Name.scgov.net). When I register the webadaptor with Portal from the webserver, I bypass the F5 first by uncommenting the IP addresses in my Hosts.ini file. We could never get it to register otherwise. {"WebContextURL":"https://F5Name.scgov.net/portal","privatePortalURL":"https://PortalDNSName.scgov.net:7443/arcgis","disableSignup":true} {"appId":"arcgisonline","redirectURIs":["https://ags3.scgov.net","https://PortalDNSName.scgov.net","https://webserver_machine_name.bcc.scgov.local","https://portal_machine_name.bcc.scgov.local","*.bcc.scgov.local","*.scgov.net","*.arcgis.com"]} We have found, for us anyway, the order of the redirect uri's does matter. So the user comes into portal at ags3, is redirected to PortalDNSName. The machine names then associate with the DNS
... View more
08-16-2019
09:36 AM
|
0
|
1
|
6951
|
|
POST
|
I just answered my own question - yes you do if you want to take advantage of Quick Capture, etc. According to the My Esri | Common Questions: For eligible customers, ArcGIS Enterprise 10.7.1 includes two new applications: ArcGIS Maps for Office 365 (included in the office apps bundle) and ArcGIS QuickCapture (included in the field apps bundle and available as an add-on application). To license these applications, you must generate a ArcGIS Enterprise 10.7.1 portal license file. If you have previously generated an ArcGIS Enterprise 10.7 portal license with users and apps and want to make them available to license in your 10.7.1 file, you will need to cancel your 10.7 license file first. To cancel your license file, visit the Manage License Files page here. Note that you will need to include all users and all applications in your portal 10.7.1 license as it will overwrite the existing license in your software. If you previously licensed 10.7 Portal for ArcGIS and do not wish to include these applications, you do not need to relicense 10.7.1 to upgrade to 10.7.1. ArcGIS Server licensing is unchanged at 10.7.1. ArcGIS Enterprise 10.7.1 software downloads are available under the downloads page.
... View more
08-09-2019
01:27 PM
|
0
|
0
|
1068
|
|
POST
|
Hi - this is related to: https://community.esri.com/message/840875-re-arcenterprise-107-portal-licence-file?commentID=840875#comment-840875 Does anyone know if I need to create a new portal license file at 10.7.1 to take advantage of the new QuickCapture at 10.7.1? Thanks, David
... View more
08-09-2019
01:18 PM
|
0
|
1
|
1270
|
|
POST
|
Hi Nick - No, I don't think anything has been reported. At the moment, for us anyway, the errors have decreased but not disappeared entirely. It's hard to say if our Open Data site is the only culprit, but it's certainly one of them. As far as what attributes are picked for mapping and charting, I have no idea how they are doing that.
... View more
08-08-2019
06:51 AM
|
0
|
1
|
1933
|
|
POST
|
oh also I can say that the maintainAttachments env var is being honored so there is something somewhere that was missed
... View more
08-07-2019
01:45 PM
|
0
|
0
|
3916
|
|
POST
|
Really? Respectfully I disagree because we just ran the exact same thing in python IDLE 2.7.16 with the overwrite environment setting set to true and it works there just fine without having to run a delete first. More - the ArcPro 2.4 GP tool runs and honors the overall GP environment setting, as one would expect. But to answer your question, yes delete does work in python IDLE 3.6.8, then of course the tool works. This occurs whether running against the default python environment or my updated (arcgis package 1.6.2) cloned environment.
... View more
08-07-2019
01:31 PM
|
0
|
1
|
3916
|
|
POST
|
My mistake - the idle is honoring the setting: import arcpy
from arcpy import env
arcpy.env.overwriteOutput = True
environments = arcpy.ListEnvironments()
# Sort the environment list, disregarding capitalization
#
environments.sort(key=str.lower)
for environment in environments:
# As the environment is passed as a variable, use Python's getattr
# to evaluate the environment's value
#
env_value = getattr(arcpy.env, environment)
# Format and print each environment and its current setting
#
print("{0:<30}: {1}".format(environment, env_value))
... View more
08-07-2019
10:14 AM
|
0
|
3
|
3916
|
|
POST
|
I appreciate the response. Executing the Delete is not an issue and I can easily do that. However, I shouldn't have to the python 3.16.8 IDLE should honor the environment setting and it's not. That is the issue.
... View more
08-07-2019
09:23 AM
|
0
|
4
|
3916
|
|
POST
|
Hello - I upgraded to Pro to 2.4 yesterday and lo and behold my python scripts for overwriting feature classes using the FeatureClassToFeatureClass_conversion tool no longer honors the arcpy.env.overwriteOutput = True environment setting. A whole bunch of my data management scripts depend on this! The script now keeps telling me that my feature class already exists. Of course it does, I'm doing an overwrite. Or at least I did. This was working just fine at 2.1, 2.2, 2.3.x I can't use Copy for most of my layers because I don't want bring over (in some cases) dozens of related tables.... Example: # Import system modules
import sys, os, arcpy, time, smtplib
from datetime import date, timedelta
from arcpy import env
# Local variables...
message = ""
current_time = time.asctime()
todaysDate = date.today()
priorYear = str(todaysDate - timedelta(days=547)) #547
starting_time = time.time()
arcpy.SetLogHistory(False)
arcpy.env.configKeyword= "DEFAULTS"
arcpy.env.overwriteOutput = True
arcpy.env.maintainAttachments = False
try:
env.workspace = r"\\scggisis01pw\\agsfed\\data-store\\VantagePoint\\Data" #\\scggisis01pw\\agsfed
coordinate_system = r"C:\\StageDbsAE\\CoordinateSystems.gdb\\WebMercator"
env.outputCoordinateSystem = coordinate_system
env.geographicTransformations = "NAD_1983_HARN_To_WGS_1984_2"
for fc in arcpy.ListFeatureClasses():
outLocation = r"\\scggisis01pw\\agsfed\\data-store\\VantagePoint\\Data\\VpAnno.gdb\\VantagePointLayers" # VantagePoint.gdb\
outFC = fc[:-4] #neg slice for shapes, 4 from right
#if outFC != "UtilityBilling":
print (outLocation + "\\" + outFC)
#disableFC = outLocation + "\\" + outFC
arcpy.FeatureClassToFeatureClass_conversion(fc, outLocation, outFC)
message = message + "\n" + "Added Features: " + outFC
#arcpy.RemoveSpatialIndex_management(disableFC)
#arcpy.AddSpatialIndex_management(disableFC)
#message = message + "\n" + "Handeld Indexing: " + disableFC
#else:
# pass
except Exception:
# If an error occurred, print line number and error message
import traceback, sys
tb = sys.exc_info()[2]
e = sys.exc_info()[1]
#print(e.args[0])
#print "Line %i" % tb.tb_lineno
message = message + "\n" + "Line %i" % tb.tb_lineno
message = message + "\n" + str(e)
... View more
08-07-2019
07:35 AM
|
0
|
11
|
5144
|
|
POST
|
No and I've been working non stop on it for like 160 hours. Something in our security or system environment is preventing the tools from publishing the package to the tile data store. Or a tile data store bug. Or a portal bug. Can't tell. The couch db log keeps says 'you are not authorized' I'm working with a consultant, GIS Inc. but we are stuck.
... View more
08-07-2019
07:16 AM
|
0
|
6
|
4783
|
|
POST
|
In case anybody is wondering the hosted scene layer can't be created from portal because of some restriction to the Couch Db: [error] 2019-07-23T19:37:49.051000Z [email protected] <0.2402.0> 3f499b58bc rexi_server: from: [email protected](<0.2177.0>) mfa: fabric_rpc:open_shard/2 throw:{unauthorized,<<"You are not authorized to access this db.">>} [{couch_db,open,2,[{file,"src/couch_db.erl"},{line,154}]},{fabric_rpc,open_shard,2,[{file,"src/fabric_rpc.erl"},{line,267}]},{rexi_server,init_p,3,[{file,"src/rexi_server.erl"},{line,140}]}] something in the arcgiserver service account won't extract from the content directory in portal and create the file in the couch db
... View more
07-23-2019
01:57 PM
|
0
|
0
|
4782
|
|
IDEA
|
I'm voting this up because yes it would be nice to be able to config the search return's selection graphic AND have the option to persist the graphic on-screen until the search result is removed from the search widget. Thanks, David
... View more
07-23-2019
01:51 PM
|
1
|
0
|
3989
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-01-2026 05:41 AM | |
| 1 | 06-26-2026 12:39 PM | |
| 6 | 06-25-2026 07:23 AM | |
| 1 | 06-17-2026 06:04 AM | |
| 1 | 06-08-2026 08:37 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|