<?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: WFS-T in FlexViewer Widget in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188934#M5802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Samir,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; The source code is in the link you saw in the other post:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://arcscripts.esri.com/details.asp?dbid=16191"&gt;http://arcscripts.esri.com/details.asp?dbid=16191&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;devsummit2009\dist\wfs+wfst\wfst.zip&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jan 2012 17:08:23 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2012-01-16T17:08:23Z</dc:date>
    <item>
      <title>WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188927#M5795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have integrated the code from the 2009 dev summit that employed a flex application (not the standard flexviewer 1.3 or 2.x) for editing data via WFS-T into a widget on the Flexviewer 1.3 application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have it nearly running. In fiddler I can watch proper requests/responses from various WFS services but I am getting a "unable to load features" error on the front end.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is no stack trace or more descriptive error I could find. I have been working this for a while and it seems that others have tried but have been unsuccessful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It may have something to do with how the Flexviewer MapManager or Controller works with graphicslayers but I am unsure. Any assistance is much appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have attached the widget code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2011 14:03:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188927#M5795</guid>
      <dc:creator>AaronGilliland</dc:creator>
      <dc:date>2011-03-31T14:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188928#M5796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Under the WFSLayer.as in the wfst library:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; override public var symbolFunction :Function = function( graphic :Graphic ) :Symbol&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; if( graphic != null &amp;amp;&amp;amp; graphic.geometry != null )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( graphic.geometry is MapPoint )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return new SimpleMarkerSymbol( "circle", 13, 0xfdd0a2, 0.75, new SimpleLineSymbol( "solid", 0xfd8d3c, 1, 2 ) );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( graphic.geometry is Polygon )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return new SimpleFillSymbol( "solid", 0xfdd0a2, 0.75, new SimpleLineSymbol( "solid", 0xfd8d3c, 1, 2 ) );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( graphic.geometry is Polyline )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return new SimpleLineSymbol( "solid", 0xfd8d3c, 1, 3 );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; return null;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;While symbol functions have been deprecated somewhere between 1.1 to 1.3. This I believe is the root of the issue. There may be other unknowns that are creating compatibility issues.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will attempt to update the wfst library to the 1.3 spec then add it to the flex viewer for a wfs widget to use.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 14:02:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188928#M5796</guid>
      <dc:creator>AaronGilliland</dc:creator>
      <dc:date>2011-04-05T14:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188929#M5797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The simpleMarkerSymbol under the new renderer required x,y offset and angle. I added the information into each and compiled the new SWC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See wfst-1.1.zip for the new library that is compliant with Flex 1.3. Just unzip and drop the drop the swc into your lib and away you go.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thus now I have a wfst editor widget working in flexviewer. YAY!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I might publish the widget. If anyone wants it let me know I'll post it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 15:37:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188929#M5797</guid>
      <dc:creator>AaronGilliland</dc:creator>
      <dc:date>2011-04-05T15:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188930#M5798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Aaron, I'm currently gathering information about how to use WFS in a Flex application. I saw the API for Flex does not seem to support it yet, and I was wondering if someone had done a custom WFSLayer component built on top of ESRI's FeatureLayer, or something similar that would allow a Flex application to easily make WFS requests on a MapServer offering WFS services.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yours seems to be an independent component. Can you use such a component to achieve everything the FeatureLayer would?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For instance could I achieve the same things as the FeatureLayer samples?&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/samples/index.html"&gt;http://help.arcgis.com/en/webapi/flex/samples/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If so yes I find this very interesting, I would love to see a working version or short example of an application on how you use it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hopefully ESRI will release a WFS component to make this as easy as their WMSLayer one, but until then I'm looking for alternatives.&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, 10 Jun 2011 18:15:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188930#M5798</guid>
      <dc:creator>YohanBienvenue1</dc:creator>
      <dc:date>2011-06-10T18:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188931#M5799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Aaron, I am getting following error "unable to load SWC wfst-1.1.swc" after copying "wfst-1.1.swc" to the libs folder.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2011 06:28:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188931#M5799</guid>
      <dc:creator>GanapathiRamaraj</dc:creator>
      <dc:date>2011-07-13T06:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188932#M5800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Aaron, I'm currently gathering information about how to use WFS in a Flex application. I saw the API for Flex does not seem to support it yet, and I was wondering if someone had done a custom WFSLayer component built on top of ESRI's FeatureLayer, or something similar that would allow a Flex application to easily make WFS requests on a MapServer offering WFS services.&lt;BR /&gt;&lt;BR /&gt;Yours seems to be an independent component. Can you use such a component to achieve everything the FeatureLayer would?&lt;BR /&gt;&lt;BR /&gt;For instance could I achieve the same things as the FeatureLayer samples?&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/samples/index.html"&gt;http://help.arcgis.com/en/webapi/flex/samples/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If so yes I find this very interesting, I would love to see a working version or short example of an application on how you use it.&lt;BR /&gt;&lt;BR /&gt;Hopefully ESRI will release a WFS component to make this as easy as their WMSLayer one, but until then I'm looking for alternatives.&lt;BR /&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Yohan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would be interested in hearing any progress you've made so far, as I am attempting a very similar solution. If it interests you please let me know at &lt;/SPAN&gt;&lt;A href="mailto:tagiles@gmail.com"&gt;tagiles@gmail.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tom&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2011 17:46:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188932#M5800</guid>
      <dc:creator>TomGiles</dc:creator>
      <dc:date>2011-08-10T17:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188933#M5801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;do you have this library running on flexviewer 2.5? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;or the source code of the wfst-1.1.swc?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2012 14:29:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188933#M5801</guid>
      <dc:creator>samirshamaa</dc:creator>
      <dc:date>2012-01-16T14:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188934#M5802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Samir,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; The source code is in the link you saw in the other post:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://arcscripts.esri.com/details.asp?dbid=16191"&gt;http://arcscripts.esri.com/details.asp?dbid=16191&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;devsummit2009\dist\wfs+wfst\wfst.zip&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2012 17:08:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188934#M5802</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-01-16T17:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188935#M5803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've debugged and updated the code for flexviewer 2.5 and wrote some widget for my needs. I've posted everything on Code gallery: &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=d93a120bffa941baa584bc49a97b85c2"&gt;http://www.arcgis.com/home/item.html?id=d93a120bffa941baa584bc49a97b85c2&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2012 15:01:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188935#M5803</guid>
      <dc:creator>MarcoVassura</dc:creator>
      <dc:date>2012-06-13T15:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188936#M5804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I just started a google code project for wfst-arcgis-viewer. See &lt;/SPAN&gt;&lt;A href="https://code.google.com/p/wfst-arcgis-viewer/"&gt;https://code.google.com/p/wfst-arcgis-viewer/&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have two tags 1.1 and 2.4.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2012 13:14:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188936#M5804</guid>
      <dc:creator>AaronGilliland</dc:creator>
      <dc:date>2012-08-24T13:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: WFS-T in FlexViewer Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188937#M5805</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;Thank you for this great work :), that enable consulting WFS data from ArcGIS Viewer for Flex.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I ask if this widget can edit data or not ? because i make this widget work with my local Geoserver WFS data but it not allow to edit !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the my widget : &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]32863[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you again&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 09:53:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/wfs-t-in-flexviewer-widget/m-p/188937#M5805</guid>
      <dc:creator>xxxlpmo</dc:creator>
      <dc:date>2014-04-07T09:53:16Z</dc:date>
    </item>
  </channel>
</rss>

