|
POST
|
Hi, Are there any samples of filled in templates for CloudFormation? Maybe on github or someplace. I think I have followed the template setup but only part of the parameters load and the rest I need to do manually in the GUI. It would be really nice to have a working sample to compare to. Frustrating to need to re-enter parameters every time. I do not see a way to export after I make the changes on line
... View more
12-16-2021
01:21 PM
|
0
|
4
|
2968
|
|
POST
|
Runtime is a completely new API built from the ground up.
... View more
12-15-2021
07:23 AM
|
1
|
0
|
1628
|
|
POST
|
Did you find a good solution for this? I have never looked into these tools previously. I find it rather odd that the toolsets for using AWS aren't built around the idea of using Certificate Manager.
... View more
12-10-2021
01:26 PM
|
0
|
0
|
2051
|
|
POST
|
Hi, Trying to get some clarity on the 100.6 lifecycle (Xamarin Forms) in relation to iOS 15.x. With this going into mature support about the time of iOS 15.x release, is the 100.6 considered fully supported on iOS 15.x. Thanks @MichaelBranscomb @Nicholas-Furness
... View more
11-11-2021
01:28 PM
|
0
|
1
|
819
|
|
POST
|
A year in a half later, still have never figured out a way to query a date field using Runtime API
... View more
10-21-2021
01:52 PM
|
0
|
0
|
1445
|
|
POST
|
I assume you meant ArcGIS online not ArcGIS nuget. If you use the challenge handler pattern, it will only request a new token when it is required. Its a WPF sample but same in Xamarin https://developers.arcgis.com/net/wpf/sample-code/arcgis-token-challenge/
... View more
10-11-2021
12:08 PM
|
1
|
0
|
1439
|
|
POST
|
To add to Morten's information @dotMorten_esri wrote: The Name property is on the parent class. It just looks like the inspector window for some reason isn't showing the parent class. Or it could be the iOS Linker purging it if it isn't being used. The issue does seem to be the iOS Linker. The only place Name is used in the application is as a DisplayMemberPath in the control in Xaml. This must not give the linker enough info. I added this code which doesn't do anything besides using the Name property if ( domain != null )
{
foreach (var codedValue in domain.CodedValues)
{
Console.WriteLine(codedValue.Name);
}
} With this code added everything behaves correctly
... View more
09-30-2021
01:00 PM
|
0
|
0
|
1196
|
|
POST
|
In 20+ years of programming I have seen some odd things, this may be the oddest. This is for a Xamarin Forms app running on iOS. Currently using 100.6 API In our app we use domains as a bound property on Picker controls and use the Name as the display field. All pretty straight forward stuff. This is been working for ages without issue. Recently we started to see an issue with the picker controls not loading. After much investigation I came to notice in the debugger that the CodeValue objects only have a Code property no Name property. It is just not there (see below). If that was not strange enough. It only happens on devices, if I run the application on the iOS simulator everything behaves as expected. We see no errors, and as stated it is not that the Name property is empty, it is not on the object. Also we see this on many different iOS versions from 14.3-15.0. If I change the display property of the picker the control loads as expected, but the user has no idea what the codes mean
... View more
09-30-2021
11:57 AM
|
0
|
2
|
1245
|
|
POST
|
I have a WAB widget tool that selects features. If the attribute table is open when the features are selected they show up as selected. However, if the table is not open until after the features are selected they are not shown as selected. Is there a way to have these features show up as selected when the table is opened after the selection is made? Thanks -Joe
... View more
09-07-2021
11:12 AM
|
0
|
0
|
423
|
|
POST
|
A graphic is a GeoElement, so has an Attributes property. I would think sticking with the graphic in a GraphicsOverlay would render faster.
... View more
09-07-2021
08:47 AM
|
0
|
3
|
4468
|
|
POST
|
Wish I had an answer, but I will certainly add my name as someone who would like to understand how the redirect Urls work. I am yet to find a good explanation
... View more
08-04-2021
12:04 PM
|
0
|
0
|
1866
|
|
POST
|
Hi, I setup a Xamarin Forms application to use OAuth authentication in an iOS application based on the OAuth Security sample. Everything works great, but I am wondering if there is a way to have more control on the look of the popup. It would great to change the sizing a little. Also I would like to remove the buttons for the other login methods (github, facebook, etc.) Thanks -Joe
... View more
08-03-2021
04:24 PM
|
0
|
0
|
815
|
|
POST
|
So has no one ever done this (successfully)? Is there anyone at esri that has insight to this issue? @JoseBanuelos @AndyGup @JohnGrayson
... View more
07-26-2021
08:04 AM
|
0
|
0
|
1437
|
|
POST
|
ArcGIS Enterprise is still licensed based on user counts. You don't simply buy ArcGIS Enterprise and use it however you want. Installing ArcGIS Server without the portal piece would be a different story
... View more
07-22-2021
11:42 AM
|
1
|
0
|
3018
|
|
POST
|
Hi, For some reason I think this should be more straight forward. What we need to do is access a secure service on our ArcGIS Enterprise installation from a map built using the javascript API. If I host the web application on the same server as the ArcGIS Enterprise installation, everything works without any issue. Do not even have to do anything with IdentityManager. Looking at fiddler I can see that the requests are challenged with a 401 response and then another call is made passing in the required Negotiate security header. However, this is no longer the case when hosting the application on a different web server, also within the same domain. Looking at fiddler in this case the same initial 401 response, however, in these cases (I have tried a number of servers) the follow-up request with the Negotiate header is never sent. I have tried too many things to even describe basically following numerous examples of how one would use IdentityManager to request credentials. These all take the general form of const server = portalUrl + '/sharing/rest';
const tokenServiceUrl = server + '/generateToken';
const serverInfo = {
tokenServiceUrl
};
const userInfo = {
username,
password
};
esriId.generateToken(serverInfo, userInfo).then((tokenInfo) => {
esriId.registerToken({tokenInfo, server})
}, (error) => {
console.log(error);
}).catch(() => {
console.log("hello");
}); In this case what is observed is that the request to the generateToken endpoint returns a 401 response but again the follow-up request with the Negotiate header is never sent. I am at my wits end. Hosting the web application on the ArcGIS Enterprise server in our production environment is likely not possible so we need a way to do from a separate server Thanks
... View more
07-22-2021
10:21 AM
|
0
|
2
|
1577
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-23-2025 12:16 PM | |
| 1 | 10-19-2022 01:08 PM | |
| 1 | 09-03-2025 09:25 AM | |
| 1 | 04-16-2025 12:37 PM | |
| 1 | 03-18-2025 12:17 PM |
| Online Status |
Offline
|
| Date Last Visited |
12-04-2025
04:12 PM
|