<?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: reg : Geoprocessing Service in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407480#M10604</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How was your issue resolved?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2012 18:45:27 GMT</pubDate>
    <dc:creator>Reynaldde_Castro</dc:creator>
    <dc:date>2012-04-26T18:45:27Z</dc:date>
    <item>
      <title>reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407469#M10593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am having problem with geoprocessing service . Below is my code behind . As soon as my MyMap_Mouseclick event is complete there is no response after tat . My browser is idle displaying the map point . Can anybody tell me what could be the problem . I have attached the JPG of my model as well &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Private Sub MyMap_MouseClick(ByVal sender As System.Object, ByVal e As ESRI.ArcGIS.Client.Map.MouseEventArgs)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _processingTimer.Start()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayer"), GraphicsLayer)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyMap.Cursor = System.Windows.Input.Cursors.Wait&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim mapPoint As ESRI.ArcGIS.Client.Geometry.MapPoint = e.MapPoint&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapPoint.SpatialReference = MyMap.SpatialReference&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; Dim graphic As New Graphic() With {.Symbol = DefaultFillSymbol, .Geometry = mapPoint}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicsLayer.Graphics.Add(graphic)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim geoprocessorTask As New Geoprocessor("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://epps65335.campus.ad.utdallas.edu/arcgis/rest/services/test/GPServer/Model" rel="nofollow" target="_blank"&gt;http://epps65335.campus.ad.utdallas.edu/arcgis/rest/services/test/GPServer/Model&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; geoprocessorTask.UpdateDelay = 5000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AddHandler geoprocessorTask.JobCompleted, AddressOf GeoprocessorTask_JobCompleted&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'AddHandler geoprocessorTask.ExecuteCompleted, AddressOf GeoprocessorTask_ExecuteCompleted&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; Dim parameters As New List(Of GPParameter)()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameters.Add(New GPFeatureRecordSetLayer("Feature_Set", e.MapPoint))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'parameters.Add(New GPLinearUnit("Linear_unit", esriUnits.esriFeet, Double.Parse("20000")))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'geoprocessorTask.OutputSpatialReference = MyMap.SpatialReference&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; geoprocessorTask.SubmitJobAsync(parameters)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Private Sub GeoprocessorTask_JobCompleted(ByVal sender As Object, ByVal e As JobInfoEventArgs)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim geoprocessorTask As Geoprocessor = TryCast(sender, Geoprocessor)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AddHandler geoprocessorTask.GetResultDataCompleted, AddressOf GeoprocessorTask_GetResultDataCompleted&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoprocessorTask.GetResultDataAsync(e.JobInfo.JobId, "Output_Feature_Class", e.JobInfo.JobId)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 16:52:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407469#M10593</guid>
      <dc:creator>VikramS</dc:creator>
      <dc:date>2010-09-27T16:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407470#M10594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Do you change your map cursor after GeoprocessorTask_GetResultDataCompleted? Or does it remain on System.Windows.Input.Cursors.Wait?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 17:17:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407470#M10594</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-09-27T17:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407471#M10595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You might want to listen for the Failed event as well. Your request is probably failing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If that's the case, first make sure the service works from the plain HTML REST interface. The look in Fiddler (&lt;/SPAN&gt;&lt;A href="http://www.fiddlertool.com"&gt;www.fiddlertool.com&lt;/A&gt;&lt;SPAN&gt;) and try and understand what requests and responses (or lack of) that there are. Did any fail? Did the request parameters look ok? What did the server respond? etc.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 18:25:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407471#M10595</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-09-27T18:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407472#M10596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Morten , &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I installed fiddlertool . I am getting below error . &lt;/SPAN&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;BLOCKQUOTE class="jive-quote"&gt;You might want to listen for the Failed event as well. Your request is probably failing.&lt;BR /&gt;If that's the case, first make sure the service works from the plain HTML REST interface. The look in Fiddler (&lt;A href="http://www.fiddlertool.com"&gt;www.fiddlertool.com&lt;/A&gt;) and try and understand what requests and responses (or lack of) that there are. Did any fail? Did the request parameters look ok? What did the server respond? etc.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 19:18:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407472#M10596</guid>
      <dc:creator>VikramS</dc:creator>
      <dc:date>2010-09-27T19:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407473#M10597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Were you able to execute the tool from the HTML webpage outside of Silverlight?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 19:26:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407473#M10597</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-09-27T19:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407474#M10598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Now i am getting this error ..It is giving {"error":{"code":500,"message":"Job \u0027jcec98feb7d9f4ed19ae1b1b8357b9686\u0027 does not exist or is inaccessible.","details":[]}}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Morten , &lt;BR /&gt;&lt;BR /&gt;I installed fiddlertool . I am getting below error . &lt;BR /&gt;{"error":{"code":500,"message":"Error Submitting Job","details":[]}}&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 19:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407474#M10598</guid>
      <dc:creator>VikramS</dc:creator>
      <dc:date>2010-09-27T19:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407475#M10599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It sounds like you a trying to access a job that hasn't been created.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you call SubmitJob first? Is your GP tool even asynchronous? (if not you should execute the tool and not submit it)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 21:34:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407475#M10599</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-09-27T21:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407476#M10600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;CAn u pls tell me what input do i need to give to check whether my tool is working out of silverlight &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have attached the Submitjob Snapshot ..That would be a great help .. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;It sounds like you a trying to access a job that hasn't been created.&lt;BR /&gt;Did you call SubmitJob first? Is your GP tool even asynchronous? (if not you should execute the tool and not submit it)&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 22:16:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407476#M10600</guid>
      <dc:creator>VikramS</dc:creator>
      <dc:date>2010-09-27T22:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407477#M10601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That really depends on how you configured your service and what it expects (look at the previous page that describes the service metadata for specific details on the parameters). Next click the "Help" link in the upper right to read about the expected syntax.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure that when you execute your GP tool from Silverlight, that the parameters you provided is of the same type as the Input parameters specify in the mentioned metadata.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 00:15:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407477#M10601</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-09-28T00:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407478#M10602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Now i m getting the below error .. {"jobId":"jc2f7f9358aea47d1abe29965a0b42bd9","jobStatus":"esriJobFailed","results":[],"inputs":[],"messages":[{"type":"esriJobMessageTypeInformative","description":"Submitted."},{"type":"esriJobMessageTypeInformative","description":"Executing..."},{"type":"esriJobMessageTypeError","description":"Failed."}]}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have attached the metadata of my service as well with this reply .. I am not having any clue where am i going wrong .. Can u put some light on it .. Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;That really depends on how you configured your service and what it expects (look at the previous page that describes the service metadata for specific details on the parameters). Next click the "Help" link in the upper right to read about the expected syntax.&lt;BR /&gt; &lt;BR /&gt;Make sure that when you execute your GP tool from Silverlight, that the parameters you provided is of the same type as the Input parameters specify in the mentioned metadata.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 04:58:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407478#M10602</guid>
      <dc:creator>VikramS</dc:creator>
      <dc:date>2010-09-28T04:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407479#M10603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In my Model the ouput is having a geometry type of Point . How can i change the geometry of output .&lt;/SPAN&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;That really depends on how you configured your service and what it expects (look at the previous page that describes the service metadata for specific details on the parameters). Next click the "Help" link in the upper right to read about the expected syntax.&lt;BR /&gt; &lt;BR /&gt;Make sure that when you execute your GP tool from Silverlight, that the parameters you provided is of the same type as the Input parameters specify in the mentioned metadata.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Sep 2010 14:38:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407479#M10603</guid>
      <dc:creator>VikramS</dc:creator>
      <dc:date>2010-09-29T14:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: reg : Geoprocessing Service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407480#M10604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How was your issue resolved?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 18:45:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/reg-geoprocessing-service/m-p/407480#M10604</guid>
      <dc:creator>Reynaldde_Castro</dc:creator>
      <dc:date>2012-04-26T18:45:27Z</dc:date>
    </item>
  </channel>
</rss>

