<?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: How to add the parameter(Feature) in geoprocessing server?‍‍ in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121441#M1347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error message sound similar to this bug. By any chance did you use ArcGIS Pro with Japanese Language Pack enabled?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;BUG-000116547:&amp;nbsp;&lt;SPAN&gt;ArcGISWebException - Failed to create service - exception thrown by ArcGIS Runtime local server 100.3 when trying to run a local service from a local geoprocessing package&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;&lt;SPAN style="background-color: #e4e4e4;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;Also, you can query shapefile table. The query result is also an IFeatureSet (see&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/latest/wpf/api-reference/html/M_Esri_ArcGISRuntime_Data_FeatureTable_QueryFeaturesAsync.htm"&gt;doc&lt;/A&gt;).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Dec 2018 18:53:02 GMT</pubDate>
    <dc:creator>JenniferNery</dc:creator>
    <dc:date>2018-12-27T18:53:02Z</dc:date>
    <item>
      <title>How to add the parameter(Feature) in geoprocessing server?‍‍</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121438#M1344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Hello,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; It's&amp;nbsp;question here. How should i add this parameter(Feature) in local geoprocessing server?‍‍‍‍‍‍‍‍‍&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;GeoprocessingParameters para &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;GeoprocessingParameters&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;GeoprocessingExecutionType&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AsynchronousSubmit&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;//raster&lt;/SPAN&gt;
para&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Inputs&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Flow_Dir"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;GeoprocessingRaster&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Uri&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;FlowDirPath&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"tif"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;//Question&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;//shapefile(Feature Layer) named "outlet" in GPK.&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;//I could get its local path.&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;//how should i add this parameter in ?&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:01:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121438#M1344</guid>
      <dc:creator>shenliang</dc:creator>
      <dc:date>2021-12-11T07:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to add the parameter(Feature) in geoprocessing server?‍‍</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121439#M1345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can look at this SDK &lt;A href="https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/master/src/WPF/ArcGISRuntime.WPF.Viewer/Samples/Geoprocessing/AnalyzeViewshed"&gt;sample&lt;/A&gt;&amp;nbsp;which creates &lt;A href="https://developers.arcgis.com/net/latest/wpf/api-reference/html/Overload_Esri_ArcGISRuntime_Tasks_Geoprocessing_GeoprocessingFeatures__ctor.htm"&gt;GeoprocessingFeatures&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2018 20:49:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121439#M1345</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2018-12-26T20:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to add the parameter(Feature) in geoprocessing server?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121440#M1346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Thanks a lot, but this&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fgithub.com%2FEsri%2Farcgis-runtime-samples-dotnet%2Ftree%2Fmaster%2Fsrc%2FWPF%2FArcGISRuntime.WPF.Viewer%2FSamples%2FGeoprocessing%2FAnalyzeViewshed" rel="nofollow" style="color: #287433; background-color: #ffffff; border: 0px; text-decoration: none; font-size: 14px; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;sample&lt;/A&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;which creates&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fdevelopers.arcgis.com%2Fnet%2Flatest%2Fwpf%2Fapi-reference%2Fhtml%2FOverload_Esri_ArcGISRuntime_Tasks_Geoprocessing_GeoprocessingFeatures__ctor.htm" rel="nofollow" style="color: #287433; background-color: #ffffff; border: 0px; text-decoration: none; font-size: 14px; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;GeoprocessingFeatures&lt;/A&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;&lt;SPAN style="color: #6a737d;"&gt;&amp;nbsp;based upon where the user clicked in the map view and I want to create&amp;nbsp;&lt;A href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fdevelopers.arcgis.com%2Fnet%2Flatest%2Fwpf%2Fapi-reference%2Fhtml%2FOverload_Esri_ArcGISRuntime_Tasks_Geoprocessing_GeoprocessingFeatures__ctor.htm" rel="nofollow" style="color: #287433; background-color: #ffffff; border: 0px; text-decoration: none; font-size: 14px; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;GeoprocessingFeatures&lt;/A&gt;&amp;nbsp;according to my local shapefile path.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #6a737d;"&gt;&lt;A href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fdevelopers.arcgis.com%2Fnet%2Flatest%2Fwpf%2Fapi-reference%2Fhtml%2FOverload_Esri_ArcGISRuntime_Tasks_Geoprocessing_GeoprocessingFeatures__ctor.htm" rel="nofollow" style="color: #287433; background-color: #ffffff; border: 0px; text-decoration: none; font-size: 14px; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;GeoprocessingFeatures&lt;/A&gt;&amp;nbsp;i&lt;SPAN style="color: #2a2a2a;"&gt;nitializes&amp;nbsp;&lt;SPAN&gt;with&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/net/latest/wpf/api-reference/html/T_Esri_ArcGISRuntime_Data_IFeatureSet.htm" style="color: #03697a; text-decoration: none;"&gt;IFeatureSet&lt;/A&gt;&lt;SPAN&gt;. However I couldn't transform feature to feature set.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2018 07:33:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121440#M1346</guid>
      <dc:creator>shenliang</dc:creator>
      <dc:date>2018-12-27T07:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to add the parameter(Feature) in geoprocessing server?‍‍</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121441#M1347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error message sound similar to this bug. By any chance did you use ArcGIS Pro with Japanese Language Pack enabled?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;BUG-000116547:&amp;nbsp;&lt;SPAN&gt;ArcGISWebException - Failed to create service - exception thrown by ArcGIS Runtime local server 100.3 when trying to run a local service from a local geoprocessing package&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;&lt;SPAN style="background-color: #e4e4e4;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #e4e4e4; font-size: 14.6667px;"&gt;Also, you can query shapefile table. The query result is also an IFeatureSet (see&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/latest/wpf/api-reference/html/M_Esri_ArcGISRuntime_Data_FeatureTable_QueryFeaturesAsync.htm"&gt;doc&lt;/A&gt;).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2018 18:53:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121441#M1347</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2018-12-27T18:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to add the parameter(Feature) in geoprocessing server?‍‍</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121442#M1348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. It helps a lot and my geoprocessing task is running&amp;nbsp;properly. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2018 01:25:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-add-the-parameter-feature-in-geoprocessing/m-p/121442#M1348</guid>
      <dc:creator>shenliang</dc:creator>
      <dc:date>2018-12-28T01:25:03Z</dc:date>
    </item>
  </channel>
</rss>

