|
POST
|
Is there an example of calling GetImageAsync on an ArcGISDynamicMapServiceLayer? I'm stumped as to how to get a reference to an ImageParameters object. In the JavaScript API there's a constructor for it. Update: I was able to work around it by making the REST call directly. I would have liked a simpler solution.
... View more
08-20-2015
07:54 AM
|
0
|
1
|
3170
|
|
POST
|
FYI, I'm also seeing GeometryEngine errors on the two test polygons: Internal error exception at RuntimeCoreNet.Interop.HandleException(Boolean retVal) at RuntimeCoreNet.CoreGeometryEngine.Intersects(ICoreGeometry coreGeometry1, ICoreGeometry coreGeometry2, CoreSpatialReference coreSpatialReference) at Esri.ArcGISRuntime.Geometry.GeometryEngine.Intersects(Geometry geometry1, Geometry geometry2) Update: If I simplify the polygons, the intersection test works. Update 2: I just looked at the results of the simplify, and they're bogus.
... View more
08-14-2015
12:40 PM
|
0
|
0
|
2458
|
|
POST
|
I've attached an example. When I just buffered AZ highways, the problem didn't appear. Then I buffered AZ towns and appended the two classes together, and that did the trick (zoom into the southern part of the state). There seems to be more of a problem with rendering lots of widely scattered little polygon parts.
... View more
08-13-2015
07:52 AM
|
0
|
0
|
2458
|
|
POST
|
I have some complex buffer polygons displayed from a runtime geodatabase. If I'm zoomed all the way out, they appear fine, but when I zoom in closer, errant lines shoot all over the place. Is there a known limitation for rendering polygons?
... View more
08-12-2015
04:11 PM
|
0
|
11
|
5401
|
|
POST
|
Just FYI, my AppStudio login proxy problems seem to be fixed with Beta 3. Player still doesn't remember proxy settings, so they need to be set every time.
... View more
07-29-2015
02:37 PM
|
0
|
0
|
2062
|
|
POST
|
Yes, I have other two-way replicas created the old-fashioned way in ArcMap.
... View more
06-30-2015
03:04 PM
|
0
|
0
|
574
|
|
POST
|
I'm experimenting with the "Create Replica From Server" tool as a way to avoid ownership issues in a shared field computer. I have a feature dataset with a geometric network, and when the tool creates a two-way replica, it replicates the dataset in its entirety except for the geometric network, even though the "FULL" option is selected. Has anyone else seen this behavior, or have any suggestions?
... View more
06-30-2015
02:56 PM
|
0
|
2
|
3165
|
|
POST
|
You cannot use VBScript expressions if you are publishing to ArcGIS Server. I ran into this problem, and the key to understanding it is found in the first sentence of the third paragraph of the "Building label expressions" help topic: "Field values are automatically cast to text strings." Nonetheless, Python expressions are awkward for parsing strings because you can't use square brackets . For example, in the following expression: [DATEFIELD].split(" ")[0] the parser will look for a field called "0" and fail. Instead, you can use the following: [DATEFIELD].split(" ").pop(0) If a field is nullable, then you need to be prepared to handle a null value: def FindLabel ([DATEFIELD]): s = [DATEFIELD] if s is None: return None return s.split(" ").pop(0) Of course, label performance is adversely affected by using a function, which in turn affects the return time on an ArcGIS Server map service. [BTW, if you look at the examples, the most appropriate ones for parsing strings are in JScript, and that is probably the better route to take.]
... View more
05-28-2015
11:41 AM
|
1
|
0
|
1806
|
|
POST
|
I figured it out. I was testing this on my visual studio box first, and the Runtime copy under the debug directory apparently doesn't honor the settings. I created a separate installation and that worked fine. (To enable it in my Visual Studio project, I needed to update the deployment manifest.)
... View more
05-22-2015
09:26 AM
|
0
|
0
|
1382
|
|
POST
|
Thanks, I found it and enabled logging and http debugging. However, I'm still not seeing traffic in Fiddler, or logfiles. Is there something else I need to do?
... View more
05-22-2015
09:16 AM
|
0
|
1
|
1382
|
|
POST
|
I have a Runtime app that uses a map package and a geoprocessing package. I'm getting "500 (Server Error)" on a particular machine that I can't duplicate anywhere else. To help troubleshoot, I would like to capture traffic between the app and the local server that's spun up. I'm not an expert at Fiddler and I'm having difficulty getting it to see that session. Wasn't there a local server configuration tool in a past version of Runtime? I can't find it now.
... View more
05-22-2015
08:39 AM
|
0
|
3
|
4186
|
|
POST
|
OS is Windows 2008 R2 Standard. There's only one NIC, but this is a test server, so traffic is relatively low. No patches were applied to 10.2.2, but that version only existed on the test server. We're still using Server 10.2.1 in production. Right now there are 2 map-only services, and 2 feature services. One of the feature services is being tested by some users for our ArcGIS Runtime roll-out scheduled for end of June. Because we're a utility using ArcFM, ArcGIS Desktop and ArcSDE are currently locked down to 10.2.1 + any patches for that version. However, I need Server 10.2.2 or higher to support the Runtime sync framework, plus new security features. If you can't think of anything obvious that I messed up on, I can go ahead and start a Tech Support request, but I'll probably wait on that until after the DevSummit. Thanks!
... View more
03-03-2015
11:48 AM
|
0
|
0
|
714
|
|
POST
|
I never had any problems with Server 10.2.2. But after installing 10.3 on my test server, performance has gone right down the toilet. My feature services hang up, and if I stop a feature service, it won't restart. Stopping and restarting the actual ArcGIS Server service puts everything into permanent stopping mode. Once things start acting up , the only way I can clear it out again is to reboot the server. Has anyone else seen this problem?
... View more
03-03-2015
09:06 AM
|
0
|
2
|
4283
|
|
POST
|
With Runtime 10.2.5 and Server 10.3, there's a partial fix. I can successfully use sync to create a geodatabase with table attachments, and Runtime queries them fine. I can also add an attachment and sync it back. However, I still get the "Row not found" exception when I query a ServiceFeatureTable directly with Runtime.
... View more
02-16-2015
01:52 PM
|
0
|
0
|
782
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-04-2012 06:42 AM | |
| 1 | 09-23-2021 10:42 AM | |
| 2 | 09-28-2021 07:07 AM | |
| 1 | 04-07-2021 10:31 PM | |
| 3 | 03-21-2021 01:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
01-07-2022
08:31 AM
|