<?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: Geoprocessing problem in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679616#M17493</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; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this is the URL you are trying to use, then I believe it needs to be encoded.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;the url i am using in the geoprocessing task is as follows:&lt;BR /&gt; &lt;BR /&gt;&lt;A href="http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model"&gt;http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model&lt;/A&gt; 3a Traffic Zone Population Estimate&lt;BR /&gt; &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You should try&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;&lt;A href="http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model%203a%20Traffic%20Zone%20Population%20Estimate"&gt;http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model%203a%20Traffic%20Zone%20Population%20Estimate&lt;/A&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Aug 2011 15:45:36 GMT</pubDate>
    <dc:creator>PaulHuppé</dc:creator>
    <dc:date>2011-08-19T15:45:36Z</dc:date>
    <item>
      <title>Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679606#M17483</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;BR /&gt;&lt;SPAN&gt;I have setup a test Python script which simply accepts 2 parameters and which returns an email to the user.&amp;nbsp; I have included the script in a Toolbox and have published the Toolbox.&amp;nbsp; If I run the Python script manually, it works.&amp;nbsp; If I run the tool using the REST interface, it works.&amp;nbsp; When I try to run it from inside my Silverlight application, it just hangs.&amp;nbsp; It does not even seem to make it to the server.&amp;nbsp; Following are some pieces of the code I am using. Can anyone spot the problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string restServerURL = "http://myserver.name/ArcGIS/rest/services/";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Geoprocessor geoprocessorTask = null;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Start timer for task
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _processingTimer = new System.Windows.Threading.DispatcherTimer();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _processingTimer.Interval = new TimeSpan(0, 0, 0, 5, 0);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _processingTimer.Tick += ProcessingTimer_Tick;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _processingTimer.Start();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask = new Geoprocessor(restServerURL + "TestSendEmail/GPServer/SendEmail");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.UpdateDelay = 5000;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.JobCompleted += GeoprocessorTask_JobCompleted;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;GPParameter&amp;gt; parameters = new List&amp;lt;GPParameter&amp;gt;();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Pass the user's email to send them the zip file
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameters.Add(new GPString("EmailTo", tbEmail.Text));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Pass the layer names to the Geoprocessing service
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameters.Add(new GPString("DesiredLayers", _layerNames));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.SubmitJobAsync(parameters);
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 11:35:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679606#M17483</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2010-11-01T11:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679607#M17484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you tried running Fiddler while you run your SL app to see where it hangs?&amp;nbsp; Also, have you tried debugging the SL app to see if the parameters it passes to your task are correct?&amp;nbsp; Can you also try to use the same parameters in the browser? You can look at this post for reference post# 14 &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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 16:24:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679607#M17484</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-11-01T16:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679608#M17485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried debugging the SL app and the parameters are ok.&amp;nbsp; I got the information from Fiddler and tried it in the browser&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
http://s5-bsc-ims2.nrn.nrcan.gc.ca/ArcGIS/rest/services/TestSendEmail/GPServer/SendEmail/submitJob?EmailTo=huppe%40nrcan.gc.ca&amp;amp;DesiredLayers=Big+Lakes%7cBoundary%7cInternational+Borders%7cProvinces%7cSendEmail&amp;amp;f=json&amp;amp;HTTP/1.1
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;I got the following result:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;{"error":{"code":500,"message":"Error Submitting Job","details":[]}}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But, if I do the same thing via the REST intnterface,&lt;/SPAN&gt;&lt;BR /&gt;&lt;IMG src="http://gdr.ess.nrcan.gc.ca/pic1.png" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I get:&lt;/SPAN&gt;&lt;BR /&gt;&lt;IMG src="http://gdr.ess.nrcan.gc.ca/pic2.png" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:37:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679608#M17485</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2021-12-12T04:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679609#M17486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You used the same parameters found in Fiddler under Inspectors &amp;gt; WebForms tab?&amp;nbsp; The error 500 that you see is a ServiceException from JSON. Unfortunately there are no further details, usually details will say invalid input. But you said the parameters from SL app when used in the browser will submit the job without error.&amp;nbsp; I'm not sure what to tell you. I'll check whether URL encode has something to do with it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 17:25:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679609#M17486</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-11-01T17:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679610#M17487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, I used the same parameters.&amp;nbsp; It sucks that we do not get any information from the error message.&amp;nbsp; It does not help much!!&amp;nbsp; I wish I knew what to try next!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 17:30:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679610#M17487</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2010-11-01T17:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679611#M17488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt; &lt;A href="http://s5-bsc-ims2.nrn.nrcan.gc.ca/ArcGIS/rest/services/TestSendEmail/GPServer/SendEmail/submitJob?EmailTo=huppe%40nrcan.gc.ca&amp;amp;" rel="nofollow"&gt;http://s5-bsc-ims2.nrn.nrcan.gc.ca/ArcGIS/rest/services/TestSendEmail/GPServer/SendEmail/submitJob?EmailTo=huppe%40nrcan.gc.ca&amp;amp;&lt;/A&gt; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;DesiredLayers&lt;/SPAN&gt;=Big+Lakes%7cBoundary%7cInternational+Borders%7cProvinces%7cSendEmail&amp;amp;f=json&amp;amp;HTTP/1.1&amp;nbsp; &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this the correct input name?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 17:36:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679611#M17488</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-11-01T17:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679612#M17489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, that was it!!!&amp;nbsp; I have been starring at this stuff for so long, I could not spot the obvious.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 17:40:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679612#M17489</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2010-11-01T17:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679613#M17490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know this thread is old, but I am so happy that you helped me find my problem, I wanted to say thanks. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You know, I spent SO much time checking, and re-checking the input parameter values and testing using the services directory, I never actually double checked the &lt;/SPAN&gt;&lt;STRONG&gt;input parameter names&lt;/STRONG&gt;&lt;SPAN&gt; themselves. Duh!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Such relief!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Richard.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2011 09:29:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679613#M17490</guid>
      <dc:creator>RichardKaufholz</dc:creator>
      <dc:date>2011-05-06T09:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679614#M17491</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; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Glad this could help. Sometimes the obvious errors are the hardest to spot!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2011 10:22:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679614#M17491</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2011-05-06T10:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679615#M17492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello folks, i am having the same issue, and i was wondering what the restrictions are for naming conventions in geoprocessing task parameters (async). I have a service with 3 parameters, all are of GPFeatureRecordSetLayer dataType. I know the names are strange, but thats just the way our in house dev team set them up so i can test them. They are as follows(everything within the "" is a part of the parameter name):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"Enter a Graphical Boundary or a Boundary Feature Class:"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Traffic_Zone_2001_POP2001"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Blank.DBO.Blank_Boundary_Land"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the url i am using in the geoprocessing task is as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model"&gt;http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model&lt;/A&gt;&lt;SPAN&gt; 3a Traffic Zone Population Estimate&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;These names will change before they are delivered, but i wanted to check with the community to be sure. The 2032 stream error is so annoying. Thanks everyone&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2011 15:17:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679615#M17492</guid>
      <dc:creator>morgandawe</dc:creator>
      <dc:date>2011-08-19T15:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679616#M17493</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; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this is the URL you are trying to use, then I believe it needs to be encoded.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;the url i am using in the geoprocessing task is as follows:&lt;BR /&gt; &lt;BR /&gt;&lt;A href="http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model"&gt;http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model&lt;/A&gt; 3a Traffic Zone Population Estimate&lt;BR /&gt; &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You should try&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;&lt;A href="http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model%203a%20Traffic%20Zone%20Population%20Estimate"&gt;http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model%203a%20Traffic%20Zone%20Population%20Estimate&lt;/A&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2011 15:45:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679616#M17493</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2011-08-19T15:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679617#M17494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for your response paul. I have updated the gp service with the new URL, and changed my parameter names to have underscores. my geo processing code looks like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var params:Object = new Object();
