<?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 Remote control from external Application through SDK in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1215537#M8792</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;is it possible to access ArcGIS Pro Functions from ArcGISPor SDK from a external Program (CoreHost)?&lt;/P&gt;&lt;P&gt;For example:&lt;BR /&gt;1. Start ArcGIS Pro&lt;BR /&gt;2. Load a Project (-File)&lt;BR /&gt;3. Read all layers in this Project&lt;BR /&gt;4. Select Objects (over Attribut) in a layer and zoom to the Object&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;It means a Remote control to ArcGIS Pro, but not form a AddIn, but fom a external program, wiritten in c#.&lt;BR /&gt;Which basic steps we have to follow?&lt;/P&gt;&lt;P&gt;Thanks a lot for any hints!&lt;/P&gt;</description>
    <pubDate>Fri, 23 Sep 2022 15:26:37 GMT</pubDate>
    <dc:creator>TOPOGRAPHICS</dc:creator>
    <dc:date>2022-09-23T15:26:37Z</dc:date>
    <item>
      <title>Remote control from external Application through SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1215537#M8792</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;is it possible to access ArcGIS Pro Functions from ArcGISPor SDK from a external Program (CoreHost)?&lt;/P&gt;&lt;P&gt;For example:&lt;BR /&gt;1. Start ArcGIS Pro&lt;BR /&gt;2. Load a Project (-File)&lt;BR /&gt;3. Read all layers in this Project&lt;BR /&gt;4. Select Objects (over Attribut) in a layer and zoom to the Object&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;It means a Remote control to ArcGIS Pro, but not form a AddIn, but fom a external program, wiritten in c#.&lt;BR /&gt;Which basic steps we have to follow?&lt;/P&gt;&lt;P&gt;Thanks a lot for any hints!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 15:26:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1215537#M8792</guid>
      <dc:creator>TOPOGRAPHICS</dc:creator>
      <dc:date>2022-09-23T15:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Remote control from external Application through SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1216350#M8797</link>
      <description>&lt;P&gt;i think you would start ArcGIS Pro (from a console app) using a Configuration.&amp;nbsp; The Configuration extension option allows you to write custom code for the start sequence (i.e. loading a project, zoom in, add layers etc.), and then either look at instructions in a file or use some type of Inter Process Communication between you two processes.&amp;nbsp; &amp;nbsp;So in essence this would allow you to automate some ArcGIS Pro (Desktop app) processing.&amp;nbsp; Here is more information on Configurations in case you are not familiar:&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Configurations" target="_blank"&gt;ProConcepts Configurations · Esri/arcgis-pro-sdk Wiki (github.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I will try to write some sample code that shows this type of workflow and post it here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 01:12:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1216350#M8797</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2022-09-27T01:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Remote control from external Application through SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1217959#M8810</link>
      <description>&lt;P&gt;I attached two sample solutions that show&amp;nbsp;how to remote start and remote control ArcGIS Pro from an ArcGIS Corehost application.&lt;BR /&gt;This sample is comprised of two samples:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Corehost server application that starts and controls the ArcGIS Pro client: ArcGISProConfigCoreHost&lt;/LI&gt;&lt;LI&gt;ArcGIS Pro client application that is started and controlled: ArcGISProConfig&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To use the sample:&lt;/P&gt;&lt;P&gt;1. Make sure this project is available: "C:\Data\FeatureTest\FeatureTest.aprx" or change the path in the Corehost application.&lt;BR /&gt;1. Run the client application: ArcGISProConfigCoreHost&lt;BR /&gt;1. Note that the AppDomain is modified on startup to resolve the Assembly Paths for ArcGIS.Core.dll and ArcGIS.CoreHost.dll by using the ArcGIS Pro installation location.&lt;BR /&gt;1. The ArcGISProConfigCoreHost console application starts ArcGIS Pro with the "ArcGISProConfig" Managed Configuration&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen1.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52662i52810CB2153C239E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen1.png" alt="Screen1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;1. Once ArcGISProConfig has started and is ready, ArcGISProConfigCoreHost sends the project path: "C:\Data\FeatureTest\FeatureTest.aprx" to be opened&lt;BR /&gt;1. ArcGISProConfig opens the project&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen2.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52663iDAD776B87ACFD154/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen2.png" alt="Screen2.png" /&gt;&lt;/span&gt;&lt;BR /&gt;1. Once the output stops press any key to close the application.&lt;BR /&gt;1. Close the "ArcGISProConfig" client session (ArcGIS Pro) using the User Interface. Note that closing can be automated as well.&lt;BR /&gt;1. The "ArcGISProConfigCoreHost" Corehost application terminates after ArcGIS Pro has been closed.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen3.png" style="width: 979px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52664iDF42AE293890C6CE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen3.png" alt="Screen3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 17:26:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1217959#M8810</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2022-09-30T17:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Remote control from external Application through SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1221463#M8884</link>
      <description>&lt;P&gt;Thanks a lot for this nice Example!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 11:57:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/remote-control-from-external-application-through/m-p/1221463#M8884</guid>
      <dc:creator>TOPOGRAPHICS</dc:creator>
      <dc:date>2022-10-13T11:57:29Z</dc:date>
    </item>
  </channel>
</rss>

