<?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: GPResultImageLayer - No Image in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295024#M7587</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You see the layer added to the MXD when you run the tool right?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If yes then what projection is your output in?&amp;nbsp; Is it the same as your Map App?&amp;nbsp; Check your endpoint and see what the GPFeatureRecordSetLayer spatial ref is.&amp;nbsp; It will create a graphic based on this projection and it should match the projection of your application.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you using Fiddler to follow the sent inputs, the processing, and the sent outputs.&amp;nbsp; Fiddle will tell what your server is telling your machine and should help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;J&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Feb 2011 16:22:09 GMT</pubDate>
    <dc:creator>JMcNeil</dc:creator>
    <dc:date>2011-02-02T16:22:09Z</dc:date>
    <item>
      <title>GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295023#M7586</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;I created a simple python script that creates a buffer. I have also created a result map service. However, no result image shows up. I am not sure if it is due to my python script or silverlight code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my python code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
import arcpy, sys, os, string
workspaceName = r"C:\...\databaseconn.sde"
arcpy.env.workspace = workspaceName
arcpy.gp.overwriteOutput=1

result=arcpy.Buffer_analysis("polygon", "polygon_buffer", "5 MILES", "", "", "", "")

featset = result.getOutput(0)
arcpy.SetParameter(0,featset)
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(The polygon feature class has over 10000 polygons).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I add this python script to a toolbox and run the script once and then add the python script to the mxd document (drag and drop). I save the mxd document and from ArcCatalog I publish the service. In the ArcCatalog I can see two services are created. 1. A geoprocessing service and&amp;nbsp; 2. A Map service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;From my silverlight code I call the rest url and execute the task. The task executes successfully:&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; private void button1_Click(object sender, RoutedEventArgs 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; string url = "http://mymachine/ArcGIS/rest/services/GPResultService/GPServer/Buffer";

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Geoprocessor geoprocessorTask = new Geoprocessor(url);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.UpdateDelay = 1000;
&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; geoprocessorTask.Failed += geoprocessorTask_Failed;

&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; geoprocessorTask.SubmitJobAsync(parameters);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }

private void GeoprocessorTask_JobCompleted(object sender, JobInfoEventArgs 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; Geoprocessor geoprocessorTask = sender as Geoprocessor;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.GetResultDataCompleted += (s1, ev1) =&amp;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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (ev1.Parameter is GPFeatureRecordSetLayer)
&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;&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; GPFeatureRecordSetLayer gpLayer = ev1.Parameter as GPFeatureRecordSetLayer;
&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; if (gpLayer.FeatureSet.Features.Count == 0)
&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; {
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.GetResultImageLayerCompleted += (s2, ev2) =&amp;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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GPResultImageLayer gpImageLayer = ev2.GPResultImageLayer;
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gpImageLayer.ID = "BufferLayer";
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gpImageLayer.Opacity = 0.7;

&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myMap.Layers.Add(gpImageLayer);
&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.GetResultImageLayerAsync(e.JobInfo.JobId,"featset");
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;
&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; }
&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;&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; geoprocessorTask.GetResultDataAsync(e.JobInfo.JobId, "featset");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }

&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;geoprocessorTask.GetResultImageLayerCompleted event is raised and the gpImageLayer is added to the map. However there is nothing in the layer I mean I cannot see any image on the map .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone let me know what is wrong&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 15:20:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295023#M7586</guid>
      <dc:creator>IgressT</dc:creator>
      <dc:date>2011-02-02T15:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295024#M7587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You see the layer added to the MXD when you run the tool right?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If yes then what projection is your output in?&amp;nbsp; Is it the same as your Map App?&amp;nbsp; Check your endpoint and see what the GPFeatureRecordSetLayer spatial ref is.&amp;nbsp; It will create a graphic based on this projection and it should match the projection of your application.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you using Fiddler to follow the sent inputs, the processing, and the sent outputs.&amp;nbsp; Fiddle will tell what your server is telling your machine and should help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;J&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 16:22:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295024#M7587</guid>
      <dc:creator>JMcNeil</dc:creator>
      <dc:date>2011-02-02T16:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295025#M7588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You see the layer added to the MXD when you run the tool right?&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;If yes then what projection is your output in?&amp;nbsp; Is it the same as your Map App?&amp;nbsp; Check your endpoint and see what the GPFeatureRecordSetLayer spatial ref is.&amp;nbsp; It will create a graphic based on this projection and it should match the projection of your application.&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Are you using Fiddler to follow the sent inputs, the processing, and the sent outputs.&amp;nbsp; Fiddle will tell what your server is telling your machine and should help.&lt;BR /&gt;&lt;BR /&gt;J&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes I see the layer added to the MXD when I run the tool. The projection of output is same as Map App.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I an trying to to use fiddler (which I don't how to).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 15:28:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295025#M7588</guid>
      <dc:creator>IgressT</dc:creator>
      <dc:date>2011-02-03T15:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295026#M7589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Launch you web application and launch Fiddler.&amp;nbsp; Get to point in your web application right before you fire the GP Query.&amp;nbsp; At this point I usually clear Fiddler (Clicked the Remove Tab and then Click ALL); this is not necessary it just cleans up the previous web traffic.&amp;nbsp; All your new web traffic will add to the left window pane name "Web Session" the new stuff adds to the bottom of the list.&amp;nbsp; You can explore each new session/request by click on it (In the Web Session window panel (left side), then make sure your "Inspector Tab"&amp;nbsp; is click/surpressed and then click on Web Forms tab (within the inspector area) Web forms will make it easy reading for what your computer is sending to the server. Focus on the query string.&amp;nbsp; The first one sent after excuting the GP should spell out the GP inputs.&amp;nbsp; Then watch your session (on the left until it completes) Click on the last one or the last few until you find the one you are looking for....OH YA click "Text View" tab in the bottom/middle right panel.&amp;nbsp; This will make it easy to read what the server is sending you and what is going on...here is where you should see your outputs sent back to your machine.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;J&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 16:04:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295026#M7589</guid>
      <dc:creator>JMcNeil</dc:creator>
      <dc:date>2011-02-03T16:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295027#M7590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Launch you web application and launch Fiddler.&amp;nbsp; Get to point in your web application right before you fire the GP Query.&amp;nbsp; At this point I usually clear Fiddler (Clicked the Remove Tab and then Click ALL); this is not necessary it just cleans up the previous web traffic.&amp;nbsp; All your new web traffic will add to the left window pane name "Web Session" the new stuff adds to the bottom of the list.&amp;nbsp; You can explore each new session/request by click on it (In the Web Session window panel (left side), then make sure your "Inspector Tab"&amp;nbsp; is click/surpressed and then click on Web Forms tab (within the inspector area) Web forms will make it easy reading for what your computer is sending to the server. Focus on the query string.&amp;nbsp; The first one sent after excuting the GP should spell out the GP inputs.&amp;nbsp; Then watch your session (on the left until it completes) Click on the last one or the last few until you find the one you are looking for....OH YA click "Text View" tab in the bottom/middle right panel.&amp;nbsp; This will make it easy to read what the server is sending you and what is going on...here is where you should see your outputs sent back to your machine.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;J&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the brief tutorial... I was able to use the fiddler and as you suggested I was able to monitor the inputs and outputs and it seems like the "Return Map Service" is not executing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I ran the ESRI sample located at &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ClipFeatures"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ClipFeatures&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and was able to see with fiddler that it executes the GP task and returns an Image.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However, my GP task it executes successfully and no image is returned which tells me the "Retrun Map Service" is not returning anything. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any clues? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 17:44:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295027#M7590</guid>
      <dc:creator>IgressT</dc:creator>
      <dc:date>2011-02-03T17:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295028#M7591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you tried submitting job to your GPServer from your web browser? &lt;/SPAN&gt;&lt;A href="http://serverapps.esri.com/ArcGIS/rest/services/SamplesNET/USA_Data_ClipTools/GPServer/ClipCounties/submitJob"&gt;http://serverapps.esri.com/ArcGIS/rest/services/SamplesNET/USA_Data_ClipTools/GPServer/ClipCounties/submitJob&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Since you are already using Fiddler, you can run it with your application to get the input values (Kindly see attached) and then use the same input in your web browser, check to see if you still do not get anything back.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 18:59:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295028#M7591</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-03T18:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295029#M7592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Have you tried submitting job to your GPServer from your web browser? &lt;A href="http://serverapps.esri.com/ArcGIS/rest/services/SamplesNET/USA_Data_ClipTools/GPServer/ClipCounties/submitJob"&gt;http://serverapps.esri.com/ArcGIS/rest/services/SamplesNET/USA_Data_ClipTools/GPServer/ClipCounties/submitJob&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Since you are already using Fiddler, you can run it with your application to get the input values (Kindly see attached) and then use the same input in your web browser, check to see if you still do not get anything back.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;From my silverlight app when I run the code (see at the top of the post) and when the task executes the fiddler shows the following output (see image MyGPTask.png)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As you suggested I submitted the job from the browser and when I click the output I dont see the image but see the following (see image GPBrowser.png)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 19:47:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295029#M7592</guid>
      <dc:creator>IgressT</dc:creator>
      <dc:date>2011-02-03T19:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295030#M7593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That error "exceeded record transfer limit" may be the reason why you are not getting features back. You can look at this help doc &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//000400000009000000.htm"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//000400000009000000.htm&lt;/A&gt;&lt;SPAN&gt;. It might be the MaximumRecords number you need to adjust.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 20:57:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295030#M7593</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-03T20:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295031#M7594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;That error "exceeded record transfer limit" may be the reason why you are not getting features back. You can look at this help doc &lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//000400000009000000.htm"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//000400000009000000.htm&lt;/A&gt;. It might be the MaximumRecords number you need to adjust.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Well my problem is I am not able to return an image using Result Map Service associated with the GP task. Any help regarding that would be great.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 22:37:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295031#M7594</guid>
      <dc:creator>IgressT</dc:creator>
      <dc:date>2011-02-03T22:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295032#M7595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Go to your gp service under manager and edit it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First go to the Parameters tab and bump up your - Maximum Number of Records Returned by Server: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GO CRAZY and set it to something like 50000&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then Go to the pooling tab. and GO CRAZY on&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The maximum time a client can use a service:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The maximum time a client will wait to get a service:&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The maximum time an idle instance can be kept running:&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Give them like a &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;60000 seconds&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6000 seconds&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;80000 seconds&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Don't tell ESRI I said this because I think it might affect performance :rolleyes: when running this GP Service but for now just see if works.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 22:51:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295032#M7595</guid>
      <dc:creator>JMcNeil</dc:creator>
      <dc:date>2011-02-03T22:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: GPResultImageLayer - No Image</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295033#M7596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Go to your gp service under manager and edit it.&lt;BR /&gt;&lt;BR /&gt;First go to the Parameters tab and bump up your - Maximum Number of Records Returned by Server: &lt;BR /&gt;GO CRAZY and set it to something like 50000&lt;BR /&gt;&lt;BR /&gt;Then Go to the pooling tab. and GO CRAZY on&lt;BR /&gt;The maximum time a client can use a service:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;The maximum time a client will wait to get a service:&amp;nbsp; &lt;BR /&gt;The maximum time an idle instance can be kept running:&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Give them like a &lt;BR /&gt;60000 seconds&lt;BR /&gt;6000 seconds&lt;BR /&gt;80000 seconds&lt;BR /&gt;&lt;BR /&gt;Don't tell ESRI I said this because I think it might affect performance :rolleyes: when running this GP Service but for now just see if works.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the info. However, it doesn't seem to work for me as no image is being returned (checked in fiddler also).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 23:49:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/gpresultimagelayer-no-image/m-p/295033#M7596</guid>
      <dc:creator>IgressT</dc:creator>
      <dc:date>2011-02-03T23:49:29Z</dc:date>
    </item>
  </channel>
</rss>

