<?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: applyedits successful but throws error in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225069#M20931</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm running into the same issue. I can correctly apply my edits, but receive the error callback. The features are saved absolutely fine in the geodatabase. I got error TypeError: _271 is undefined.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jul 2013 10:53:27 GMT</pubDate>
    <dc:creator>UrsRichard</dc:creator>
    <dc:date>2013-07-10T10:53:27Z</dc:date>
    <item>
      <title>applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225062#M20924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've been able to successfully use a form to update a feature service using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;testupdate.applyEdits(null, [params], null,&amp;nbsp; function test1(){alert("good to go")}, function(error){
&amp;nbsp; console.log(error);
} );&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However, the error function always throws&amp;nbsp; "TypeError: _17b.setAttributes is not a function" in firebug.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;anyone have any thoughts where to look for this _17b.setAttributes or what it is?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 17:05:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225062#M20924</guid>
      <dc:creator>aubinmaynard</dc:creator>
      <dc:date>2013-03-20T17:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225063#M20925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What does your "params" graphic look like that you are attempting to modify? The name gives me the impression that it is already an array.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Verify that the "params" is a single valid graphic.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Does it have the follwoing properties set correctly?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;graphic.geometry &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;graphic.attributes&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, what feature type is geometry that you are modifying? Note that the Javascript API does not allow you to modify Polylines that are m-aware.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 18:46:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225063#M20925</guid>
      <dc:creator>DianaBenedict</dc:creator>
      <dc:date>2013-03-20T18:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225064#M20926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;what does your [param] graphic look like that you are attempting to modify?&lt;BR /&gt;verify that the following properties are set correctly:&lt;BR /&gt;graphic.geometry &lt;BR /&gt;graphic.attributes&lt;BR /&gt;&lt;BR /&gt;Also, what feature type is geometry that you are modifying? Note that the Javascript API does not allow you to modify Polylines that are m-aware.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;No graphics, i've set the feature service to :&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;function init() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //This sample requires a proxy page to handle communications with the ArcGIS Server services. You will need to&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //replace the url below with the location of a proxy on your machine. See the 'Using the proxy page' help topic 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //for details on setting up a proxy page.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.config.defaults.io.proxyUrl = "proxy.php";
