<?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: HowTo :: Input Multiple Parameters for QuickExport GP Tool via AO in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536761#M14545</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok I'm stuck again... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This time it is to do with the UNC path for the output GML file. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I provide a UNC output path, QuickExport is not able to create a file at the remote location:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2010-10-07 15:17:54| 7.8| 0.0|ERROR |Unable to open output file: '\\172.21.53.82\GML Test\test.xsd'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2010-10-07 15:17:54| 7.8| 0.0|ERROR |&amp;lt;GML Writer&amp;gt; - Unable to create the GML application schema in the specified path '\\172.21.53.82\GML Test\test.xsd'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS: Remote location is a shared folder with Read/Write/Modify privilege to everyone.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Local path works fine...any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Oct 2010 09:02:24 GMT</pubDate>
    <dc:creator>UjjwalNigam</dc:creator>
    <dc:date>2010-10-07T09:02:24Z</dc:date>
    <item>
      <title>HowTo :: Input Multiple Parameters for QuickExport GP Tool via AO</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536758#M14542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have been trying to export a layer as GML using ArcObjects (AO).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am able to do it successfully when there is a single layer in the map, but I could not find any information regarding adding multiple input layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Should I simply repeat the code, like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;pParameterEdit.Value = pDataType.CreateValue("test")&lt;/STRONG&gt;&lt;SPAN&gt;, replacing test with the new layer name...or,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Should I add multiple layer names within the same string, like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;pParameterEdit.Value = pDataType.CreateValue("test, test2")&lt;/STRONG&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have used the follwoing code to add input layer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;'Set input/output parameters&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pParameter = pParamArray.Element(0) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pParameterEdit = pParameter&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pDataType = pParameter.DataType&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pParameterEdit.Value = pDataType.CreateValue("test")&amp;nbsp; &amp;lt;--- This is where I want to add one more layer as input...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'Output Parameter&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pParameter = pParamArray.Element(1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pParameterEdit = pParameter&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pDataType = pParameter.DataType&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pParameterEdit.Value = pDataType.CreateValue("GMLSF, D:\Ujjwal\GMLConversion\test_two.gml")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ujjwal&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 07:57:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536758#M14542</guid>
      <dc:creator>UjjwalNigam</dc:creator>
      <dc:date>2010-09-21T07:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: HowTo :: Input Multiple Parameters for QuickExport GP Tool via AO</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536759#M14543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The following document describes some options for dealing with multi-value inputs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/d/00010000049w000000.htm"&gt;Building a custom geoprocessing function tool&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See the "Multiple values" section.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 15:57:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536759#M14543</guid>
      <dc:creator>JohnHauck</dc:creator>
      <dc:date>2010-09-21T15:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: HowTo :: Input Multiple Parameters for QuickExport GP Tool via AO</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536760#M14544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks John!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But I've found the solution...and it's way simpler and something I earlier anticipated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To export multiple layers, simply delimit the layer names with a semi colon ";"...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;pParameterEdit.Value = pDataType.CreateValue("Layer1;Layer2")&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Things could get funny at times...I was looking all around for a solution for the last few days...wish I had used a semi-colon instead of a comma &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But Thanks again... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 09:08:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536760#M14544</guid>
      <dc:creator>UjjwalNigam</dc:creator>
      <dc:date>2010-09-23T09:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: HowTo :: Input Multiple Parameters for QuickExport GP Tool via AO</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536761#M14545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok I'm stuck again... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This time it is to do with the UNC path for the output GML file. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I provide a UNC output path, QuickExport is not able to create a file at the remote location:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2010-10-07 15:17:54| 7.8| 0.0|ERROR |Unable to open output file: '\\172.21.53.82\GML Test\test.xsd'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2010-10-07 15:17:54| 7.8| 0.0|ERROR |&amp;lt;GML Writer&amp;gt; - Unable to create the GML application schema in the specified path '\\172.21.53.82\GML Test\test.xsd'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS: Remote location is a shared folder with Read/Write/Modify privilege to everyone.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Local path works fine...any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 09:02:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536761#M14545</guid>
      <dc:creator>UjjwalNigam</dc:creator>
      <dc:date>2010-10-07T09:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: HowTo :: Input Multiple Parameters for QuickExport GP Tool via AO</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536762#M14546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK, I got this working!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Strangely, it accepts a 'mapped drive' but doesn't work with IP! &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; Ok I'm stuck again... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp; &lt;BR /&gt;This time it is to do with the UNC path for the output GML file.&amp;nbsp;&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt;If I provide a UNC output path, QuickExport is not able to create a file at the remote location:&amp;nbsp; &lt;BR /&gt; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;2010-10-07 15:17:54| 7.8| 0.0|ERROR |Unable to open output file: '\\172.21.53.82\GML Test\test.xsd'&lt;BR /&gt;2010-10-07 15:17:54| 7.8| 0.0|ERROR |&amp;lt;GML Writer&amp;gt; - Unable to create the GML application schema in the specified path '\\172.21.53.82\GML Test\test.xsd'.&lt;/SPAN&gt; &lt;BR /&gt; &lt;BR /&gt;PS: Remote location is a shared folder with Read/Write/Modify privilege to everyone.&amp;nbsp; &lt;BR /&gt;Local path works fine...any ideas?&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 04:07:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/howto-input-multiple-parameters-for-quickexport-gp/m-p/536762#M14546</guid>
      <dc:creator>UjjwalNigam</dc:creator>
      <dc:date>2010-10-12T04:07:05Z</dc:date>
    </item>
  </channel>
</rss>

