<?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 Clip and ship geoprocessing service to be utilized in silverlight app in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clip-and-ship-geoprocessing-service-to-be-utilized/m-p/437205#M11290</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;Since we were almost unable to find any example or usable code for us we thought that we might ask here as well. The fact is that we are going to develop a function in our exisiting web-app which would use clipAndship geoprocessing task. The problem is that we did not find any example codes to start with. What we would be interested in is here anybody who has relevant experience in including clipandship function or just wants us to help in that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What we have tried is to include the clip features example code, but it doesnt seem to work!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We would appreciate any help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sampath and Tamas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jul 2010 10:24:16 GMT</pubDate>
    <dc:creator>TamasHajdu</dc:creator>
    <dc:date>2010-07-26T10:24:16Z</dc:date>
    <item>
      <title>Clip and ship geoprocessing service to be utilized in silverlight app</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clip-and-ship-geoprocessing-service-to-be-utilized/m-p/437205#M11290</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;Since we were almost unable to find any example or usable code for us we thought that we might ask here as well. The fact is that we are going to develop a function in our exisiting web-app which would use clipAndship geoprocessing task. The problem is that we did not find any example codes to start with. What we would be interested in is here anybody who has relevant experience in including clipandship function or just wants us to help in that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What we have tried is to include the clip features example code, but it doesnt seem to work!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We would appreciate any help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sampath and Tamas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jul 2010 10:24:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clip-and-ship-geoprocessing-service-to-be-utilized/m-p/437205#M11290</guid>
      <dc:creator>TamasHajdu</dc:creator>
      <dc:date>2010-07-26T10:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Clip and ship geoprocessing service to be utilized in silverlight app</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clip-and-ship-geoprocessing-service-to-be-utilized/m-p/437206#M11291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Duplicate with &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/9001-Clip-and-ship-geoprocessing-service-to-be-utilized-in-silverlight-app"&gt;http://forums.arcgis.com/threads/9001-Clip-and-ship-geoprocessing-service-to-be-utilized-in-silverlight-app&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jul 2010 13:31:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clip-and-ship-geoprocessing-service-to-be-utilized/m-p/437206#M11291</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-07-26T13:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Clip and ship geoprocessing service to be utilized in silverlight app</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clip-and-ship-geoprocessing-service-to-be-utilized/m-p/437207#M11292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The Extract Data and Email Task model that is in ArcGIS Server 10 needs to be modified a bit in order to use with silverlight. Currently the GPMultiValue:GPString data type is not in the API so the Layer to be clipped must be fixed in the model itself. Other parameters can be passed normally. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's what I did:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Create a graphics layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Create a Draw object for drawing polygons add them to the graphics layer for display&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Add all the polygons drawn by the user to the parameter of type GPFeatureRecordSetLayer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GraphicsLayer graphicsLayer = MyMap.Layers["MyGraphicsLayer"] as GraphicsLayer;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Graphic graphic = new Graphic()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Geometry = args.Geometry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Symbol = _activeSymbol&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicsLayer.Graphics.Add(graphic);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;parameters.Add(new GPFeatureRecordSetLayer("Area_of_Interest", args.Geometry));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Then add the rest of the parameter and finally submit the job&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 11:47:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clip-and-ship-geoprocessing-service-to-be-utilized/m-p/437207#M11292</guid>
      <dc:creator>AnandUpadhya</dc:creator>
      <dc:date>2010-08-04T11:47:33Z</dc:date>
    </item>
  </channel>
</rss>

