|
POST
|
Hello! I am testing a deployment in Azure, and I am still figuring out things as the only deployments I have worked so far are on physical machines. I deployed using the cloud builder for Azure, single machine, 11.3, I did not set up a remote access. I now need to extend the Server license to Data interoperability, and I need to install the FME Package...how can I do it? Since there is not remote access set up am I stuck? this is a more general question, what do I need to do if I need to tackle these kinds of issues in the future? Thanks!
... View more
11-04-2024
01:57 AM
|
0
|
2
|
1295
|
|
POST
|
To add on this: the issue is half solved, the issue of yesterday is sorted (not sure how) but I have a new one. Yesterday I switched off the Azure machines, this morning I put them on again and I could access the layers. I am the owner of both distributed groups and the admin of organizations. I added 2 new users in the AGOL group but they cannot see it same issue the item is visible but data isn't accessible. Logged as one those accounts, If I refresh the item in AGOL, I get a login page. But this AGOL account does not have an account in Enterprise.
... View more
11-01-2024
04:35 AM
|
0
|
0
|
982
|
|
POST
|
Hi @JakeSkinner Thanks for your reply. My current priority is to have real-time data of a referenced SQL database published on a service on Enterprise and available on AGOL. I set up a bi-directional (but I can change it into Enterprise --> AGOL as this is what I need. To clarify: the layer that I try to access is hosted in Enterprise and I am opening in AGOL. Items are referenced Enterprise 11.3
... View more
10-31-2024
12:35 PM
|
0
|
1
|
1020
|
|
POST
|
Hello, I set up an Enterprise instance in Azure. Self signed certificate. (I am quite sure the issue is here, I am very unfamiliar with it, though) I set up a distributed collaboration with AGOL and everything is ok. I see the group and the content. But, if I try to access the layer I get an error: "There was an error" What I need to configure in order to fix the things? Thanks!
... View more
10-31-2024
09:23 AM
|
0
|
3
|
1050
|
|
POST
|
Thank you @RobertKrisher , I tested the connection to the database in Notebooks and it works, so it is going to be the first thing I will try to do tomorrow. ATM I need the data as is so probably I will not need Data Interoperability at all. Question: when I publish a service on by referring the registered database on Enterprise I see the updates real-time every time something changes. If I implement the Notebook, this is going to be a update (the notebook runs and only if it runs it will e.g. truncate/append), correct? I will not get a direct connection. Thanks again!
... View more
10-31-2024
09:15 AM
|
0
|
1
|
1899
|
|
POST
|
Hello, since we are thinking of starting a project without involving ArcGIS Enterprise, our biggest concern is the access of a SQL server database (not geoenabled) I am thinking of using: ArcGIS Notebook Data interoperability on PRO (but this means that pro need to run al the time?)) Data pipeline seems to be unusable for this purpose. If the two mentioned methods are both fine, do you have experience with them, what should I consider, is there any other way I could/should consider? Thanks!
... View more
10-31-2024
07:45 AM
|
0
|
4
|
1930
|
|
POST
|
Hi! We loaded some images as Tiled Imagery Layer (as mosaicked image) in ArcGIS online and only room level is available. The size of all images is about 200GB I loaded only 2 images to test and they show at all levels. 2GB the 2 pictures I tested. what can it be? Do pyramids need to be created in ArcGIS Pro and then loaded as well maybe, but I thought it was generated by ArcGIS Imagery. Thanks!
... View more
10-23-2024
07:06 AM
|
0
|
0
|
960
|
|
POST
|
Hi @CodyPatterson thank you! I will reply to the first part of your answer, I need to digest the second one 😅 I didn't think of a distributed collaboration, but could be a game changer for many reason in our small testing environment. The external sharing isn't permanent, but needs to be tested from outside. Without changing anything of the previous mentioned Enterprise configuration: I set it up and I can see the layers shared listed in the Host (AGOL), even when I try to add it to a map they are there. The issue is: the data is not accessible both from within or outside the network. So there is still something I have to do in the system to make the data available I guess.
... View more
10-21-2024
07:22 AM
|
0
|
0
|
1376
|
|
POST
|
Hello, I need to expose ArcGIS Enterprise in order to add a service in AGOL. I need to figure out what to ask the IT for. Current implementation: ArcGIS Enterprise accessible only internally via "https://nameOfTheMachine.domain....." Self signed certificate Web adaptor(s) registered with the machine name. I've read about many options but I am not sure about what I should do exactly. I am confused. Open the port on firewall? Which port? Port forwarding? Which port? CA certificate? A Domain certificate is enough? I need to figure out what is the proper way to do this as I've always used Enterprise within my network. Any documentation or suggestion would be great! Thank you.
... View more
10-21-2024
06:14 AM
|
0
|
2
|
1403
|
|
POST
|
Hi @ThomasHoman , you are right. The IT had to reconfigure the custom domain/DNS that was sort of expired. Anyway, they fixed it and now it works. What was worrying me was that I could not access it at all, not even in editing mode.
... View more
08-28-2024
12:35 AM
|
0
|
1
|
1371
|
|
POST
|
Hi. A Hub has been running for years with a custom domain. Since last week the site the site cannot be found. Logged in in Arcgis.com I cannot view or configure. Any idea? Thanks
... View more
08-27-2024
03:43 AM
|
0
|
3
|
1428
|
|
POST
|
Hello! I have a web form that calculates an incremental ID and then concatenates it to form a refNumber. It works fine until you decide to update the point: let's say the position is incorrect and you need to move it. this is the code and below are the results: the number should stay the same as it is the same point: // Get the current feature's newID field value
var currentID = $feature.newID;
// Check if currentID is null or empty, meaning this feature needs a new ID
if (IsEmpty(currentID)) {
// Get the maximum value of the newID field from all features in layerName
var maxID = Max(FeatureSetByName($datastore, "layerName", ["newID"]), "newID");
return maxID + 1;
} else {
// If currentID is already set, return the existing currentID
return currentID;
} create a point with ID 5 and then moved it becomes 6 Any idea? Thanks!
... View more
08-26-2024
03:16 AM
|
0
|
2
|
1147
|
|
POST
|
Thank you @ToddW_stl, I wasn't aware of the limitation. For the time being, since I need the files in view mode only irrespective if they are loaded via Survey or other Apps, I decided to solve with a Dashboard that contains only a "Detail" element and a URL parameter link. I had this idea after struggling with the concat() of your solution 😀 Below is the calculation. the solution proposed by Zachary could be the best if I manage to get ALL attachments within the Survey, I'll test it later but the dashboard seems to be a good solution to me.
... View more
07-23-2024
06:17 AM
|
1
|
0
|
5607
|
|
POST
|
Hi @ToddW_stl thanks for sharing this. Your solution works beautifully and I also tested the new survey with only the attachments and it is perfect. here is an issue tough: the visible attachments are only those that are added from a survey. I have 5 surveys to be used in a sequence and the polygon is created from a webmap or PRO, the surveyor is supposed to see the documentation loaded from the office. I created a polygon in a webmap and I attached a pdf and a jpg. I open the survey and the files are not showing, I add a new pdf and a new jpg from the survey, I open the same survey or I open another one that reads the same FL and the files are visible, the ones added from the web map are not there yet. Any idea? Thanks
... View more
07-22-2024
08:51 AM
|
0
|
2
|
5689
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 4 | 3 weeks ago | |
| 1 | 11-04-2025 08:07 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|