<?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: Problem with the Silverlight Find task in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11808#M270</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;When you perform Find from your web browser, do you use the same parameters that your application use? Can you verify that these parameters are correct and both app and browser yield to same result? Please refer to post#14 from this thread to guide you on what to look for when running Fiddler with your app &lt;A href="http://forums.arcgis.com/threads/14730-Area-And-Perimeter"&gt;http://forums.arcgis.com/threads/14730-Area-And-Perimeter&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Appending "&amp;amp;f=json" to the Url should not have caused this error. I tried the same here: &lt;A href="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/find?searchText=Alabama&amp;amp;contains=true&amp;amp;searchFields=&amp;amp;sr=&amp;amp;layers=1&amp;amp;returnGeometry=true&amp;amp;f=pjson"&gt;http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/find?searchText=Alabama&amp;amp;contains=true&amp;amp;searchFields=&amp;amp;sr=&amp;amp;layers=1&amp;amp;returnGeometry=true&amp;amp;f=pjson&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HELP!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; "error" : &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "code" : 500, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "message" : "Object reference not set to an instance of an object.", &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "details" : []&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jun 2012 08:28:43 GMT</pubDate>
    <dc:creator>DaiDai1</dc:creator>
    <dc:date>2012-06-22T08:28:43Z</dc:date>
    <item>
      <title>Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11798#M260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've followed the instuctions from this : &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/2.1/help/Find_task.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/2.1/help/Find_task.htm&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But every time i clik the Find button i get this error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Find error: ESRI.ArcGIS.Client.Tasks.ServiceException: Object not set to an instance of an object.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;my c# code from the click event:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; 
findTask = new FindTask("REMOVED HERE But Valid url used");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findTask.ExecuteCompleted += new EventHandler&amp;lt;FindEventArgs&amp;gt;(findTask_ExecuteCompleted);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findTask.Failed += new EventHandler&amp;lt;TaskFailedEventArgs&amp;gt;(findTask_Failed);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FindParameters findParameters = new FindParameters();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findParameters.LayerIds.AddRange(new int[] { 6, 8 }); //layer id for vejnavne
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findParameters.SearchFields.AddRange(new string[] { "VEJNAVN" });
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findParameters.ReturnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findParameters.SearchText = autoCompleteAdresse.Text.ToUpper();

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //debug data
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyTextBlock.Text = findParameters.SearchFields[0].ToString() + " " + findParameters.SearchText + " " + findParameters.LayerIds.ToString() + findTask.Url;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findTask.ExecuteAsync(findParameters);
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any idea whats is Wrong?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:30:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11798#M260</guid>
      <dc:creator>JacobSaugmann</dc:creator>
      <dc:date>2021-12-10T20:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11799#M261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A first glance your code looks good.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I suggest that:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) you verify that your service is working well by testing the 'Find' url : &amp;lt;mapServiceUrl&amp;gt;/Find&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Example of Url with ArcGISServiceOnLine : &lt;/SPAN&gt;&lt;A href="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/Find"&gt;http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/Find&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) use fiddler to look at the requests sent by your silverlight application. Hopefully this will give a clue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 15:19:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11799#M261</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-11-03T15:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11800#M262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Maybe you just slipped up in your cutting and pasting, but shouldn't the first line read:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;FindTask&lt;/STRONG&gt;&lt;SPAN&gt; findTask = new FindTask("REMOVED HERE But Valid url used");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just in case.....&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 12:55:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11800#M262</guid>
      <dc:creator>MatthewCarey</dc:creator>
      <dc:date>2010-11-10T12:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11801#M263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm having the same problem.&amp;nbsp; If I access the "find tool" directly from the REST url, it &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;almost&lt;/SPAN&gt;&lt;SPAN&gt; works.&amp;nbsp; The result information I get is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# results: 1

