POST
|
Thank you Ryan, I did NOT pick up on the fact that both servers must have the same version of Portal (you're right, mine are not). I suppose this renders my question moot. I think I received some bad advice from the get-go; I certainly appreciate your prompt response!
... View more
03-11-2025
08:27 AM
|
0
|
0
|
339
|
POST
|
Hello, I want to test out Enterprise 11.3 on a separate machine using a newer OS. Our production environment is Enterprise 10.9.1 and so the only option I have to migrate all the core datasets it seems is by using the joinSite operation. Upon researching this, I found the documentation says "you cannot have created your new Portal Site yet". How crucial is this? Of course I created the new Portal Site with the install as none of the documentation talks about possibly waiting for migration reasons. Is it still worth trying the joinSite to move all my data over to the new server or am I looking at having to do this manually or possibly recreating the new Portal? I am not sure which would take longer at this point.
... View more
03-11-2025
06:55 AM
|
0
|
2
|
359
|
POST
|
Thank you kindly for your responses! In the end, I was able to save the deployment with the help of ESRI Technical support. We removed the web adaptors, reconfigured the IIS binding to not have a website associated with it, changed the SSL back to self-signed certificate for the backend and then added back the two web adaptors. It's all running smoothly now and yes, all components are on one machine. I appreciate your comments! I had never heard of Sectigo Certs before.
... View more
12-09-2024
12:39 PM
|
0
|
0
|
678
|
POST
|
Hello, I installed Enterprise for ArcGIS 11.3 in a Testing Environment and Portal for ArcGIS with them both federated together in a Windows Server environment (SQL). Our IT Dept. then created a DNS alias on the Server so I could add a new site certificate from Go Daddy (wildcard) that they had acquired. I am now unable to reconfigure the web adaptors or access my Site. Is it even possible or do I have to recreate the entire architecture? Thanks!
... View more
11-19-2024
11:31 AM
|
0
|
3
|
822
|
POST
|
I suspect it may have something to do with the symbology settings then. Definitely add some symbology to display in the most basic way possible first to see if your data "appears" and then make sure there are no filters or definition queries applied (If you published from ArcPro, there could have been settings on the symbology or a definition query that may have produced these results). When this happens to me, the symbology is always the culprit.
... View more
05-06-2024
12:58 PM
|
0
|
0
|
1217
|
POST
|
Hello, for context, we have a 10.9.1 Enterprise federated with Portal and I am using ArcPro 2.9.10. Our coder authored an expression for a pop up of a civic address point to get data from a related table (although the relationship class is moot). The expression works in an ArcPro project but not when I use the exact same data in a web map in Portal. Any thoughts on why this might be? The point feature class is CivicPt that has the pop up. It has a matching field with the CA_Civtab table called MUCIVID. BU_CODE is another field in the same table we want to retrieve after searching for the row with the same MUCIVID as the selected point. The Arcade code is below: //get extra civic data from CA_civtab table var tbl = FeatureSetByName($datastore,"CA_civtab") Console(Count(tbl)) //get the actual civic of interest from the civic layer (points) using the MUCIVID var CivicID = $feature.MUCIVID Console(CivicID) //create sql querry var sql = "MUCIVID = '" + CivicID + "'" Console(sql) //filter the table based on the MUCIVID of interest (sql), call the result related_record var related_record = Filter(tbl, sql) console(related_record) //this console returns: object, FeaturesSet ///determine how many related records there are var cnt = Count(related_record) Console("cnt=" + cnt) //count does return one related record here (yay!) //create a variable (history) to store the data of interest for the related record var history = "" if (cnt > 0) { for (var x in related_record) { var txt_BU_CODE = Text(x.BU_CODE) history += txt_BU_CODE + TextFormatting.NewLine Console(history) }} else { history = "No Data Available" } return history
... View more
02-27-2024
11:23 AM
|
0
|
0
|
574
|
POST
|
Thank you for your response. You've confirmed a lot of what I was suspecting and experiencing with our testing environment. Much appreciated!
... View more
09-11-2023
04:20 AM
|
0
|
0
|
3675
|
POST
|
Hi all, I'm working within an SQL Server Windows based GDB Enterprise federated with Portal for ArcGIS 10.9.1. My question is whether there is a difference between the three different ways of getting a table into Portal that affects editors working on the SDE/Default data on the SQL Server? I want to limit any effects that might slow down the technicians editing in their versions but I can't find documentation anywhere on how published data affects the underlying SDE/Default SQL GDB. Here are the three methods I have tried: 1. Publish stand alone table from ArcPro - results in a hosted layer. Has the option to be copied or referenced 2. Publish during bulk layers from Data Store process - results in a table that looks like a feature layer 3. Publish as a Map Service from ArcPro with other feature classes - results in a table that keeps it's relationship classes but is still not hosted. Can be copied or referenced My burning questions: - Are referenced layers causing calls to go to our SDE/Default SQL GDB and potentially slowing down editors' access to the same data? - If we 'copy' the data to the Portal (and not choose referenced), will changes editors make on the SQL GDB automatically appear or does one then need to set up regular 'syncing'? I am just curious as to what some other folks' are doing as part of their 'Best Practices'? Thanks!
... View more
09-07-2023
09:18 AM
|
0
|
2
|
3804
|
POST
|
I've been publishing Map Services to my Portal from an old version of ArcMap as a work-around. It won't work forever but has allowed groups to appear in Web Maps for now and carries over to Web Applications as well.
... View more
11-23-2022
09:58 AM
|
1
|
0
|
476
|
POST
|
Hello all, This may be a moot point but is there any advantage/disadvantage for either adding a feature class to a map in ArcPro from your Enterprise Geodatabase connection or adding the same dataset from the federated Portal source? They are one and the same dataset but I'm curious to know if any functionality or geoprocessing is changed by the way you add the data into your map within an ArcPro project? Our organization is transitioning from ArcMap to ArcPro and I wish to advise all our Technicians' on how to properly set up ArcPro projects the first time. Perhaps there is no difference unless you are trying to edit or publish web maps and apps, just not sure. Many thanks!
... View more
04-19-2022
07:09 AM
|
0
|
0
|
464
|
IDEA
|
I'm no expert on this but the only way I can get them to work is to publish Map Services first to Portal using data that have Relationship Classes defined in the geodatabase. Then the Pop-up configuration will then recognize that there is related table data. I have Web Maps being consumed by Web Apps with multiple Map Services added in with multiple feature classes each for organizing the data categories. Now just trying to learn Arcade to make the Pop-ups more functional, this is definitely a headache!
... View more
05-04-2021
07:44 AM
|
0
|
0
|
3682
|
POST
|
I would also like to be able to control which feature layer gets displayed first in a pop-up window with multiple feature layer returns. It would greatly enhance many existing Web Apps for my Organization. Not sure where I go to vote but I will definitely find it! Thanks 🙂
... View more
01-14-2021
10:22 AM
|
2
|
1
|
2469
|
POST
|
The Code Sharing page doesn't have a category for "Arcade" language or a sub category for Portal for ArcGIS. I was searching for help on coding pop ups using Arcade in Portal but have been coming up with nothing. Just thought I would send feedback since these two categories seem to be missing. Thanks!
... View more
11-04-2020
06:47 AM
|
1
|
0
|
511
|
POST
|
I figured this out. I guess I posted my question too soon; a little sheepish to admit that I forgot to add the HTML Popup settings before publishing the map service to Portal! Ah well, live and learn.
... View more
09-29-2020
05:50 AM
|
0
|
0
|
1114
|
POST
|
I am creating a Web App in Portal (10.7.1) using a Web Map that contains multiple map services. One example of the linked documents I need the users to be able to retrieve is a Survey Plan. The map service has a "Survey Plan" polygon feature layer with a pop up that will return the Survey Plan Number and I wish to have a link to each plan's actual PDF document that will open up in the Web App. The survey plans are currently stored on a Sharepoint site but could easily be move to a internal network folder location if that works better. Do I have to register the Sharepoint site with the Data Store or add another column to the survey plan feature class/layer with the URL? Is there even a way to do this? Many thanks for any help!
... View more
09-28-2020
09:47 AM
|
0
|
1
|
1135
|
Title | Kudos | Posted |
---|---|---|
1 | 11-23-2022 09:58 AM | |
2 | 01-14-2021 10:22 AM | |
1 | 11-04-2020 06:47 AM | |
1 | 03-13-2020 06:54 AM |
Online Status |
Offline
|
Date Last Visited |
08-26-2025
04:50 AM
|