&amp;nbsp; testupdate = new esri.layers.FeatureLayer("https:myservice",{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outFields: ['*']
&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; //build query
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask = new esri.tasks.QueryTask("https:myservice");

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //build query filter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = false;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ['*'];
&amp;nbsp; console.log("php id", ProjID);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(dojo.byId("saveclose"), "onClick", querytable());
&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So there is no graphic, i then generate the param through script, ending with something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;attributes&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; {attributes:{ Project_Name="Ballew Avenue ", Survey_By= "John Smith", Survey_Date="1/24/2012", more...}};&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The edits are successful, but the error still occurs. I'm working with a point layer (no m or z values).&amp;nbsp;&amp;nbsp; Also, firebug is telling me the error happens in FeatureLayer.js (esri file).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:58:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225064#M20926</guid>
      <dc:creator>aubinmaynard</dc:creator>
      <dc:date>2021-12-11T10:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225065#M20927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;what does your [param] graphic look like that you are attempting to modify?&lt;BR /&gt;verify that the following properties are set correctly:&lt;BR /&gt;graphic.geometry &lt;BR /&gt;graphic.attributes&lt;BR /&gt;&lt;BR /&gt;Also, what feature type is geometry that you are modifying? Note that the Javascript API does not allow you to modify Polylines that are m-aware.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;No graphics, i've set the feature service to :&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;function init() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //This sample requires a proxy page to handle communications with the ArcGIS Server services. You will need to&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //replace the url below with the location of a proxy on your machine. See the 'Using the proxy page' help topic 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //for details on setting up a proxy page.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.config.defaults.io.proxyUrl = "proxy.php";
&amp;nbsp; testupdate = new esri.layers.FeatureLayer("https:myservice",{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outFields: ['*']
&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; //build query
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask = new esri.tasks.QueryTask("https:myservice");

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //build query filter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = false;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ['*'];
&amp;nbsp; console.log("php id", ProjID);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(dojo.byId("saveclose"), "onClick", querytable());
&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So there is no graphic, i then generate the param through script, ending with something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;attributes&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; {attributes:{ Project_Name="Ballew Avenue ", Survey_By= "John Smith", Survey_Date="1/24/2012", more...}};&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The edits are successful, but the error still occurs. I'm working with a point layer (no m or z values).&amp;nbsp;&amp;nbsp; Also, firebug is telling me the error happens in FeatureLayer.js (esri file).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:58:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225065#M20927</guid>
      <dc:creator>aubinmaynard</dc:creator>
      <dc:date>2021-12-11T10:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225066#M20928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;are you certain your featureLayer is editable? may be worth throwing it into a arcgis.com map and attempting to create a feature. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe an error with the sde gdb and not your app.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 19:38:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225066#M20928</guid>
      <dc:creator>danbecker</dc:creator>
      <dc:date>2013-03-20T19:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225067#M20929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Assuming that you are using a FeatureService then you should make sure to use the FeatureLayer.queryFeatures methods rather than the query task.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/featurelayer.html#FeatureLayer/queryFeatures"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/featurelayer.html#FeatureLayer/queryFeatures&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once you have retrieved your results, verify that the graphic of interest has the properties that you need.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If not then there is some underlying issue with your service or SDE database (as pointed out in above post).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Test your code with the ESRI sample feature service: &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;where .../0 is the first layer in the feature service that they are interested in.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 19:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225067#M20929</guid>
      <dc:creator>DianaBenedict</dc:creator>
      <dc:date>2013-03-20T19:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225068#M20930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have been using several out of the box samples to successfully edit the geometry and attributes (and in a map) of my Feature Service.&amp;nbsp; A little more background:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. I run a query and populate an extensive html form with the attributes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. on form submit, my script creates the object from the form elements and &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.dumps it into the applyedits function. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. all the fields successfuly update, but&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. my error function still spits out the error.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6. I've recreated my sde.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for help so far, and I'll try to change the query method, and see if that changes anything.&amp;nbsp; Its just really really weird that the update is working, but still an error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Assuming that you are using a FeatureService then you should make sure to use the FeatureLayer.queryFeatures methods rather than the query task.&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/featurelayer.html#FeatureLayer/queryFeatures"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/featurelayer.html#FeatureLayer/queryFeatures&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Once you have retrieved your results, verify that the graphic of interest has the properties that you need.&lt;BR /&gt;&lt;BR /&gt;If not then there is some underlying issue with your service or SDE database (as pointed out in above post).&lt;BR /&gt;&lt;BR /&gt;Test your code with the ESRI sample feature service: &lt;BR /&gt;&lt;A href="http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;where .../0 is the first layer in the feature service that they are interested in.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 20:30:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225068#M20930</guid>
      <dc:creator>aubinmaynard</dc:creator>
      <dc:date>2013-03-20T20:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225069#M20931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm running into the same issue. I can correctly apply my edits, but receive the error callback. The features are saved absolutely fine in the geodatabase. I got error TypeError: _271 is undefined.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2013 10:53:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225069#M20931</guid>
      <dc:creator>UrsRichard</dc:creator>
      <dc:date>2013-07-10T10:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: applyedits successful but throws error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225070#M20932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The issue for me was that my script was sending requests for editing fields that didn't exist, it would update the existing fields and throw an error.&amp;nbsp; It turned out the script that pulled the variables from my form was also pulling non-variable related fields and putting it into the request.&amp;nbsp; If i remember correctly, the issue was specifically related to some code i used to limit the amount of text a user could put in a text area.&amp;nbsp; I suggest using console.log to look at your request and verify all the fields exist in your database.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm running into the same issue. I can correctly apply my edits, but receive the error callback. The features are saved absolutely fine in the geodatabase. I got error TypeError: _271 is undefined.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jul 2013 12:03:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/applyedits-successful-but-throws-error/m-p/225070#M20932</guid>
      <dc:creator>aubinmaynard</dc:creator>
      <dc:date>2013-07-12T12:03:38Z</dc:date>
    </item>
  </channel>
</rss>

