|
POST
|
ArcGIS Pro .Net SDK allows customizing and extending the new ArcGIS pro application It's not identical to the Runtime .Net API but it follows the same principal. .AFAIK the ArcGIS pro SDK is not released yet (planned Q1 2015)
... View more
12-31-2014
02:24 AM
|
2
|
1
|
1351
|
|
POST
|
Could you share the tiled layer service that allows reproducing the issue? Thanks
... View more
12-31-2014
02:11 AM
|
0
|
0
|
592
|
|
POST
|
The current WPF SDK is now the version 10.2.3. It can be downloaded from here. If you start a new project you should also consider using the new .Net API.
... View more
12-31-2014
02:06 AM
|
0
|
0
|
3400
|
|
POST
|
The current WPF SDK is now the version 10.2.3. It can be downloaded from here. If you start a new project you should also consider using the new .Net API.
... View more
12-31-2014
02:05 AM
|
0
|
0
|
2938
|
|
POST
|
You can try to set the FeatureLayer DisableClientCaching property to true. That will prevent from using the browser cache when updating the feature layer. Not sure it's your issue but it's worth the try.
... View more
12-18-2014
05:47 AM
|
0
|
1
|
1413
|
|
POST
|
Hi, You are right. The proxy used in the sample is sometimes not stable. We'll try to get that fixed ASAP. If you comment the proxy url it works only for the url (Real Time Earth Quakes) below. I think it depends on where the KMX/KML file is downloading from?. The SL proxy is mainly useful as a workaround to the SL cross domain access restrictions. Without proxy, SL can only access to sites that allow cross domain access such as the Earth Quake site: http://earthquake.usgs.gov/crossdomain.xml Without this cross access permission Silverlight can't access to the KML file. Note that you can (and should for production) set your own proxy server: Esri/resource-proxy · GitHub
... View more
12-18-2014
12:10 AM
|
0
|
0
|
991
|
|
POST
|
- I do not know what to use for the tokenUrl. You don't have to know the token url, the first url parameter of GenerateCredentialTaskAsync is the ArcGIS secured resource you want to access to. The token wil be discovered automatically internally. I would prefer to somehowget this taken care of during application startup. I want the layer to display as soon as the application is loaded. Yes. That's possible. You have actually 2 options: 1) Option 1: Generate a token when an authorization error is intercepted by the IdentityManager (i.e at runtime when trying to access to the secured services) To do that you have to define a challenge method that will handler the error and can, for example, generate a token with an hardcoded username/password. As, in this case ,the challenge method is just a call to GenerateCredentialAsync, the IM initialization can be as simple as: IdentityManager.Current.ChallengeMethod += (url, handler, options) => IdentityManager.Current.GenerateCredentialAsync(url, "<username>", "<password>", handler, options); 2) Option 2: At startup, generate a token and add it to IM which will use it when trying to access to the service Something like: // generate a token var crd = await Client.IdentityManager.Current.GenerateCredentialTaskAsync(<resource url>, <username>, <password>); // add the token to IM Client.IdentityManager.Current.AddCredential(crd); // activate IM without challenge (or set a challenge method for managing access to secure services not declared at startup) Client.IdentityManager.Current.Enabled = true;
... View more
12-15-2014
10:58 AM
|
0
|
0
|
817
|
|
POST
|
Hi, Thanks for this info. This confirms there is something wrong at server side. The node coordinates returned by the query REST End Point are the same whatever the out spatial reference (example with WebMercator or WGS84). Concerning the join, it's not the same issue, the coordinates returned seem good but when too much data are requested the server returns an internal error. Not sure if these are bugs in ArcGIS server or if it's due to the way the features have been published. You might get better answers by posting the question on the server forum.. Thanks /Dominique
... View more
12-11-2014
05:55 AM
|
0
|
1
|
2336
|
|
POST
|
That beats me. It looks like a projection issue at server side but I don't get the reason. I'll try to reproduce locally (I guess your service is not publicly accessible?). As a workaround you might try publishing your service in 'WGS_1984_UTM_Zone_44N' instead of Web Mercator. May be the projection works in this case?
... View more
12-11-2014
12:28 AM
|
0
|
4
|
2336
|
|
POST
|
Humm, the issue doesn't seem to be at client side. The display is consistent with the returned geometry (x, y around 1000000 mean around Nigeria). Maybe an issue at server side or an issue due to how you published the service. If you try to display your published service in ArcMap, is it working well? If you try to display your published service in Silverlight by using an ArcGISDynamicMapServiceLayer, is it working well?
... View more
12-10-2014
06:44 AM
|
0
|
6
|
2336
|
|
POST
|
OK. Now the outSR parameter is set, unfortunately it doesn't seem to solve your issue. Could you show us how the geometry of the returned features look like (as in Jennifer's screenshot)?
... View more
12-10-2014
03:20 AM
|
0
|
8
|
2336
|
|
POST
|
Hi Sadanand, From your screenshoot, it seems you didn't set the OutSpatialReference as I suggested above. This parameter drives the SR of the returned features and is key to fix your issue. Once set, you should see a 'outSR' parameter in the query request sent to the server. Dominique.
... View more
12-10-2014
02:20 AM
|
0
|
10
|
2939
|
|
POST
|
Hi Vincent, Unfortunately that's an identified bug that should be fixed in the next version. Sorry for the inconvenience. /Dominique
... View more
12-08-2014
01:58 AM
|
1
|
1
|
3068
|
|
POST
|
I just noticed that your post was for the WPF API and not for .Net API so we might be more interested by the WPF/SL Identify sample.
... View more
12-04-2014
06:16 AM
|
2
|
1
|
987
|
|
POST
|
No you don't need to create feature layers to get infos about features. You can use an Identify task that is executed at server side and returns info about the features under the specified geometry. There is a sample here: arcgis-runtime-samples-dotnet/IdentifySample.xaml.cs at master · Esri/arcgis-runtime-samples-dotnet · GitHub
... View more
12-04-2014
06:12 AM
|
2
|
2
|
987
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-14-2025 09:24 AM | |
| 1 | 06-13-2013 09:22 AM | |
| 1 | 04-29-2022 02:21 AM | |
| 1 | 04-29-2022 02:28 AM | |
| 1 | 09-07-2021 03:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-30-2025
08:06 AM
|