<?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: Getting error while instantiation of CreateDriveTimeAreas in ArcGIS Network Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413221#M3896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check this codepen&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/subgan82/pen/MQOMmj/?editors=1000" title="https://codepen.io/subgan82/pen/MQOMmj/?editors=1000"&gt;CreateDriveTimeAreas&lt;/A&gt;&amp;nbsp;&amp;nbsp;, this sample works, you need not pass `fl.name`. let me know if this is working.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2018 00:36:20 GMT</pubDate>
    <dc:creator>GaneshSubbiah</dc:creator>
    <dc:date>2018-04-04T00:36:20Z</dc:date>
    <item>
      <title>Getting error while instantiation of CreateDriveTimeAreas</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413216#M3891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create drive time areas for a point. When I call the routine I get the following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;Uncaught Error: string.substitute could not find key "layername" in template&lt;BR /&gt;at js.arcgis.com/3.21/init.js:376&lt;BR /&gt;at String.replace (&amp;lt;anonymous&amp;gt;)&lt;BR /&gt;at Object.r.substitute (js.arcgis.com/3.21/init.js:376)&lt;BR /&gt;at Object._updateAnalysisLayerUI (js.arcgis.com/3.21/esri/dijit/analysis/CreateDriveTimeAreas.js:22)&lt;BR /&gt;at Object._buildUI (js.arcgis.com/3.21/esri/dijit/analysis/CreateDriveTimeAreas.js:20)&lt;BR /&gt;at Object.postCreate (js.arcgis.com/3.21/esri/dijit/analysis/CreateDriveTimeAreas.js:8)&lt;BR /&gt;at Object.create (js.arcgis.com/3.21/init.js:350)&lt;BR /&gt;at Object.postscript (js.arcgis.com/3.21/init.js:349)&lt;BR /&gt;at Object.advice (js.arcgis.com/3.21/init.js:119)&lt;BR /&gt;at Object.c [as postscript] (js.arcgis.com/3.21/init.js:119)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Background -&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I have a small area FeatureLayer on ArcGIS online from which I am creating an activeFeatureLayer programmatically and is as well the active layer on the visible map.&lt;/LI&gt;&lt;LI&gt;I also have a mapLayer that is created as an overlay on the current active layers on the map. This layer holds information regarding the drop point on the map with/without buffer distance.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am following the javascript jsapi 3 documentation(&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fdevelopers.arcgis.com%2Fjavascript%2F3%2Fjsapi%2Fcreatedrivetimeareas-amd.html%23createdrivetimeareas1" rel="nofollow" target="_blank"&gt;https://developers.arcgis.com/javascript/3/jsapi/createdrivetimeareas-amd.html#createdrivetimeareas1&lt;/A&gt;&lt;SPAN&gt;) for this. This is what I am doing -&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;SPAN&gt;var activeFeatureLayer = new FeatureLayer("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fservices5.arcgis.com%2F" rel="nofollow" target="_blank"&gt;https://services5.arcgis.com/&lt;/A&gt;&lt;SPAN&gt;&amp;lt;auth_id&amp;gt;/arcgis/rest/services/&amp;lt;layer_id&amp;gt;/FeatureServer/0");&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;var createDriveTimeAreas = new CreateDriveTimeAreas({&lt;BR /&gt;inputLayer: activeFeatureLayer,&lt;BR /&gt;inputType: "point",&lt;BR /&gt;map: this.map,&lt;BR /&gt;showReadyToUseLayers: false, // to disable an option to the UI that allows users to choose ready to use analysis layers from the Living Atlas Analysis Layers&lt;BR /&gt;&lt;SPAN&gt;portalUrl: "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fgeofac.maps.arcgis.com" rel="nofollow" target="_blank"&gt;https://&amp;lt;server&amp;gt;.maps.arcgis.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;}, "analysis-tool");&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The code breaks when the instantiation of the CreateDriveTimesAreas is called.&lt;/LI&gt;&lt;LI&gt;I am not sure whether&amp;nbsp;is pertaining to portalUrl.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please tell me what I am doing wrong here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2017 11:20:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413216#M3891</guid>
      <dc:creator>WilliamHynes</dc:creator>
      <dc:date>2017-11-01T11:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error while instantiation of CreateDriveTimeAreas</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413217#M3892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I posted this here too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/message/678700-getting-a-stringsubstitute-could-not-find-key-layername-in-template-error-when-trying-to-initalize-createdrivetimeareas"&gt;https://community.esri.com/message/678700-getting-a-stringsubstitute-could-not-find-key-layername-in-template-error-when-trying-to-initalize-createdrivetimeareas&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you add a "name" property to your input layer, you'll work around there.&amp;nbsp; In the CreateDriveTimeAreas code, "layername" is set to your inputLayer.name.&amp;nbsp; Layers from ArcGIS Online have this.&amp;nbsp; Layers created from instantiating your own FeatureLayer do not.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Basically, add:&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;activeFeatureLayer.name = "Some name";&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Unfortunately, in my own case, I still could not get CreateDriveTimeAreas to work, but the step above did get rid of that "layername" error message for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 19:52:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413217#M3892</guid>
      <dc:creator>MattNicol</dc:creator>
      <dc:date>2018-02-15T19:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error while instantiation of CreateDriveTimeAreas</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413218#M3893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We will fix this issue in coming release of JSAPI. you can use the current workaround you suggested above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;Unfortunately, in my own case, I still could not get CreateDriveTimeAreas to work&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share your sample code here so we can take a look at it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: black;"&gt;Ganesh Subbiah | Software Developer | JSAPI/ArcGIS Online Team&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2018 16:22:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413218#M3893</guid>
      <dc:creator>GaneshSubbiah</dc:creator>
      <dc:date>2018-02-16T16:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error while instantiation of CreateDriveTimeAreas</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413219#M3894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The errors above is more due to a configuration setting that was needed in the above code shared.&lt;/P&gt;&lt;P&gt;Here is a working sample :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All Analysis Widgets support 2 UX styles , to allow the input layer to be changed via dropdown (default) or not.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jsapi/createdrivetimeareas-amd.html#showselectanalysislayer" title="https://developers.arcgis.com/javascript/3/jsapi/createdrivetimeareas-amd.html#showselectanalysislayer"&gt;CreateDriveTimeAreas | ShowSelectAnalysisLayer &lt;/A&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;ShowSelectAnalysisLayer : Default is true&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;1. Create Drive Time Areas with Fixed Input Layer :&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/subgan82/pen/jZajyP/?editors=1000" title="https://codepen.io/subgan82/pen/jZajyP/?editors=1000"&gt;https://codepen.io/subgan82/pen/jZajyP/?editors=1000&lt;/A&gt;&amp;nbsp;&amp;nbsp;: This was based on the code above, by setting ShowSelectAnalysisLayer to false, the&amp;nbsp;Widget Works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create Drive Time Areas with changeable Input Layers ( step 1)&lt;A class="link-titled" href="https://codepen.io/subgan82/pen/MQOMmj/?editors=1000" title="https://codepen.io/subgan82/pen/MQOMmj/?editors=1000"&gt;https://codepen.io/subgan82/pen/MQOMmj/?editors=1000&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When ShowSelectAnalysisLayer is true, Widget requires to set this property. We will add this in documentation.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;inputLayers: [array of possible inputlayers]&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: black; background-color: #ffffff; border: 0px; font-weight: bold;"&gt;Ganesh Subbiah | Software Developer | JSAPI/ArcGIS Online Team&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2018 17:22:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413219#M3894</guid>
      <dc:creator>GaneshSubbiah</dc:creator>
      <dc:date>2018-02-16T17:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error while instantiation of CreateDriveTimeAreas</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413220#M3895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's a little tricky to post my code here without posting some sensitive data, but basically, I do get the Create Drive Time Areas widget to render with no visible errors.&amp;nbsp; However, when I click "Show Credits" or "Run Analysis," the container the widget is housed in scrolls up instead of running.&amp;nbsp; I'm assuming it's trying to highlight some sort of client validation error, but nothing is shown. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can give you more details privately if needed, but a snippet of my code to initialize the widget is below.&amp;nbsp; I am using the 3.23 version of the API that's configured automatically through a downloaded WebApp Builder application that I'm writing my own custom widget for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var fl = new FeatureLayer(myFeatureLayer.url, { opacity: 0.5 });&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fl.name = "My Layer";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var cdtaOpts = {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inputLayer: fl, ,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inputLayers: [fl],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inputType: "point",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map: myMap,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; portalUrl: "&lt;A href="https://myurl.maps.arcgis.com"&gt;https://myurl.maps.arcgis.com&lt;/A&gt;",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showCredits: true,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showSelectAnalysisLayer: true,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showReadyToUseLayers: false,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showChooseExtent: false&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var cdta = new CreateDriveTimeAreas(cdtaOpts, "createDriveTimeContainer");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cdta.startup();&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2018 21:21:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413220#M3895</guid>
      <dc:creator>MattNicol</dc:creator>
      <dc:date>2018-02-16T21:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error while instantiation of CreateDriveTimeAreas</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413221#M3896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check this codepen&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/subgan82/pen/MQOMmj/?editors=1000" title="https://codepen.io/subgan82/pen/MQOMmj/?editors=1000"&gt;CreateDriveTimeAreas&lt;/A&gt;&amp;nbsp;&amp;nbsp;, this sample works, you need not pass `fl.name`. let me know if this is working.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 00:36:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/getting-error-while-instantiation-of/m-p/413221#M3896</guid>
      <dc:creator>GaneshSubbiah</dc:creator>
      <dc:date>2018-04-04T00:36:20Z</dc:date>
    </item>
  </channel>
</rss>

