I have many ArcMap Layer Files (.lyr files) that I would like to use in a ArcGIS Runtime SDK .Net Desktop application. The Layer Files reference data in an ArcGIS Enterprise Geodatabase (SDE). Layer Files are not directly supported by Runtime applications.
My original idea was to use create Map Packages from the Layer Files, that reference the geodatabase data. However, I quickly found out that this is using a LocalServer and thus requires additional Standard Licensing. I wish to keep my application at the Basic Licensing level. The application will only run on the internal network on Windows PC’s. No offline access is needed.
How can I use this existing symbology in an ArcGIS Runtime SDE .Net Desktop application (10.2.7.0+ or Quartz release)?
Hi,
If your data is in an Enterprise Geodatabase and your client apps are connected the best approach is to publish feature services from your maps and consume those in the ArcGIS Runtime as ServiceFeatureTables and FeatureLayers. If your apps do need to go disconnected
See About publishing services—Documentation | ArcGIS for Server and What is a feature service?—Documentation | ArcGIS for Server for more information.
Cheers
Mike
Yes, I see how that would work, however I do not see that as an optimal solution for a desktop application.
By publishing the layers to ArcGIS for Server, I'm offloading all the rendering to the server. Instead of the individual PC's being responsible for reading the data and rending the map, ArcGIS Server has to do all this. I'm wasting the processing power of the PC and requiring the server to do all the work. I'll need a beefier server just to handle the rendering, when the PC is only being reduced to a "browser" displaying dynamically rendered tiles.
This is desired when building a web application, but it is not optimal for a desktop application. It seems like a major shortcoming for the desktop runtime api that it cannot utilize the symbology created in desktop products.
It seems like my only options with Runtime is to:
How exactly is the unified symbology model being handled in the Quartz release? I've looked through the beta version documentation, but nothing was jumping out at me. Does this change my options?