|
POST
|
Laura - Thanks for the reply. I tried to follow instructions from the first link you provided and at this point I think something is screwjaw with my Server implementation. Will reach out to Tech Support for help on this. Thanks again for the info. Ed
... View more
01-10-2025
01:29 PM
|
0
|
0
|
978
|
|
POST
|
Per the screenshot below, I've published a feature service with data populated in a U/N geodatabase. While I *can* add the map image layer to the map, I *cannot* add the feature service to the map. This was published by a user with as many admin privileges as I know to provide. Any clues as to where to search for the problem would be much appreciated. Thx, Ed
... View more
01-10-2025
12:06 PM
|
0
|
2
|
1007
|
|
POST
|
Hi Rich - Finally got a chance to try this. Works like a champ. Thanks much! Ed
... View more
01-04-2025
04:57 PM
|
0
|
0
|
1085
|
|
POST
|
Hi - I'm trying to create an ElectricJunction feature using the ArcGIS Pro SDK. Below is a snippet of the code that creates the feature. All non-nullable fields are set, except ASSOCIATIONSTATUS and ISCONNECTED. When I hit the "CreateRow" statement I always get the error "Field is not Nullable". However, when I try to assign a value to either ASSOCIATIONSTATUS or ISCONNECTED I get the error "Field cannot be assigned" (or something similar.) So, I'm missing something fundamental here. Any guidance would be much appreciated. Thx, Ed // Create a new junction feature here using (RowBuffer rowBuffer = junctionFC.CreateRowBuffer()) { rowBuffer["ASSETGROUP"] = assetGroup; rowBuffer["ASSETTYPE"] = assetType; //rowBuffer["ASSOCIATIONSTATUS"] = 0; // Default //rowBuffer["ISCONNECTED"] = 2; rowBuffer["PHASESNORMAL"] = 7; // ABC rowBuffer["PHASESENERGIZED"] = 7; rowBuffer["PHASESSUMMER"] = 7; rowBuffer["PHASESWINTER"] = 7; rowBuffer["PHASESPLAN"] = 7; rowBuffer["LIFECYCLESTATUS"] = 2; // In Service rowBuffer["CONSTRUCTIONSTATUS"] = 5; // Existing rowBuffer[junctionClassDefinition.GetShapeField()] = mp; using (Feature newFeature = junctionFC.CreateRow(rowBuffer)) { context.Invalidate(newFeature); } createCount++; } }
... View more
01-02-2025
11:05 AM
|
0
|
2
|
1130
|
|
POST
|
The GlobalID_1 field was defined as a "GlobalID". Once I removed this my "Apply Asset Package" task completed successfully. Ed
... View more
12-20-2024
08:04 AM
|
0
|
0
|
2354
|
|
POST
|
Paul - Thank you. That seems to have gotten me over that particular hump. With that change my "Apply Asset Package" process ran nearly an hour and hit the error below. Which I'm pretty sure is unrelated and merits its own question. (FWIW - I don't have editor tracking enabled in the source asset package and it doesn't seem to be enabled in the target UN dataset.) Thx Ed Adding GlobalID_1 to GISADMIN.StructureBoundary... ERROR 000852: Cannot add field GlobalID_1 to GISADMIN.StructureBoundary ERROR 002764: The field is used by Editor Tracking., The operation is not supported by this implementation. WARNING 000952: Failed to execute (AddField).
... View more
12-17-2024
05:57 PM
|
0
|
1
|
2380
|
|
POST
|
I've hit the identical error reported by BryanMay531. I've selected both domain networks. Is there a fix or work around for this? Thx, Ed
... View more
12-17-2024
12:40 PM
|
0
|
0
|
2395
|
|
POST
|
OMG. I was right in the beginning about missing something stupid. Picking the SDE connection from the right side of the dialog works as expecting. Thank you *very* much for pointing this out! Ed
... View more
12-16-2024
08:27 AM
|
0
|
0
|
1488
|
|
POST
|
Mike - Thanks for the reply. Here is what I see. No matter what type of connection file I choose I cat' get the 'OK' to enable when selecting a target geodatabase. Any suggestions would be much appreciated. Ed
... View more
12-16-2024
06:56 AM
|
0
|
1
|
1494
|
|
POST
|
Hi - I'm probably missing something stupid, but have spent half a day on this and need to ask. Trying to use the "Stage Utility Network" tool I am unable to select a Target Geodatabase. I have created a SQL*Server database and used the Create Geodatabase GP tool to create the geodatabase. I've created a user that has the ability to create Geodatabase objects -- I've tested this by creating a feature dataset and a feature class owned by this user. I've got an SDE connection file that points to this database which has the credentials of the user that can create Geodatabase objects. I can connect to this Geodatabase within the project I'm using to run the "Stage Utility Network" tool I can supply the Service Territory feature class and other parameters the tool wants. But when I try to browse for the Target Geodatabase using the SDE connection, the "OK" never enables. Any suggestions would be greatly appreciated. Thx, Ed
... View more
12-15-2024
05:37 PM
|
0
|
5
|
1557
|
|
POST
|
We are deploying an application that is leveraging sync-enabled feature services to update mobile geodatabases on user client machines. We've had to work out some kinks with mobile gdb registration and synchronization, but things seem fairly stable at this point. Our current concern is about tracking what user has synchronized when. There will be hundreds of mobile users, each of whom will be synching at different points in time. From an admin standpoint we want to know which users have data that is up-to-date and which users do not -- actually we mostly want to know about those that do not. We've considered some, admittedly kludgy, ways to do this -- like by adding a single, special purpose feature to each class or table that has the last sync table for each class. But it seems there should be information available from the parent replica database about which client has synced when. Any suggestions on how we might access replica sync history would be much appreciated. Thx, Ed
... View more
10-19-2024
08:34 AM
|
0
|
0
|
603
|
|
POST
|
For what is worth, we've found that changing symbology on a feature service is equivalent to a schema change. Seems that symbology in the mobile geodatabases is defined in a table named GDB_ServiceItems -- which I suppose Esri considers to be part of the database schema. So... in order to propagate symbology changes to mobile users we need to provide *new* mobile geodatabases produced from the updated feature service. Symbology will *not* be updated in normal synchronization.
... View more
10-19-2024
08:05 AM
|
0
|
0
|
813
|
|
POST
|
To close the loop on this, the 'fix' by wrapping the RegisterGeodatabaseAsync request within another method does seem to work after a fair bit of testing. Which is good... though it also means the vendor's product never would have worked for any previous customer. But that's another topic. Ed
... View more
10-09-2024
07:59 AM
|
0
|
0
|
846
|
|
POST
|
FWIW - Appears our vendor has been able to reproduce this issue and, we think, fix it. The 'fix' would be to wrap the awaited asynchronous RegisterGeodatabaseAsync request within another awaited asynchronous method. Which seems like they would be telling the SDK, 'wait for a response to this request, and this time I really mean it!' Not exactly sure why this would work, but it appears to in preliminary testing. Ed
... View more
10-07-2024
09:54 AM
|
0
|
0
|
872
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 05-14-2026 07:31 AM | |
| 1 | 05-11-2026 02:55 PM | |
| 1 | 01-07-2026 12:34 PM | |
| 1 | 01-04-2026 05:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|