59957S44858
&amp;nbsp;&amp;nbsp;&amp;nbsp; Feature ID: -1
&amp;nbsp;&amp;nbsp;&amp;nbsp; Field Name: Grid Number
&amp;nbsp;&amp;nbsp;&amp;nbsp; Layer: Pole&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It doesn't return a proper Feature ID, any of the attributes, or the geometry (even though it was requested.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Next, if I add "&amp;amp;f=json" to the end of the request to get a JSON response, the response I get is: &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;{"error":{"code":500,"message":"Object reference not set to an instance of an object.","details":[]}}.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There definitely seems to be something wrong on the server side here.&amp;nbsp; Has anybody been able to resolve this issue?&amp;nbsp; For some reason everything works on the ESRI sample map services.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:30:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11801#M263</guid>
      <dc:creator>TomJohnson</dc:creator>
      <dc:date>2021-12-10T20:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11802#M264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When you perform Find from your web browser, do you use the same parameters that your application use? Can you verify that these parameters are correct and both app and browser yield to same result? Please refer to post#14 from this thread to guide you on what to look for when running Fiddler with your app &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/14730-Area-And-Perimeter"&gt;http://forums.arcgis.com/threads/14730-Area-And-Perimeter&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Appending "&amp;amp;f=json" to the Url should not have caused this error. I tried the same here: &lt;/SPAN&gt;&lt;A href="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/find?searchText=Alabama&amp;amp;contains=true&amp;amp;searchFields=&amp;amp;sr=&amp;amp;layers=1&amp;amp;returnGeometry=true&amp;amp;f=pjson"&gt;http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/find?searchText=Alabama&amp;amp;contains=true&amp;amp;searchFields=&amp;amp;sr=&amp;amp;layers=1&amp;amp;returnGeometry=true&amp;amp;f=pjson&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 18:19:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11802#M264</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-11-30T18:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11803#M265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, a have a same problem. When i set the Direct Connect in project and restart service the Silverlight App send request like this &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;.../Find?searchText=11086&amp;amp;contains=true&amp;amp;returnGeometry=true&amp;amp;searchFields=OBJECTID&amp;amp;layers=1&amp;amp;&lt;STRONG&gt;f=json&lt;/STRONG&gt;&amp;amp;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;and i have an error &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;{"error":{"code":500,"message":"Object reference not set to an instance of an object.","details":[]}}&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;But when i try to send the request without parameter f=json i get expected result. Where is the solve?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 09:37:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11803#M265</guid>
      <dc:creator>EugeneChuguy</dc:creator>
      <dc:date>2010-12-03T09:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11804#M266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you tried creating the web request from your web browser? Error 500 is from the Service? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's hard to suggest a fix. I don't understand the problem. Does it work if you don't append "&amp;amp;f=json"?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 15:30:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11804#M266</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-12-03T15:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11805#M267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Im still struggling with this problem, i get Object not set to instance of an object, or Error 500, the string looks ok(i use Firebug in Firefox) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;this is the url&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;https://gis.verdo.dk/ArcGIS/rest/services/GRUNDKORT/GrundkortRDS/MapServer//Find?searchText=B%C3%B8sbrovej&amp;amp;contains=true&amp;amp;returnGeometry=true&amp;amp;searchFields=VEJNAVN&amp;amp;layers=8&amp;amp;f=json&amp;amp;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When i remove f=json&amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the server returns 379 results all with the feature id = -1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any idea??&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Dec 2010 12:05:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11805#M267</guid>
      <dc:creator>JacobSaugmann</dc:creator>
      <dc:date>2010-12-20T12:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11806#M268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are using ArcGIS 9.3 please make sure you have installed the latest service packs. The reason I'm suggesting this is that it looks like if the rows returned from your request contain some special characters like quote, double quote, etc... the REST request fails to return the results. More information on this thread: &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/11834-Error-500-with-JSON-in-Find-operation"&gt;http://forums.arcgis.com/threads/11834-Error-500-with-JSON-in-Find-operation&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Dec 2010 14:59:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11806#M268</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2010-12-20T14:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11807#M269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;YES YES YES YES &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;An upgrade to sp2 solved my problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;THANKS&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Merry Christmas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 05:43:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11807#M269</guid>
      <dc:creator>JacobSaugmann</dc:creator>
      <dc:date>2010-12-21T05:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11808#M270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;When you perform Find from your web browser, do you use the same parameters that your application use? Can you verify that these parameters are correct and both app and browser yield to same result? Please refer to post#14 from this thread to guide you on what to look for when running Fiddler with your app &lt;A href="http://forums.arcgis.com/threads/14730-Area-And-Perimeter"&gt;http://forums.arcgis.com/threads/14730-Area-And-Perimeter&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Appending "&amp;amp;f=json" to the Url should not have caused this error. I tried the same here: &lt;A href="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/find?searchText=Alabama&amp;amp;contains=true&amp;amp;searchFields=&amp;amp;sr=&amp;amp;layers=1&amp;amp;returnGeometry=true&amp;amp;f=pjson"&gt;http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/find?searchText=Alabama&amp;amp;contains=true&amp;amp;searchFields=&amp;amp;sr=&amp;amp;layers=1&amp;amp;returnGeometry=true&amp;amp;f=pjson&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HELP!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; "error" : &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "code" : 500, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "message" : "Object reference not set to an instance of an object.", &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "details" : []&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 08:28:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11808#M270</guid>
      <dc:creator>DaiDai1</dc:creator>
      <dc:date>2012-06-22T08:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the Silverlight Find task</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11809#M271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Could you share the Url of the request returning this error? This might give a clue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 12:02:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/problem-with-the-silverlight-find-task/m-p/11809#M271</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-06-22T12:02:03Z</dc:date>
    </item>
  </channel>
</rss>

