<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Core Host license with ArcGIS Server product code in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1296805#M9919</link>
    <description>&lt;P&gt;Hi JamieKeylly1!!!&amp;nbsp;&lt;SPAN&gt;I am trying to create a standalone Core Host application with ArcGISServer license and my app doesn't work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If my license is ArcGISPro the connection to the Geodatabase works, but not for ArcGISServer.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It crashes at line: "Dim theGeodatabase As Geodatabase = New Geodatabase(connProps)"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I used ArcGISServer (12.9.0.31642.) and ArcGIS PRO&amp;nbsp; libraries (12.9.0.32739) with copy local TRUE, in both cases i have the same issue.&amp;nbsp; Try with copy local FALSE,&amp;nbsp;doesn't work too&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Is it possible to run an app on the server with libraries and ArcGIS Server license, without installing/licensing ArcGIS Pro?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please if you could help me, I would appreciate it&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Germán.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Jun 2023 17:38:11 GMT</pubDate>
    <dc:creator>Gaurtene</dc:creator>
    <dc:date>2023-06-07T17:38:11Z</dc:date>
    <item>
      <title>Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1135090#M7636</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to create a standalone Core Host application to update a featureclass in a scheduled task.&lt;/P&gt;&lt;P&gt;I am running into an issue trying to use&amp;nbsp;Host.Initialize(Host.LicenseProductCode.ArcGISServer).&lt;/P&gt;&lt;P&gt;The license is showing that it is initializing with an Advanced License level, but later in the code I am not able to make a connection to an Enterprise Geodatabase.&amp;nbsp; I have a try catch block around it, but if there is an error, it is not getting caught.&lt;/P&gt;&lt;P&gt;Here is the code that crashes:&lt;/P&gt;&lt;P&gt;Dim gottenFeatureClass As FeatureClass = Nothing&lt;BR /&gt;DeedsUpdateLog.WriteToLogFile("Setting up connection properties for Deeds Feature Layer on " &amp;amp; instance &amp;amp; ".")&lt;BR /&gt;Dim connProps As New DatabaseConnectionProperties(EnterpriseDatabaseType.SQLServer)&lt;BR /&gt;connProps.AuthenticationMode = AuthenticationMode.DBMS&lt;BR /&gt;connProps.Instance = instance&lt;BR /&gt;connProps.Database = "Property"&lt;BR /&gt;connProps.User = usrUser&lt;BR /&gt;connProps.Password = usrPassword&lt;BR /&gt;connProps.Version = "sde.DEFAULT"&lt;/P&gt;&lt;P&gt;DeedsUpdateLog.WriteToLogFile("Connecting to the geodatabase.")&lt;BR /&gt;Dim theGeodatabase As Geodatabase = New Geodatabase(connProps)&lt;BR /&gt;Try&lt;BR /&gt;DeedsUpdateLog.WriteToLogFile("Opening the deeds featureclass.")&lt;BR /&gt;gottenFeatureClass = theGeodatabase.OpenDataset(Of FeatureClass)(featClassName)&lt;BR /&gt;DeedsUpdateLog.WriteToLogFile("Deeds featureclass opened.")&lt;BR /&gt;Catch ex As Exception&lt;BR /&gt;DeedsUpdateLog.WriteToLogFile("Error.")&lt;BR /&gt;gottenFeatureClass = Nothing&lt;BR /&gt;Throw ex&lt;BR /&gt;Finally&lt;BR /&gt;theGeodatabase.Dispose()&lt;BR /&gt;End Try&lt;BR /&gt;Return gottenFeatureClass&lt;/P&gt;&lt;P&gt;It crashes at line: "Dim theGeodatabase As Geodatabase = New Geodatabase(connProps)" because I am getting the log message&amp;nbsp;"Connecting to the geodatabase.", but nothing else in my log after that.&lt;/P&gt;&lt;P&gt;It is a console application, so the console window (cmd window) opens momentarily and then dissapears, with no error messages at all.&amp;nbsp; I think it is because I am trying to use ArcGIS Server to initialize, if I use&amp;nbsp;Host.Initialize(Host.LicenseProductCode.ArcGISPro) the whole process completes from start to finish.&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 18:57:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1135090#M7636</guid>
      <dc:creator>JamieKelly1</dc:creator>
      <dc:date>2022-01-19T18:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1137495#M7682</link>
      <description>&lt;P&gt;Hi Jamie, in order to work with the ArcGISServer product code enumeration, your CoreHost application needs to be running on a machine with ArcGIS Server installed and licensed.&amp;nbsp; Also, the version of Server should be supported to be compatible with the version of Pro which you built your CoreHost app.&amp;nbsp; Some considerations are mentioned in &lt;A href="https://enterprise.arcgis.com/en/server/latest/get-started/windows/compatibility-of-arcgis-for-server-with-earlier-versions.htm" target="_self"&gt;this document&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 17:39:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1137495#M7682</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-01-26T17:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1137822#M7697</link>
      <description>&lt;P&gt;ArcGIS Server is licensed. Could the problem be that I am developing against references in my ArcGIS Pro 10.9.1 installation, but when I move my compiled application to the server, the server has ArcGIS Server 10.9?&amp;nbsp; My compile options are set to copy the reference dlls to the compiled application's bin folder.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 12:14:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1137822#M7697</guid>
      <dc:creator>JamieKelly1</dc:creator>
      <dc:date>2022-01-27T12:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1138054#M7704</link>
      <description>&lt;P&gt;That could be part of the issue, depending upon your Server install.&amp;nbsp; Something else to check would be the version of Pro installed with Server.&amp;nbsp;&amp;nbsp;If you continue to have issues, would recommend that you contact &lt;A href="https://support.esri.com/en" target="_self"&gt;Esri Support&lt;/A&gt; and open a case on this one.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 19:48:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1138054#M7704</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-01-27T19:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1140017#M7721</link>
      <description>&lt;P&gt;Got it working.&amp;nbsp; I copied the Core and CoreHost dlls from the server framework folder to my development computer and referenced those.&amp;nbsp; I also had to set the "copy local" property of the reference to true.&amp;nbsp; When compiled, the program worked on the server against the ArcGIS Server License.&amp;nbsp; I think there was a version difference.&amp;nbsp; Details of the files show the file version of my ArcGIS Pro dlls as 12.9.0.32739 and the dlls for ArcGIS Server are 12.9.0.31642.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 19:04:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1140017#M7721</guid>
      <dc:creator>JamieKelly1</dc:creator>
      <dc:date>2022-02-02T19:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1259794#M9437</link>
      <description>&lt;P&gt;Hi Jamie &amp;amp; Chris&lt;/P&gt;&lt;P&gt;Very interested in this topic, I'm trying to build a simple "CoreHost" application that runs on a Linux ArcGIS Server.&lt;BR /&gt;The first question is: is it possible to do this?&lt;BR /&gt;The first problem encountered after successfully compiling and running a "CoreHost" application on Linux is to encounter&lt;BR /&gt;the message similar to this "Could not find 'ArcGIS Pro'.&lt;BR /&gt;I think it is necessary to fight with the "wine" emulator, but I don't know how to do it.&lt;BR /&gt;Is it possible to have some deep information on this? Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 10:45:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1259794#M9437</guid>
      <dc:creator>MassimilianoGeppi</dc:creator>
      <dc:date>2023-02-20T10:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1296805#M9919</link>
      <description>&lt;P&gt;Hi JamieKeylly1!!!&amp;nbsp;&lt;SPAN&gt;I am trying to create a standalone Core Host application with ArcGISServer license and my app doesn't work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If my license is ArcGISPro the connection to the Geodatabase works, but not for ArcGISServer.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It crashes at line: "Dim theGeodatabase As Geodatabase = New Geodatabase(connProps)"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I used ArcGISServer (12.9.0.31642.) and ArcGIS PRO&amp;nbsp; libraries (12.9.0.32739) with copy local TRUE, in both cases i have the same issue.&amp;nbsp; Try with copy local FALSE,&amp;nbsp;doesn't work too&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Is it possible to run an app on the server with libraries and ArcGIS Server license, without installing/licensing ArcGIS Pro?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please if you could help me, I would appreciate it&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Germán.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 17:38:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1296805#M9919</guid>
      <dc:creator>Gaurtene</dc:creator>
      <dc:date>2023-06-07T17:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Core Host license with ArcGIS Server product code</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1346291#M10656</link>
      <description>&lt;P&gt;Do you have any update on this issue?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 19:28:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/core-host-license-with-arcgis-server-product-code/m-p/1346291#M10656</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2023-11-06T19:28:47Z</dc:date>
    </item>
  </channel>
</rss>