&amp;nbsp;&amp;nbsp;&amp;nbsp; params = { 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Enter_a_Graphical_Boundary_or_a_Boundary_Feature_Class_": boundryFS,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Traffic_Zone_2001_POP2001": popFS,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "York_DBO_York_Boundary_Land": landFS}; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.useAMF= false;
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.submitJob(params);
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and my gp task looks like this in code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 &amp;lt;esri:Geoprocessor id="gp" url="http://geoserver1/ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model%203a%20Traffic%20Zone%20Population%20Estimate"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fault="gp_faultHandler(event)" useAMF="false"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jobComplete="gp_jobCompleteHandler(event)"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; executeComplete="modelServices_executeCompleteHandler(event)"/&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will update this post with images of my service end point. I appreciate any feedback on this matter. Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT: I have attached some shots of my rest end point and parameters, in case they show any obvious issues:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://imageshack.us/photo/my-images/687/endparam.png/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://imageshack.us/photo/my-images/687/endparam.png/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;AND&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://imageshack.us/photo/my-images/3/endinputparam.png/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://imageshack.us/photo/my-images/3/endinputparam.png/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sharing these images with imageShack, but they dont seam to show up in the IMG tag's.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am still getting the stream error 2032. Thanks for looking at my issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:37:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679617#M17494</guid>
      <dc:creator>morgandawe</dc:creator>
      <dc:date>2021-12-12T04:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679618#M17495</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; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it now working for you with these changes?&amp;nbsp; If so, I am glad I could help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 10:19:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679618#M17495</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2011-08-22T10:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679619#M17496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am afraid it is still causing me grief, but i am grateful for your assistance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 10:32:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679619#M17496</guid>
      <dc:creator>morgandawe</dc:creator>
      <dc:date>2011-08-22T10:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679620#M17497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can try using Fiddler to see all the communication between the application and theservice. Sometimes that helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 11:13:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679620#M17497</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2011-08-22T11:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679621#M17498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the tip paul, i havent tried fiddler, but it looks to be responding with the same kind of data firebug was. The response is as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Result Protocol Host URL Body Caching Content-Type Process Comments Custom &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;57 500 HTTP geoserver1 /ArcGIS/rest/services/YrGeoView_Population_tools/Model3/GPServer/Model%203a%20Traffic%20Zone%20Population%20Estimate/submitJob 3,037 private&amp;nbsp;&amp;nbsp; text/html; charset=utf-8 firefox:6964 &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;firebug shows the same thing. Do you have any suggestions on how to use fiddler effectively to help solve this issue? could this be a security issue on the server? The service is meant to create an output table (two actually, a file geodatabase and an access database). I can see the service is running in arcCatalog but i cant see any service output dir, or that the service has even run.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 12:18:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679621#M17498</guid>
      <dc:creator>morgandawe</dc:creator>
      <dc:date>2011-08-22T12:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679622#M17499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Fiddler will probably not show much more than Firebug.&amp;nbsp; Like you, it seems you are also new to all this geoprocessing stuff.&amp;nbsp; Does your model work fine if you try it directly in ArcGIS?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 12:33:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679622#M17499</guid>
      <dc:creator>PaulHuppé</dc:creator>
      <dc:date>2011-08-22T12:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679623#M17500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The service does work when run from the dev machine through arcMap.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 12:39:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679623#M17500</guid>
      <dc:creator>morgandawe</dc:creator>
      <dc:date>2011-08-22T12:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Geoprocessing problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679624#M17501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Which API are you using?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If it's JavaScript, you should post your question to this forum : &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/forums/15-ArcGIS-API-for-JavaScript"&gt;http://forums.arcgis.com/forums/15-ArcGIS-API-for-JavaScript&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2011 12:08:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/geoprocessing-problem/m-p/679624#M17501</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-08-30T12:08:44Z</dc:date>
    </item>
  </channel>
</rss>

