|
POST
|
It sounds like the user doesn't have permission to create new features to that service or service doesn't allow updates/creates. Check that FeatureService that is used has necessary capabilities enabled Check that user has permission to do so Check that user is authenticated correctly If these doesn't help, could you provide small reproducer? Cheers, Antti
... View more
07-23-2015
02:11 AM
|
0
|
1
|
1594
|
|
POST
|
When you are buying deployment licenses they come in 25 license packs. To buy deployment licenses please contact your distributor. Also remember that if user in your application sign in to ArcGIS Online or Portal, it unlocks the standard functionality and no deployment license is needed for deployment. You can also save the authentication token to the application and that gives user access to standard functionality offline for 30 days (re-authentication needed before it ends). Read more : License your app—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Licensing ArcGIS Runtime App | ArcGIS for Developers
... View more
07-23-2015
02:07 AM
|
1
|
0
|
970
|
|
POST
|
Hey Brian Locke Thanks, 10.2.6 was a big push and we also managed to fix some stability issues related to HitTesting. It's good to know that you have managed to move over to it. If you have time and you can, could you record a short video what you are doing with the runtime?
... View more
07-22-2015
02:39 AM
|
0
|
0
|
1510
|
|
POST
|
Hi, Check sample arcgis-runtime-samples-dotnet/ElevationModeSample.xaml at master · Esri/arcgis-runtime-samples-dotnet · GitHub for usage. Basically you define SceneProperties for the GraphicsOverlays. <esri:GraphicsLayer ID="AbsoluteModeGraphicsLayer">
<esri:GraphicsLayer.SceneProperties>
<esri:LayerSceneProperties SurfacePlacement="Absolute"/>
</esri:GraphicsLayer.SceneProperties>
</esri:GraphicsLayer>
... View more
07-16-2015
10:37 AM
|
0
|
0
|
1015
|
|
POST
|
Hi Lina, I tried to run similar case with 10.2.5 and 10.2.6 but I cannot reproduce the issue. Can you send me a small reproducer to check? You can mail it to akajanus () esri.com. Cheers
... View more
07-13-2015
02:25 AM
|
0
|
0
|
1624
|
|
POST
|
Same functionality is available in all 3 device platforms phone, store and desktop so you can use the same API's in desktop.
... View more
07-06-2015
05:56 AM
|
1
|
0
|
1281
|
|
POST
|
Unfortunately we don't have out of the box support for editor snapping at the moment so you need to implement that yourself. See thread Re: Polygon snapping for more details.
... View more
07-06-2015
05:52 AM
|
0
|
1
|
2088
|
|
POST
|
Hey Brian, Can you attach a repro solution so I can have a look?
... View more
06-22-2015
01:52 AM
|
0
|
2
|
1510
|
|
POST
|
Hi, We don't have PCL version of the API due technology limitations in PCL.
... View more
06-15-2015
02:39 AM
|
0
|
6
|
2192
|
|
POST
|
Hey, Are you using Windows Store or Phone? Some other reading and extra information about the topic : Use ArcGIS token authentication—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Use OAuth 2.0 authentication—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Here is simple sample how to use build in authentication in Windows Store. App doesn't really do anything but sign in, created portal (authenticated version), gets users information and signs out from the portal. Let me know if you need more help with this. Typically you save instance of the portal for longer period and use that to access the portal information but here it's done like this to keep things simple. using Esri.ArcGISRuntime.Portal;
using Esri.ArcGISRuntime.Security;
using System;
using System.Linq;
using System.Threading.Tasks;
using Windows.UI.Xaml.Controls;
namespace ArcGISApp27
{
public sealed partial class MainPage : Page
{
private const string PORTAL_URL = "https://www.arcgis.com/sharing/rest/";
public MainPage()
{
this.InitializeComponent();
Initialize();
}
private async Task SignInAsync()
{
try
{
// This prompts UI for the authentication
var crd = await IdentityManager.Current.GetCredentialAsync(new CredentialRequestInfo { ServiceUri = PORTAL_URL }, true);
IdentityManager.Current.AddCredential(crd);
}
catch { } // can happen if user cancels the authentication
}
private async Task SignOut()
{
// Clear the credentials cache in order not to reuse them during the next session
(IdentityManager.Current.ChallengeHandler as Esri.ArcGISRuntime.Security.DefaultChallengeHandler).ClearCredentialsCache();
// Clear IM credentials so they won't be used during this session
foreach (var crd in IdentityManager.Current.Credentials.ToArray())
IdentityManager.Current.RemoveCredential(crd);
// Do what ever you do after sign out
}
private async void Initialize()
{
ArcGISPortal portal = null;
try
{
// Sign in
await SignInAsync();
// Create portal intance, this gets automatically credentials set in because credetials
// are set in when sign in is done
// Usually you are keeping reference to the portal instance and use it to access the portal
// when needed.
portal = await ArcGISPortal.CreateAsync(new Uri(PORTAL_URL));
// use portal
var currentUser = portal.CurrentUser;
// sign out
await SignOut();
}
catch (Exception ex)
{
// Handle
}
}
}
}
... View more
06-12-2015
02:38 AM
|
1
|
1
|
2858
|
|
POST
|
Could you provide a bit more information on your configuration/setup on the unittests/project types/etc... That would help us to understand what is going on. cheers, Antti
... View more
06-11-2015
05:40 AM
|
0
|
0
|
1038
|
|
POST
|
I can get this reproduced and created new issue for this.
... View more
06-11-2015
05:11 AM
|
0
|
1
|
3474
|
|
POST
|
I didn't see attachement on the view earlier. I'll have a look.
... View more
06-11-2015
04:53 AM
|
0
|
2
|
3474
|
|
POST
|
We got confirmation from the online/content team that they made changes to fix this issue. Please let us know if you see the issue being resurfaced.
... View more
06-11-2015
01:47 AM
|
0
|
0
|
2436
|
|
POST
|
Hey, Do you have a repro for this so I can have a look? cheers, Antti
... View more
06-10-2015
02:18 AM
|
0
|
4
|
3474
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-12-2014 03:52 AM | |
| 1 | 08-27-2015 03:47 AM | |
| 1 | 12-08-2014 09:58 AM | |
| 1 | 05-05-2015 10:19 AM | |
| 1 | 07-30-2015 08:43 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|