|
POST
|
I tried Windows and database authentification.. No luck.. I try to understand who knock on the door of who and where to go to manage that..
... View more
03-05-2024
10:58 AM
|
0
|
0
|
3298
|
|
POST
|
Ok, that was a big step forward! I now see the Version Managment check box! thank you for spoting that! But I'm not out of the wood yet... I get an Anylize exception when doing the sharing that my Layer's datasource must be register with the server. So I do "Register data source with the server" but I can't do it because the server validation won't pass. We did add GDB to the data store before, I don't know where I can configure this.. Here what I can see on our server Everything seems to be working fine but I can't add anymore data store.. I will use one of our existing GDB/DataStore to publish branch versionned data and do my tests with that for now. But if you can help with this issue it would help us better organize our data. Thank you very much
... View more
03-05-2024
09:41 AM
|
0
|
2
|
3303
|
|
POST
|
Thank you for the quick answer. Branch Versioned data cannot be published to ArcGIS Online, that will not work. Good to know. Thanks. Do you have any other layers in the Pro map that you are using for publishing that are NOT branch versioned also? Only have one feature class in the map, the FC is branch versionnied and so is the database connection. If you only have 1 of the branch versioned layers in the map, does it publish successfully? I tried publishing it on our ArcGIS Enterprise protal.. Still no "version managment" check box available. When I move forward with the publication, the Feature Service becomes a Hosted Layer on our ArcGIS server. Why is it "hosted"? I went to check if the version managment thing is enable on the server and it is. Thank you for helping figure this out.
... View more
03-05-2024
07:43 AM
|
0
|
1
|
3309
|
|
POST
|
I'm still confuse about the whole thing and cannot make it work. What version of ArcGIS Enterprise are you publishing to? I'm publishing to our organization on ArcGIS Online. I tried our own hosted portal too. same result. Our ArcGIS server version is: Current Version: 10.91 Full Version: 10.9.1 Also are you the owner of the datasets being published? Well not sure.. I think I am since I have created the enterprise gdb, the Feature dataset and feature class. Here is how I created my enterprise GDB. My user is sysadmin on our MSSQL instance. But once branch versionning is set up here is what I have in the version managment I'm not even sure of the procedure of how to set up my GDB branch versionning.. I try to redo it to get screenshot to reply to here and I get this error when setting branch versionning on the Feature class. Can you provide some more context on the comment: "My understanding is that we are never going to be able to reconcile the data in the original database"? Well you said, "once the features are branch versioned, they should be published and edited via that service, not directly". Where is the data stored once published? Somewhere on the datastore of the ArcGIS server? If edits are perform on the feature layers, will this data can be brought back (reconcile) to the original GDB that served to do the publishing? Thanks in sdvance for your help
... View more
03-05-2024
06:27 AM
|
0
|
1
|
3315
|
|
POST
|
So we want to publish our data and have users edit it throug a feature service. We want it to be branch versionning with sync enable. First, I have a question that needs to be answer once and for all. Is the geodatabase that serve to publish the feature service is basically obselete after the publication is done since all edits must be done on that feature service after that (base on what I read on that link)? My understanding is that we are never going to be able to reconcile the data in the original database. Can someone clarify this please? Ok second problem. I created an enterprise GDB on our MSSQL Server (2019 v15.0.2104.1). I create one dataset with a simple feature class in it. I set the GDB connection property to manage branch versionning I set the Feature Data set to branche versionning too. Then if I add the Feature class to my map, I cannot edit it, cannot create a version, everything is disable, feature class is not editable.. Again refering to this link, this should be normal behavior. So I do Publich Web Layer. In the Share as web layer form, there is no check box "Version managment" visible. All the videos I've watch doing demos of this have that check box. Why it`s not there? So I go ahead anyway with the publication.. Then I can edit that feature layer no problem, but there is no versionning capabilities available. What am I missing? Please help.
... View more
03-04-2024
01:11 PM
|
0
|
9
|
3422
|
|
POST
|
Hi, I've created a button that create a new map and adds many layers and standAlone table to it. After playing with it a bit, I found that it seams to work well. But when I looked at it more closely it's missing 7 or 8 of the 80 tables I've added. Those missing are random because from trying it many time, it`s not always the same tables that are missiing.. Here an extract of my code: await QueuedTask.Run(async () =>
{
if (!checkPortalSignIn())
{
showError(resPublishSAM.errRequireSigningInActiveServer);
return;
}
if (ext == ".sde")
{
DatabaseConnectionFile dbcf = new DatabaseConnectionFile(new Uri(mainModule.Current.AquaGeoSettings.SDEConnectionFilePath));
pGeodatabase = new Geodatabase(dbcf);
}
else if (ext == ".gdb")
{
FileGeodatabaseConnectionPath fileGeodatabaseConnectionPath = new FileGeodatabaseConnectionPath(new Uri(mainModule.Current.AquaGeoSettings.SDEConnectionFilePath));
pGeodatabase = new Geodatabase(fileGeodatabaseConnectionPath);
}
await addMapToTheProject(packageName);
int total = 91;
int c = 0;
await addFeatureClassToMap("aga_AirValves", c++);
updateProgress(resPublishSAM.Adding + "aga_AirValves", c, total);
await addFeatureClassToMap("aga_ChamberAccess", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberAccess", c, total);
await addFeatureClassToMap("aga_Chambers", c++);
updateProgress(resPublishSAM.Adding + "aga_Chambers", c, total);
await addFeatureClassToMap("aga_DrainValves", c++);
updateProgress(resPublishSAM.Adding + "aga_DrainValves", c, total);
await addFeatureClassToMap("aga_FireHydrants", c++);
updateProgress(resPublishSAM.Adding + "aga_FireHydrants", c, total);
await addFeatureClassToMap("aga_Nodes", c++);
updateProgress(resPublishSAM.Adding + "aga_Nodes", c, total);
await addFeatureClassToMap("aga_Pipes", c++);
updateProgress(resPublishSAM.Adding + "aga_Pipes", c, total);
await addFeatureClassToMap("aga_Reducers", c++);
updateProgress(resPublishSAM.Adding + "aga_Reducers", c, total);
await addFeatureClassToMap("aga_Reservoirs", c++);
updateProgress(resPublishSAM.Adding + "aga_Reservoirs", c, total);
await addFeatureClassToMap("aga_Valves", c++);
updateProgress(resPublishSAM.Adding + "aga_Valves", c, total);
await addFeatureClassToMap("aga_WaterMeters", c++);
updateProgress(resPublishSAM.Adding + "aga_WaterMeters", c, total);
await addFeatureClassToMap("aga_WaterPumps", c++);
updateProgress(resPublishSAM.Adding + "aga_WaterPumps", c, total);
await addFeatureClassToMap("ags_AccessPoints", c++);
updateProgress(resPublishSAM.Adding + "ags_AccessPoints", c, total);
await addFeatureClassToMap("ags_Sections", c++);
updateProgress(resPublishSAM.Adding + "ags_Sections", c, total);
await addTableToMap("aga_ChamberCrossSections", "aga_ChamberCrossSections", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberCrossSections", c, total);
await addTableToMap("aga_ChamberDefs", "aga_ChamberDefs", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberDefs", c, total);
await addTableToMap("aga_ChamberInspectionPaths", "aga_ChamberInspectionPaths", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberInspectionPaths", c, total);
await addTableToMap("aga_ChamberManufacturers", "aga_ChamberManufacturers", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberManufacturers", c, total);
await addTableToMap("aga_ChamberModels", "aga_ChamberModels", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberModels", c, total);
await addTableToMap("aga_ChamberParameters", "aga_ChamberParameters", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberParameters", c, total);
await addTableToMap("aga_ChamberPriorities", "aga_ChamberPriorities", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberPriorities", c, total);
await addTableToMap("aga_ChamberReportDefs", "aga_ChamberReportDefs", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberReportDefs", c, total);
await addTableToMap("aga_ChamberReportDefTypes", "aga_ChamberReportDefTypes", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberReportDefTypes", c, total);
await addTableToMap("aga_ChamberWorkSheets", "aga_ChamberWorkSheets", c++);
updateProgress(resPublishSAM.Adding + "aga_ChamberWorkSheets", c, total);
await addTableToMap("aga_FHCrossSections", "aga_FHCrossSections", c++);
updateProgress(resPublishSAM.Adding + "aga_FHCrossSections", c, total);
await addTableToMap("aga_FHDefs", "aga_FHDefs", c++);
updateProgress(resPublishSAM.Adding + "aga_FHDefs", c, total);
await addTableToMap("aga_FHInspectionPaths", "aga_FHInspectionPaths", c++);
updateProgress(resPublishSAM.Adding + "aga_FHInspectionPaths", c, total);
await addTableToMap("aga_FHManufacturers", "aga_FHManufacturers", c++);
updateProgress(resPublishSAM.Adding + "aga_FHManufacturers", c, total);
await addTableToMap("aga_FHModels", "aga_FHModels", c++);
updateProgress(resPublishSAM.Adding + "aga_FHModels", c, total);
await addTableToMap("aga_FHNutModels", "aga_FHNutModels", c++);
updateProgress(resPublishSAM.Adding + "aga_FHNutModels", c, total);
await addTableToMap("aga_FHOtherModels", "aga_FHOtherModels", c++);
updateProgress(resPublishSAM.Adding + "aga_FHOtherModels", c, total);
await addTableToMap("aga_FHOtherModelValues", "aga_FHOtherModelValues", c++);
updateProgress(resPublishSAM.Adding + "aga_FHOtherModelValues", c, total);
await addTableToMap("aga_FHOutletModels", "aga_FHOutletModels", c++);
updateProgress(resPublishSAM.Adding + "aga_FHOutletModels", c, total);
await addTableToMap("aga_FHParameters", "aga_FHParameters", c++);
updateProgress(resPublishSAM.Adding + "aga_FHParameters", c, total);
await addTableToMap("aga_FHPriorities", "aga_FHPriorities", c++);
updateProgress(resPublishSAM.Adding + "aga_FHPriorities", c, total);
await addTableToMap("aga_FHReportDefs", "aga_FHReportDefs", c++);
updateProgress(resPublishSAM.Adding + "aga_FHReportDefs", c, total);
await addTableToMap("aga_FHReportDefTypes", "aga_FHReportDefTypes", c++);
updateProgress(resPublishSAM.Adding + "aga_FHReportDefTypes", c, total);
await addTableToMap("aga_FHWorkSheets", "aga_FHWorkSheets", c++);
updateProgress(resPublishSAM.Adding + "aga_FHWorkSheets", c, total);
await addTableToMap("aga_Materials", "aga_Materials", c++);
updateProgress(resPublishSAM.Adding + "aga_Materials", c, total);
await addTableToMap("aga_MeterTypes", "aga_MeterTypes", c++);
updateProgress(resPublishSAM.Adding + "aga_MeterTypes", c, total);
await addTableToMap("aga_PipeClasses", "aga_PipeClasses", c++);
updateProgress(resPublishSAM.Adding + "aga_PipeClasses", c, total);
await addTableToMap("aga_PIVCrossSections", "aga_PIVCrossSections", c++);
updateProgress(resPublishSAM.Adding + "aga_PIVCrossSections", c, total);
await addTableToMap("aga_PIVManufacturers", "aga_PIVManufacturers", c++);
updateProgress(resPublishSAM.Adding + "aga_PIVManufacturers", c, total);
await addTableToMap("aga_PIVModels", "aga_PIVModels", c++);
updateProgress(resPublishSAM.Adding + "aga_PIVModels", c, total);
await addTableToMap("aga_Relinings", "aga_Relinings", c++);
updateProgress(resPublishSAM.Adding + "aga_Relinings", c, total);
await addTableToMap("aga_RoadCenters", "aga_RoadCenters", c++);
updateProgress(resPublishSAM.Adding + "aga_RoadCenters", c, total);
await addTableToMap("aga_Sectors", "aga_Sectors", c++);
updateProgress(resPublishSAM.Adding + "aga_Sectors", c, total);
await addTableToMap("aga_ServiceBoxCrossSections", "aga_ServiceBoxCrossSections", c++);
updateProgress(resPublishSAM.Adding + "aga_ServiceBoxCrossSections", c, total);
await addTableToMap("aga_ServiceBoxManufacturers", "aga_ServiceBoxManufacturers", c++);
updateProgress(resPublishSAM.Adding + "aga_ServiceBoxManufacturers", c, total);
await addTableToMap("aga_ServiceBoxModels", "aga_ServiceBoxModels", c++);
updateProgress(resPublishSAM.Adding + "aga_ServiceBoxModels", c, total);
await addTableToMap("aga_UsageTypes", "aga_UsageTypes", c++);
updateProgress(resPublishSAM.Adding + "aga_UsageTypes", c, total);
await addTableToMap("aga_ValveAccess", "aga_ValveAccess", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveAccess", c, total);
await addTableToMap("aga_ValveBox", "aga_ValveBox", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveBox", c, total);
await addTableToMap("aga_ValveBoxCrossSections", "aga_ValveBoxCrossSections", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveBoxCrossSections", c, total);
await addTableToMap("aga_ValveBoxManufacturers", "aga_ValveBoxManufacturers", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveBoxManufacturers", c, total);
await addTableToMap("aga_ValveBoxModels", "aga_ValveBoxModels", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveBoxModels", c, total);
await addTableToMap("aga_ValveDefs", "aga_ValveDefs", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveDefs", c, total);
await addTableToMap("aga_ValveInspectionPaths", "aga_ValveInspectionPaths", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveInspectionPaths", c, total);
await addTableToMap("aga_ValveModelCrossSections", "aga_ValveModelCrossSections", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveModelCrossSections", c, total);
await addTableToMap("aga_ValveModelManufacturers", "aga_ValveModelManufacturers", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveModelManufacturers", c, total);
await addTableToMap("aga_ValveModels", "aga_ValveModels", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveModels", c, total);
await addTableToMap("aga_ValveNutModels", "aga_ValveNutModels", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveNutModels", c, total);
await addTableToMap("aga_ValveParameters", "aga_ValveParameters", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveParameters", c, total);
await addTableToMap("aga_ValvePriorities", "aga_ValvePriorities", c++);
updateProgress(resPublishSAM.Adding + "aga_ValvePriorities", c, total);
await addTableToMap("aga_ValveReportDefs", "aga_ValveReportDefs", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveReportDefs", c, total);
await addTableToMap("aga_ValveReportDefTypes", "aga_ValveReportDefTypes", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveReportDefTypes", c, total);
await addTableToMap("aga_ValveWorkSheets", "aga_ValveWorkSheets", c++);
updateProgress(resPublishSAM.Adding + "aga_ValveWorkSheets", c, total);
await addTableToMap("agc_aquaGeoSettings", "agc_aquaGeoSettings", c++);
updateProgress(resPublishSAM.Adding + "agc_aquaGeoSettings", c, total);
await addTableToMap("agc_Employees", "agc_Employees", c++);
updateProgress(resPublishSAM.Adding + "agc_Employees", c, total);
await addTableToMap("agc_streets", "agc_streets", c++);
updateProgress(resPublishSAM.Adding + "agc_streets", c, total);
await addTableToMap("ags_Canlite_Field_Job", "ags_Canlite_Field_Job", c++);
updateProgress(resPublishSAM.Adding + "ags_Canlite_Field_Job", c, total);
await addTableToMap("ags_Canlite_Field_Job_Events", "ags_Canlite_Field_Job_Events", c++);
updateProgress(resPublishSAM.Adding + "ags_Canlite_Field_Job_Events", c, total);
await addTableToMap("ags_Code_Substitutions", "ags_Code_Substitutions", c++);
updateProgress(resPublishSAM.Adding + "ags_Code_Substitutions", c, total);
await addTableToMap("ags_MH_Conditions", "ags_MH_Conditions", c++);
updateProgress(resPublishSAM.Adding + "ags_MH_Conditions", c, total);
await addTableToMap("ags_MH_Conditions_Media", "ags_MH_Conditions_Media", c++);
updateProgress(resPublishSAM.Adding + "ags_MH_Conditions_Media", c, total);
await addTableToMap("ags_MH_Connections", "ags_MH_Connections", c++);
updateProgress(resPublishSAM.Adding + "ags_MH_Connections", c, total);
await addTableToMap("ags_MH_Connections_Media", "ags_MH_Connections_Media", c++);
updateProgress(resPublishSAM.Adding + "ags_MH_Connections_Media", c, total);
await addTableToMap("ags_MH_Inspections", "ags_MH_Inspections", c++);
updateProgress(resPublishSAM.Adding + "ags_MH_Inspections", c, total);
await addTableToMap("ags_MH_Inspections_Media", "ags_MH_Inspections_Media", c++);
updateProgress(resPublishSAM.Adding + "ags_MH_Inspections_Media", c, total);
await addTableToMap("ags_PACP_Conditions", "ags_PACP_Conditions", c++);
updateProgress(resPublishSAM.Adding + "ags_PACP_Conditions", c, total);
await addTableToMap("ags_PACP_Inspections", "ags_PACP_Inspections", c++);
updateProgress(resPublishSAM.Adding + "ags_PACP_Inspections", c, total);
await addTableToMap("ags_PACP_Media_Conditions", "ags_PACP_Media_Conditions", c++);
updateProgress(resPublishSAM.Adding + "ags_PACP_Media_Conditions", c, total);
await addTableToMap("ags_PACP_Media_Inspections", "ags_PACP_Media_Inspections", c++);
updateProgress(resPublishSAM.Adding + "ags_PACP_Media_Inspections", c, total);
await addTableToMap("ags_Pipe_Records", "ags_Pipe_Records", c++);
updateProgress(resPublishSAM.Adding + "ags_Pipe_Records", c, total);
await addTableToMap("ags_Segments", "ags_Segments", c++);
updateProgress(resPublishSAM.Adding + "ags_Segments", c, total);
await addTableToMap("ags_WorkOrder_Categories", "ags_WorkOrder_Categories", c++);
updateProgress(resPublishSAM.Adding + "ags_WorkOrder_Categories", c, total);
await addTableToMap("ags_WorkOrder_Config", "ags_WorkOrder_Config", c++);
updateProgress(resPublishSAM.Adding + "ags_WorkOrder_Config", c, total);
await addTableToMap("ags_WorkOrder_CustomFields", "ags_WorkOrder_CustomFields", c++);
updateProgress(resPublishSAM.Adding + "ags_WorkOrder_CustomFields", c, total);
await addTableToMap("ags_WorkOrders", "ags_WorkOrders", c++);
updateProgress(resPublishSAM.Adding + "ags_WorkOrders", c, total);
await addTableToMap("ags_WorkOrders_Manholes", "ags_WorkOrders_Manholes", c++);
updateProgress(resPublishSAM.Adding + "ags_WorkOrders_Manholes", c, total);
await addTableToMap("ags_WorkOrders_Sections", "ags_WorkOrders_Sections", c++);
updateProgress(resPublishSAM.Adding + "ags_WorkOrders_Sections", c, total);
StringBuilder sb = new StringBuilder();
await publishMapToPortal(packageName, settingsVM, sb);
success = true;
}, progressor: WindowService.ProgressorSource.Progressor); Then the method I use: private async Task addFeatureClassToMap(string fcName, int index)
{
pMapDrawn = false;
FeatureClass fc = pGeodatabase.OpenDataset<FeatureClass>(fcName);
LayerFactory.Instance.CreateLayer(fc.GetPath(), MapView.Active.Map, index, fcName);
await WaitForMapToBeDrawn();
}
private async Task addTableToMap(string tableName, string layerName, int index)
{
tableAdded = false;
Table tbl = pGeodatabase.OpenDataset<Table>(tableName);
StandaloneTableFactory.Instance.CreateStandaloneTable(tbl.GetPath(), MapView.Active.Map, index, layerName);
await WaitForTableAdded();
} I found that I have better results if I wait for Arcgis to add the layers and table to the map before adding the next one. I'm using those event to do that: ArcGIS.Desktop.Mapping.Events.DrawCompleteEvent.Subscribe(OnDrawComplete);
ArcGIS.Desktop.Mapping.Events.StandaloneTablesAddedEvent.Subscribe(OnTableAdded); private async Task<bool> WaitForTableAdded()
{
int count = 0;
while (!tableAdded)
{
await Task.Delay(500);
count++;
if (count > 20)
{
WindowService.DoEvents();
return false;
}
}
WindowService.DoEvents();
return true;
}
private async Task<bool> WaitForMapToBeDrawn()
{
int count = 0;
// waiting for the map to be drawn
while (!pMapDrawn)
{
await Task.Delay(500);
count++;
if (count > 20)
{
WindowService.DoEvents();
return false;
}
}
WindowService.DoEvents();
return true;
} But even with that, instead of having 90 layers and tables, i get 86, 88, it varies.. Can you help please?
... View more
02-16-2024
11:50 AM
|
0
|
1
|
900
|
|
POST
|
Try to update the fields CanLiteConfigPACP, CanLiteConfigMACP, QCardConfigMACP or QCardConfigPACP of the feature here https://services6.arcgis.com/iLx36dZM4ZchIav8/ArcGIS/rest/services/SAM_20231221/FeatureServer/4 To answer your questions: byte[] byteValue = System.Text.Encoding.UTF8.GetBytes(stringValue); myFeature.SetAttributeValue("QCardConfigPACP", byteValue); Then I get System.NotSupportedException The data type System.Byte[] is not supported. at Esri.ArcGISRuntime.Data.CoreElementExtensions.SetAttributeValue(CoreElement element, Object value) at Esri.ArcGISRuntime.Internal.AttributeDictionary.set_Item(String key, Object value) Esri.ArcGISRuntime 200.2.0 .Net 6 I can easily update the field using the web UI and passing a base64 string. Using the SDK, I can then read the value this way: string base64String = System.Text.Encoding.Default.GetString(((IList<byte>)(Feature.GetAttributeValue("QCardConfigPACP"))).ToArray()); byte[] bytes = Convert.FromBase64String(base64String); return System.Text.Encoding.UTF8.GetString(bytes); But I can't write the attribute value. Please help
... View more
01-03-2024
09:19 AM
|
0
|
0
|
1409
|
|
POST
|
Hi, We have published a Feature Service containing data and some of the fields are FieldType.Blob. When we get the data using the ArcGIS MAp SDK we have no problem reading the field and using it. But if we want to set it`s value I get this exception: System.NotSupportedException The data type System.Byte[] is not supported. at Esri.ArcGISRuntime.Data.CoreElementExtensions.SetAttributeValue(CoreElement element, Object value) at Esri.ArcGISRuntime.Internal.AttributeDictionary.set_Item(String key, Object value) I was passing a byte[]. So I checked the type of the attribute. It says ReadOnlyCollection<byte>. So I tried to set the value by transforming my byte[] to a ReadOnlyCollection<byte> and I get the same exception. Si is it a SDK limitation? Is it just for now and later on it will be supported? Or is there something I can do differently to make it work? These fields holds some serialized json transformed to byte[]. It was the best way we found to store large value in a field without having to set a field length. In SQL Server I would have used nvarchar(MAX) and store the json in text. Is there a better way to do that in ArcGIS/ArcGIS Online? Thank you in advance.
... View more
12-07-2023
11:51 AM
|
0
|
3
|
1604
|
|
POST
|
Hi, since this morning we are experiencing problems accessing FeatureService published on our Argis Online enterprise account. I often get time outs. Even viewing the data in the Arcgis online web UI is slow. Our services are hosted on https://services6.arcgis.com Can you check if that server is healty please?
... View more
12-05-2023
12:37 PM
|
0
|
1
|
1118
|
|
POST
|
Thank you! I had to remove the symbology before publishing the layer to get rid of the template. Deleting templates was not working. It works now. Thanks again!
... View more
11-02-2023
03:37 PM
|
0
|
0
|
2612
|
|
POST
|
sorry try this: https://aquadata.maps.arcgis.com/apps/mapviewer/index.html?layers=5db2b9ea5a384bb894d36d5c03555b99
... View more
11-01-2023
05:28 AM
|
0
|
0
|
2641
|
|
POST
|
This is a show stopper for us right now. We would appreciate your help on this. We have figure out most of the things around that, and it will allow us to go forward with the development after that. Thank you.
... View more
10-31-2023
12:20 PM
|
0
|
0
|
2655
|
|
POST
|
I've set that FeatureLayer public if you want to try it and see what's wrong. https://aquadata.maps.arcgis.com/home/item.html?id=5db2b9ea5a384bb894d36d5c03555b99
... View more
10-31-2023
03:59 AM
|
0
|
2
|
2663
|
|
POST
|
Hi, the variable i is 0 and 1 since my Feature Layer has 2 layers for (int i = 0; i < 2; i++) { var featureLayer1 = new FeatureLayer(item, i) { MinScale = 500000000, MaxScale = 1 }; Map.OperationalLayers.Add(featureLayer1); } The FeatureLayer ID is good. I have another simple featurelayer (with no GUIDS) and it loads perfectly.
... View more
10-30-2023
12:33 PM
|
0
|
0
|
2683
|
|
POST
|
I have a Feature layer published that I'm trying to load in a small proof of concept projet with ArcGIS Map SDK .Net. When this code is called: var featureLayer1 = new FeatureLayer(item, i) { MinScale = 500000000, MaxScale = 1 }; Map.OperationalLayers.Add(featureLayer1); I get this error: ArcGIS Maps SDK: Load Error: FeatureLayer Esri.ArcGISRuntime.ArcGISRuntimeException Unknown error: invalid uuid string The feature has many fields and 4 or 5 of them are of type esriFieldTypeGUID like this one: inspectionid ( modelName: inspectionid, nullable: false, editable: true, defaultValue: null, length: 38, alias: InspectionId, type: esriFieldTypeGUID ) All the guids in those columns are valid guids but the SDK seem to have a problem with them. Is it a bug? What am I missing?
... View more
10-30-2023
08:29 AM
|
0
|
9
|
2806
|
| Title | Kudos | Posted |
|---|---|---|
| 4 | 11-19-2024 11:13 AM | |
| 1 | 03-05-2024 11:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-18-2025
08:24 PM
|