|
POST
|
Hi @ThomasHervey1 - thanks for looking at it. We're looking into where those special characters came from. It certainly does seem that they should be ignored, at least, if not stripped entirely, from submitted values for the URL attribute.
... View more
09-21-2023
04:32 AM
|
0
|
0
|
2069
|
|
POST
|
This does not appear to be fixed a week later... I've tried accessing this dataset a few different ways and still get the API error message in the download screen. https://opdgig.dos.ny.gov/datasets/NYSDOS::oil-gas-and-other-regulated-wells/explore
... View more
09-20-2023
07:12 AM
|
0
|
2
|
2089
|
|
IDEA
|
When photo attachments are stored in the feature layer, and later accessed from Power Apps, for example, they are not rotated correctly based on the orientation of the camera. While it would be great if Power Apps got better, this also suggested that some very basic image transformation capabilities in Power Automate would be really useful and powerful for those of building around and in the Power platform. For my workflow, to be able to pre-process photos to rotate them 90 or 180 or 270 degrees as a Power Automate pre-processing step and have them stored as actually rotated pixels, instead of depending on the client display to respect the photo orientation metadata, would be very nice. Then if it can do that, doing some basic resizing and cropping would not seem to be a huge extra lift. All images are sideways ....
... View more
03-09-2023
12:44 PM
|
0
|
2
|
1896
|
|
POST
|
Hi @ErichSchreier - sadly, last I checked, you cannot embed <SCRIPT> tags (and thusly JavaScript) into a Hub site. I think it is actually more generally just not available in AGOL at all. Esri has noted in the past that they have safety and stability concerns around allowing embedded JavaScript on their sites. I'm not sure if this is exhaustive for Hub specifically, but it is a good place to start: https://doc.arcgis.com/en/arcgis-online/reference/supported-html.htm If you need a custom widget of some sort on your site the only real option is to host it elsewhere as a separate web page, and embed that page / URL into your Hub site with an iFrame.
... View more
05-24-2022
06:38 PM
|
0
|
0
|
1209
|
|
POST
|
Oh - sorry - I thought had Esri had the ability to just ignore the sharing settings. Should be viewable. Had to change the map for privacy reasons.
... View more
01-26-2022
02:25 PM
|
0
|
2
|
1507
|
|
POST
|
Here is the current Hub... thanks! https://cwd-smp-cambridgegis.hub.arcgis.com/
... View more
01-26-2022
02:17 PM
|
0
|
4
|
1510
|
|
POST
|
Do you want this to be something where it is always an option to expand full screen? Or would it be better / acceptable for it to always be full screen?
... View more
01-26-2022
10:16 AM
|
0
|
0
|
2760
|
|
POST
|
Do you have an entire ArcGIS Enterprise setup, or at least an Enterprise GeoDatabase AND and ArcGIS Server? If you can expose the data via a map or feature service from your ArcGIS Server (or Portal), you can then create an item in ArcGIS Online that basically links to that map/feature service on your ArcGIS Server. If you then add that ArcGIS Online item to a map or Hub or whatever, and view it, it is literally drawing the data directly from your Enterprise GeoDatabase. Thus, as the database is updated, the maps and dashboards built in AGOL would update automatically.
... View more
01-26-2022
10:14 AM
|
0
|
1
|
1998
|
|
POST
|
I am laying out a new Hub site. I put a 500px high map next to a 500px high chart in the same row. The margins for the map and chart make them not show on page lined up with each other. See screen capture. Why is the map higher in the row compared to the charts? Why does the chart have a right margin and the map does not? I have not customized the theme or CSS for the Hub site at all.
... View more
01-26-2022
10:10 AM
|
1
|
6
|
1540
|
|
POST
|
We are trying to run a python script on our ArcGIS Server at the command line. It is failing when it gets to the ExtractPackage procedure call... claiming the parameters are invalid. I've inspected the parameters and they seem legit. The script runs properly as a toolbox script in ArcPro on the same server. So I am wondering if there is some difference in the parameter expectations between calling ExtractPackage() in the server's Python environment versus whatever ArcPro's python environment is? I realize people might want to troubleshoot by seeing the source code for the script. It is a long script I didn't write, and I'm not sure I can share the source yet. But I can share the few lines that make the call, and show the console output... keeping in mind this works in ArcPro. arcpy.AddMessage("Extraction Folder: " + extractiondir) # debug message arcpy.AddMessage(layerpackagelist) # debug message for layerNum, layerpackage in enumerate(layerpackagelist, start=1): arcpy.AddMessage("Extracting layer package {}: {}".format(layerNum, layerpackage)) arcpy.management.ExtractPackage(in_package = layerpackage, output_folder = extractiondir) Type "help", "copyright", "credits" or "license" for more information. >>> from pyt_code import * >>> foo = RaBETAnalysisTool() >>> foo.execute(foo.getParameterInfo(),foo.getParameterInfo()) Beginning execution Extraction Folder: C:\Users\Administrator\Desktop\RaBET_20210730\debugOutput\Nick4\extraction ['C:\\Users\\Administrator\\Documents\\ArcGIS\\Packages\\WC_MLRA_69_2000_2003.lyr_86ceb7\\v104\\0000E__RaBETv7_DEMO_Master_20180923_demo_output_directory_WC_MLRA_69_2000_2003tmp_lyr.lyr', 'C:\\Users\\Administrator\\Documents\\ArcGIS\\Packages\\WC_MLRA_69_2000_2003.lyr_86ceb7\\v104\\0001meta_MLRA_69_2000_2003.lyr'] Extracting layer package 1: C:\Users\Administrator\Documents\ArcGIS\Packages\WC_MLRA_69_2000_2003.lyr_86ceb7\v104\0000E__RaBETv7_DEMO_Master_20180923_demo_output_directory_WC_MLRA_69_2000_2003tmp_lyr.lyr Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\arcgispro-py3\pyt_code.py", line 273, in execute arcpy.management.ExtractPackage(in_package = layerpackage, output_folder = extractiondir) File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\Resources\ArcPy\arcpy\management.py", line 10877, in ExtractPackage raise e File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\Resources\ArcPy\arcpy\management.py", line 10874, in ExtractPackage retval = convertArcObjectToPythonObject(gp.ExtractPackage_management(*gp_fixargs((in_package, output_folder, cache_package, storage_format_type, create_ready_to_serve_format), True))) File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\Resources\ArcPy\arcpy\geoprocessing\_base.py", line 511, in <lambda> return lambda *args: val(*gp_fixargs(args, True)) arcgisscripting.ExecuteError: Failed to execute. Parameters are not valid. ERROR 000814: Invalid file type Failed to execute (ExtractPackage).
... View more
10-04-2021
01:49 PM
|
0
|
0
|
842
|
|
POST
|
Ok I figured it out! The fix was buried in replies to a similar problem and the key is in that "warning" about the web_adaptor.properties configuration file. If you install Tomcat via a package manager such as I had on Ubuntu, it sets up Tomcat for you and creates the Tomcat user, and puts config files in smart places... does lots of useful things. Makes the Tomcat user a service account that has no login, and no home folder. That's the problem. The Tomcat user needs a home folder. And just as importantly, the Tomcat user needs that home folder to exist and be writeable before you run the ArcGIS WebAdaptor "Setup" tool. The Setup tool drops a properties file (confusingly _not_ named web_adaptor.properties despite the error message) into the Tomcat user's home folder. After Setup runs, and you then deploy your WAR file, the error I had shown in this post was replaced by the proper WebAdaptor config screen. If you do not know how to make the home folder it is pretty easy. Assuming you are either logged in as root, or just put a 'sudo' in front of these... mkdir /home/tomcat chown -R tomcat:tomcat /home/tomcat vipw find the tomcat user line in the passwd file, and replace the home folder location with /home/tomcat, and the login shell can be changed to /bin/bash, at least temporarily. After Setup has run you can change the shell back to /bin/false or whatever it was before.
... View more
08-24-2021
07:54 AM
|
4
|
0
|
5929
|
|
POST
|
The 10.9 web adaptor on Linux is giving me trouble. I have a machine with Ubuntu 20.04, per the requirements. I tried initially with Tomcat 9.0.31. Ran into these issues, so I manually reinstalled Tomcat 9.0.19 per the requirements. I have the Tomcat server configured to use ports 80 and 443 instead of the default. The certificate/SSL setup is valid and working. The "arcgis.war" file deploys to Tomcat just fine. No error. No matter what I've tried, the Web Adaptor only gives me this web page ... (no, the URL is not secret) I have tried to use the CLI (on the same machine as Tomcat) to configure it: ./configurewebadaptor.sh -m server -w http://geodata109-www.stone-env.net/arcgis/webadaptor -g https://geodata109-ags.stone-env.net:6443 -u Nope -p HaHaNope -a false But this results in the error "Unable to connect to WebAdaptor URL : https://geodata109-www.stone-env.net/arcgis/webadaptor" I've tried just using "localhost" in all of my configuration instead, but that has resulted in the same issue. It seems that while the adaptor is deployed and accessible, it is missing some key "something" and there is really nothing in the documentation that clarifies what is missing. The only error in the Catalina log is this: "20-Aug-2021 18:07:25.628 SEVERE [https-openssl-apr-443-exec-22] com.esri.arcgis.server.wa.servlet.WebAdaptorConfigServlet.service null" I get a warning which does seem relevant, but I see no documentation anywhere about this file: "20-Aug-2021 18:09:59.269 WARNING [https-openssl-apr-443-exec-30] com.esri.arcgis.server.wa.data.Config.initialize Unable to load web_adaptor.properties configuration file" So friends ... any ideas?
... View more
08-20-2021
11:11 AM
|
0
|
2
|
5990
|
|
POST
|
Hi @gisgeeknorth - I do not believe there is a way to do this. Hub strips out any javascript you would use to create or update persisted settings such as with cookies. So the only way that I made the disclaimer work was by using pure CSS, which does not get stripped out. But CSS has no way that I know of to persist knowledge of whether a user has clicked on it or not. This is why the Hub team needs to create a disclaimer option for the product 🙂
... View more
02-24-2021
05:56 AM
|
0
|
1
|
3413
|
|
POST
|
HI @Anonymous User - Sadly this is just sort of the way it is. My suggestion is to keep the code for your disclaimer in a separate file. Remove it from your site when you need to edit your site, then paste it back in. Lame, but until Hub folks give us a better option, that's just the limitation of this particular solution.
... View more
02-24-2021
05:53 AM
|
0
|
0
|
3413
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-23-2024 05:47 AM | |
| 1 | 06-07-2023 10:24 AM | |
| 4 | 08-24-2021 07:54 AM | |
| 1 | 01-26-2022 10:10 AM | |
| 1 | 04-27-2020 01:01 PM |
| Online Status |
Offline
|
| Date Last Visited |
10-16-2025
01:42 PM
|