<?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: Update attributes in FeatureLayer in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736253#M18864</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OnDemand makes no since for a layer that isn't in a map. I'm guessing that the null reference occurs when the layer looks for the Map extent to determine the envelope parameter to pass on to the server. If you need to manage the collection size in a disconnected layer, use the Where parameter.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2012 18:54:48 GMT</pubDate>
    <dc:creator>DanielWalton</dc:creator>
    <dc:date>2012-05-03T18:54:48Z</dc:date>
    <item>
      <title>Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736244#M18855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a featurelayer and want to edit (update) the attributes of the records. How can I do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My featurelayer.Graphics is always 0. I can do featurelayer.Graphics.Add(newfeature) and it will add a new feature to my database, no problem there. But how can I retrieve the features, edit them and save them back to the database? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 14:27:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736244#M18855</guid>
      <dc:creator>S_Dee</dc:creator>
      <dc:date>2010-11-02T14:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736245#M18856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you're using AGS 10, use the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitEditorWidget"&gt;EditorWidget&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 14:34:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736245#M18856</guid>
      <dc:creator>DanielWalton</dc:creator>
      <dc:date>2010-11-02T14:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736246#M18857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;To clarify: I want to edit only the attributes (not geometries, some of my layers don't even have geometries, they are just tables) and I want to do it in code. If somebody has a code example, that would be great.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 14:42:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736246#M18857</guid>
      <dc:creator>S_Dee</dc:creator>
      <dc:date>2010-11-02T14:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736247#M18858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For a given Graphic object you can set its attributes as easy as the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
...
&lt;SPAN style="color:#2b91af;"&gt;Graphic&lt;/SPAN&gt; g = featureLayer.Graphics[idx];&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:green;"&gt;// idx = index in GraphicCollection of FeatureLayer for edit&lt;/SPAN&gt;
g.Attributes[&lt;SPAN style="color:#a31515;"&gt;"ATTRIBUTE_NAME"&lt;/SPAN&gt;] = NEW_VALUE;
...
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:22:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736247#M18858</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2021-12-12T07:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736248#M18859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was hoping it would work like that. My problem seems to be a different one. My featureLayer.Graphics.Count == 0 even after initializing the layer. This what I'm trying:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureLayer fLayer = new FeatureLayer()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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; ID = "MyLayer",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&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; Url = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://mySercer/ArcGIS/rest/services/CI/FeatureServer/0" rel="nofollow" target="_blank"&gt;http://mySercer/ArcGIS/rest/services/CI/FeatureServer/0&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fLayer.Initialized += new EventHandler&amp;lt;EventArgs&amp;gt;(fLayer_Initialized);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fLayer.Initialize();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The event handler:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; void fLayer_Initialized(object sender, EventArgs e)&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show(this.fLayer.Graphics.Count.ToString()); // this is 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bool test = fLayer.IsInitialized; // this is true&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Graphic newGraphic = new Graphic();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fLayer.Graphics.Add(newGraphic); // this works, a new record is added to the database&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;BR /&gt;&lt;SPAN&gt;So, even after initializing the layer, the Graphics collection is empty (but I can add new records). What am I missing?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 11:38:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736248#M18859</guid>
      <dc:creator>S_Dee</dc:creator>
      <dc:date>2010-11-03T11:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736249#M18860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Instead of calling Initialize() directly, just add the layer to your map control. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MyMap.Layers.Add(fLayer);&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 11:50:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736249#M18860</guid>
      <dc:creator>DanielWalton</dc:creator>
      <dc:date>2010-11-03T11:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736250#M18861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After adding the FeatureLayer to the map, the Graphics collection is populated after UpdateCompleted fired and I can edit attributes. I can use this as a workaround, but ideally I don't want to add the FeatureLayer to the map, because there's nothing to display in the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If I call FeatureLayer.Update() on a FeatureLayer that is not added to the map I get a NullReferenceException, even if it is initialized first.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 14:52:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736250#M18861</guid>
      <dc:creator>S_Dee</dc:creator>
      <dc:date>2010-11-03T14:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736251#M18862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you don't want to add the layer to your map you should invoke the Update() method of the FeatureLayer after your layer gets initialized. See the code snippet below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&lt;SPAN style="color:blue;"&gt;private&lt;/SPAN&gt; &lt;SPAN style="color:blue;"&gt;void&lt;/SPAN&gt; fLayer_Initialized(&lt;SPAN style="color:blue;"&gt;object&lt;/SPAN&gt; sender, &lt;SPAN style="color:#2b91af;"&gt;EventArgs&lt;/SPAN&gt; e)
&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; fLayer.UpdateCompleted += &lt;SPAN style="color:blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color:#2b91af;"&gt;EventHandler&lt;/SPAN&gt;(fLayer_UpdateCompleted);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fLayer.Update();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;SPAN style="color:blue;"&gt;private&lt;/SPAN&gt; &lt;SPAN style="color:blue;"&gt;void&lt;/SPAN&gt; fLayer_UpdateCompleted(&lt;SPAN style="color:blue;"&gt;object&lt;/SPAN&gt; sender, &lt;SPAN style="color:#2b91af;"&gt;EventArgs&lt;/SPAN&gt; e)
&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; &lt;SPAN style="color:#2b91af;"&gt;MessageBox&lt;/SPAN&gt;.Show(&lt;SPAN style="color:blue;"&gt;this&lt;/SPAN&gt;.fLayer.Graphics.Count.ToString()); &lt;SPAN style="color:green;"&gt;// this is not zero&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:22:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736251#M18862</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2021-12-12T07:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736252#M18863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is unresolved? I have looked for the solution to this problem in several posts but i can't find it, what i'm doing wrong? with mode set to snapshot i have no problem, i can add, modify and delete graphics, but when i change to ondemand gives me a NullReferenceException&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;flProgramas.Url = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://absoluteurl" rel="nofollow" target="_blank"&gt;http://absoluteurl&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.Where = "1=1";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.AutoSave = false;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.Mode = FeatureLayer.QueryMode.OnDemand;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.OutFields = new ESRI.ArcGIS.Client.Tasks.OutFields() { "*" };&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.Initialized += (s, e) =&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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; flProgramas.UpdateCompleted += fLayer_UpdateCompleted;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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; flProgramas.UpdateFailed += flProgramas_UpdateFailed;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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; flProgramas.Update();&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;-----------------------------Right here&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;};&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.Initialize();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.EndSaveEdits += flProgramas_EndSaveEdits;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;flProgramas.SaveEditsFailed += flProgramas_SaveEditsFailed;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i'm working with tables, and i need to use ondemand because i have a lot of rows,&amp;nbsp; thanks in advance&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 18:49:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736252#M18863</guid>
      <dc:creator>EduardoMartinez</dc:creator>
      <dc:date>2012-05-03T18:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Update attributes in FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736253#M18864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OnDemand makes no since for a layer that isn't in a map. I'm guessing that the null reference occurs when the layer looks for the Map extent to determine the envelope parameter to pass on to the server. If you need to manage the collection size in a disconnected layer, use the Where parameter.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 18:54:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/update-attributes-in-featurelayer/m-p/736253#M18864</guid>
      <dc:creator>DanielWalton</dc:creator>
      <dc:date>2012-05-03T18:54:48Z</dc:date>
    </item>
  </channel>
</rss>

