|
DOC
|
What is the purpose of the client? Something just does not make sense to me in the client setup and need (also it failed to start so that adds to my confusion). Also I seem to be not understanding something in how this is published to my Enterprise. Am I supposed to copy something to a portal folder? I can navigate to the Experience, but this requires server to be running, how do I setup to have the experience as part of my Enterprise and a user would navigate there from within portal. I have read the guide and your instructions and this seems to me to be missing Thanks -Joe
... View more
05-18-2020
08:39 AM
|
0
|
0
|
29513
|
|
POST
|
I found that running: npm set strict-ssl false Resolved the issue
... View more
05-15-2020
09:54 AM
|
0
|
1
|
5562
|
|
POST
|
Is there a solution to this? I have run as admin which does not make any difference. Run from node.js prompt and standard command prompt. Tried this: node.js - Laravel 5.4 ‘cross-env’ Is Not Recognized as an Internal or External Command - Stack Overflow still no luck. Why cannot I not run? Thanks -Joe
... View more
05-15-2020
08:18 AM
|
0
|
1
|
5562
|
|
DOC
|
Tom DeWitte ..Thanks for the quick reply. We thought was likely an oversight, but wanted to confirm we had not missed something
... View more
05-14-2020
06:08 AM
|
0
|
0
|
19635
|
|
DOC
|
Tom. Looking at Tees and Reducers, neither have a domain assigned to diameter. Both do to the diameter2 field. What is the reasoning here? Thanks -Joe (and Scott)
... View more
05-13-2020
11:15 AM
|
0
|
0
|
19635
|
|
POST
|
Seems like this might be something the AGOL team might want to look into. We have a Runtime app, not Collector and on iOS, but based on error being captured seems to be the same underlying cause.
... View more
05-11-2020
07:51 AM
|
0
|
0
|
1955
|
|
IDEA
|
Hi, Here is a screen shot of the permissions we gave. During testing we saw that while the standard Data Editor user could not update the replicas they didn't own, an administrator could. So we messed around with permissions to see what would allow the editors to do the same and then created a new role for them. Our field editors don't ever access portal through the web so they are never in there doing things we might normally not want because of these additional rights. Hope that helps
... View more
04-29-2020
09:25 AM
|
0
|
1
|
3288
|
|
IDEA
|
Hi, Here is a screen shot of the permissions we gave. During testing we saw that while the standard Data Editor user could not update the replicas they didn't own, an administrator could. So we messed around with permissions to see what would allow the editors to do the same and then created a new role for them. Our field editors don't ever access portal through the web so they are never in there doing things we might normally not want because of these additional rights. Hope that helps
... View more
04-29-2020
09:25 AM
|
0
|
1
|
3890
|
|
IDEA
|
I believe we were able to setup a new user type that gave an additional permission which then allowed for the user to sync without being the owner. I need to talk with some folks and see what that was exactly (this was two years ago )
... View more
04-29-2020
07:34 AM
|
0
|
1
|
3288
|
|
IDEA
|
I believe we were able to setup a new user type that gave an additional permission which then allowed for the user to sync without being the owner. I need to talk with some folks and see what that was exactly (this was two years ago )
... View more
04-29-2020
07:34 AM
|
0
|
1
|
3890
|
|
POST
|
Looks like 100 seconds. I would make a request that future release includes a Timeout in the API. Based on my recent user testing, users are not going to wait 100 seconds before assuming the application has just frozen. Even with a slow connection it should not take a more than a few seconds to load. Thanks -Joe
... View more
04-27-2020
01:57 PM
|
0
|
1
|
1600
|
|
POST
|
We use online basemaps for a mobile application. It is possible, however, that a user may not have connection at some locations. What happens in this situation is that the Layer:LoadAsync() for the ArcGISVectorTiledLayer simply hangs up. It never times out and shows a failure to load. var layerUri = new Uri("https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer");
var tiledLayer = new ArcGISVectorTiledLayer(layerUri);
//hanges up at this line of code. LoadStatus goes into Loading but never changes
await tiledLayer.LoadAsync(); Instead I am having to add code to determine if it times out. I used an HttpClient to see if I can hit the endpoint. try
{
//will timeout if unable to connect
using (HttpClient client = new HttpClient(){Timeout = TimeSpan.FromSeconds(1)})
{
await client.GetStringAsync(layerUri);
await tiledLayer.LoadAsync();
map.Basemap.BaseLayers.Add(tiledLayer);
};
}
catch (Exception e)
{
Log.Error(e, e.Message);
await DialogService.DisplayAlertAsync("Not Connected", "No connection exists so basemap will not be loaded", "Ok");
} It seems to me the API should provide a way to know that a layer timed out trying to load. Am I just missing something? Thanks -Joe
... View more
04-27-2020
09:11 AM
|
0
|
3
|
1687
|
|
POST
|
I guess should have been: I can assume there is only one (because I know how the map is loaded in this application) My attempt did not work, using the Binding to BaseLayers[0]. I'll look at the sample, for now I hold the BaseLayer and just turn on off in event handlers, which works. I would like to do in the template though. private void ToggleButton_OnChecked(object sender, RoutedEventArgs e)
{
_baseLayer.IsVisible = true;
}
private void ToggleButton_OnUnchecked(object sender, RoutedEventArgs e)
{
_baseLayer.IsVisible = false;
} Thanks -Joe
... View more
04-23-2020
01:26 PM
|
0
|
0
|
1003
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-11-2026 09:07 AM | |
| 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 |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|