<?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: OGC Feature in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1615336#M13562</link>
    <description>&lt;P&gt;Hello Tim!&amp;nbsp; We are working on some OGC compatibility improvements for the next 200.x release of Maps SDK.&amp;nbsp; I was able to get your service working in a development build:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2025-05-16_004443 msedge.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/132391i63855A6982291A9F/image-size/large?v=v2&amp;amp;px=999" role="button" title="2025-05-16_004443 msedge.png" alt="2025-05-16_004443 msedge.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will post another update when these improvements are generally available.&lt;/P&gt;</description>
    <pubDate>Fri, 16 May 2025 08:05:59 GMT</pubDate>
    <dc:creator>MatveiStefarov</dc:creator>
    <dc:date>2025-05-16T08:05:59Z</dc:date>
    <item>
      <title>OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1404594#M12591</link>
      <description>&lt;P&gt;Hi, I'm using Esri ArcGIS Runtime Version 100.15 (WPF) and trying to integrate OGC Layers into my App.&lt;/P&gt;&lt;P&gt;I'm creating the layer as follows:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;var featureTable = new OgcFeatureCollectionTable(new Uri(layer.Path), layer.Layers);
var featureLayer = new FeatureLayer(featureTable);
MapView.Map.OperationalLayers.Add(featureLayer);&lt;/LI-CODE&gt;&lt;P&gt;This works with the following Demo-Service:&amp;nbsp;&lt;A href="https://demo.ldproxy.net/daraa" target="_blank"&gt;https://demo.ldproxy.net/daraa&lt;/A&gt;&amp;nbsp;(Layer:&amp;nbsp;AeronauticCrv)&lt;/P&gt;&lt;P&gt;But with my Service, I'm getting the Error:&amp;nbsp;&lt;EM&gt;Esri.ArcGISRuntime.ArcGISRuntimeException: JSON parser invalid token: Error processing OGC_feature service JSON response&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P data-unlink="true"&gt;The layer ist hosted on a QGIS Server.&lt;/P&gt;&lt;P&gt;In the background there are three requests made by ArcGIS (random order):&lt;/P&gt;&lt;P&gt;1. {{myService}}/wfs3/conformance?f=json:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;{
  "conformsTo": [
    "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core",
    "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30",
    "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/html",
    "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"
  ],
  "links": [
    {
      "href": "{{myService}}/wfs3/conformance.json?f=json",
      "rel": "self",
      "title": "WFS 3.0 conformance classes as JSON",
      "type": "application/json"
    },
    {
      "href": "{{myService}}/wfs3/conformance.html?f=json",
      "rel": "alternate",
      "title": "WFS 3.0 conformance classes as HTML",
      "type": "text/html"
    }
  ],
  "timeStamp": "2024-04-02T13:27:53Z"
}&lt;/LI-CODE&gt;&lt;P&gt;2. {{myService}}/wfs3/?f=json:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;{
  "links": [
    {
      "href": "{{myService}}/wfs3.json?f=json",
      "rel": "self",
      "title": "Landing page as JSON",
      "type": "application/json"
    },
    {
      "href": "{{myService}}/wfs3.html?f=json",
      "rel": "alternate",
      "title": "Landing page as HTML",
      "type": "text/html"
    },
    {
      "href": "{{myService}}/wfs3/collections?f=json",
      "rel": "data",
      "title": "Feature collections",
      "type": "application/json"
    },
    {
      "href": "{{myService}}/wfs3/conformance?f=json",
      "rel": "conformance",
      "title": "Conformance classes",
      "type": "application/json"
    },
    {
      "href": "{{myService}}/wfs3/api?f=json",
      "rel": "service-desc",
      "title": "API description",
      "type": "application/vnd.oai.openapi+json;version=3.0"
    }
  ],
  "timeStamp": "2024-04-02T13:50:57Z"
}&lt;/LI-CODE&gt;&lt;P&gt;3. {{myService}}/wfs3/collections:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;{
  "collections": [
    {
      "crs": [
        "http://www.opengis.net/def/crs/OGC/1.3/CRS84",
        "http://www.opengis.net/def/crs/EPSG/0/2056"
      ],
      "description": "",
      "extent": {
        "spatial": {
          "bbox": [
            [
              8.5432806926619662,
              47.277310340812157,
              8.5797099388509857,
              47.301822424772524
            ]
          ],
          "crs": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
        },
        "temporal": {
          "interval": null,
          "trs": "http://www.opengis.net/def/uom/ISO-8601/0/Gregorian"
        }
      },
      "id": "{{myLayer}}",
      "links": [
        {
          "href": "{{myService}}/wfs3/collections/{{myLayer}}/items.json?f=json",
          "rel": "item",
          "title": "{{myLayer}} as GeoJSON",
          "type": "application/geo+json"
        },
        {
          "href": "{{myService}}/wfs3/collections/{{myLayer}}/items.html?f=json",
          "rel": "item",
          "title": "{{myLayer}} as HTML",
          "type": "text/html"
        }
      ],
      "title": "{{myLayer}}"
    },
    ...
  ],
  "crs": [
    "http://www.opengis.net/def/crs/OGC/1.3/CRS84",
    "http://www.opengis.net/def/crs/EPSG/0/2056"
  ],
  "links": [
    {
      "href": "{{myService}}/wfs3/collections.json?f=json",
      "rel": "self",
      "title": "Feature collections as JSON",
      "type": "application/json"
    },
    {
      "href": "{{myService}}/wfs3/collections.html?f=json",
      "rel": "alternate",
      "title": "Feature collections as HTML",
      "type": "text/html"
    }
  ],
  "timeStamp": "2024-04-02T13:50:57Z"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried to load the layer in the online ArcGIS MapViewer but this also didn't work and didn't give me any more information.&lt;/P&gt;&lt;P&gt;Does anyone have an Idea what the problem could be? What are the conformance requirements of the .Net Maps SDK?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2024 14:10:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1404594#M12591</guid>
      <dc:creator>TimScheiber</dc:creator>
      <dc:date>2024-04-02T14:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1404814#M12593</link>
      <description>&lt;P&gt;Hi Tim,&amp;nbsp;&lt;/P&gt;&lt;P&gt;The generic JSON error that you are getting tells me something went wrong when parsing the response from&amp;nbsp;&lt;/P&gt;&lt;P&gt;"{myService}/wfs3/collections/{myLayer}/items?f=json"&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll be happy to investigate this problem further if you can provide a link to your OGC API - Features service that I can test with.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Hisham&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2024 19:20:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1404814#M12593</guid>
      <dc:creator>HishamMassih</dc:creator>
      <dc:date>2024-04-02T19:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1405081#M12594</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Hisham,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I think the problem has to be within the three requests I posted originally. I'm using a proxy to view all the requests made by ArcGIS and the layer/collection itself is never queried.&lt;BR /&gt;These are the only requests made:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimScheiber_1-1712135850809.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/99879iE2081DD7371FD54C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TimScheiber_1-1712135850809.png" alt="TimScheiber_1-1712135850809.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 09:18:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1405081#M12594</guid>
      <dc:creator>TimScheiber</dc:creator>
      <dc:date>2024-04-03T09:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1406687#M12604</link>
      <description>&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;The above three responses that you shared seem OK to me. At this point, I need to reproduce the problem on my machine to conduct further investigation. Please&amp;nbsp;&lt;SPAN&gt;host any sample service on a QGIS Server and share the landing page with me.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hisham&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 22:09:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1406687#M12604</guid>
      <dc:creator>HishamMassih</dc:creator>
      <dc:date>2024-04-05T22:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1408907#M12619</link>
      <description>&lt;P&gt;Hi Hisham&lt;/P&gt;&lt;P&gt;The service I'm trying to integrate is reachable under the following address:&amp;nbsp;&lt;A href="https://th_sambesi.ogc.thalwil.ch/wfs3" target="_blank"&gt;https://th_sambesi.ogc.thalwil.ch/wfs3&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2024 08:38:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1408907#M12619</guid>
      <dc:creator>TimScheiber</dc:creator>
      <dc:date>2024-04-12T08:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1410012#M12626</link>
      <description>&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;Thanks for sharing the landing page for your service. I was able to reproduce the problem. We currently rely on servers following the common URL pattern for retrieving items i.e.,&amp;nbsp;"myService}/wfs3/collections/{myLayer}/items?f=json"; however, this service&amp;nbsp;only works with a specific pattern&amp;nbsp;&lt;A href="https://th_sambesi.ogc.thalwil.ch/wfs3/collections/hydrant/items.json" target="_blank"&gt;https://th_sambesi.ogc.thalwil.ch/wfs3/collections/hydrant/items.json&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We will enhance our client to recognize custom URL patterns in the server metadata. We already have an internal dev issue for this improvement.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hisham&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 00:21:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1410012#M12626</guid>
      <dc:creator>HishamMassih</dc:creator>
      <dc:date>2024-04-16T00:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1411708#M12631</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Hisham,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you for analyzing my issue.&lt;BR /&gt;Can you give me any information on when a solution will be released?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 15:14:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1411708#M12631</guid>
      <dc:creator>TimScheiber</dc:creator>
      <dc:date>2024-04-18T15:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1495389#M12810</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are there any updates on the status of this issue?&lt;/P&gt;&lt;P&gt;Is there any plan to release the&lt;SPAN&gt;&amp;nbsp;client's enhancement to recognize custom URL patterns in the server metadata anytime soon?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 14:52:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1495389#M12810</guid>
      <dc:creator>TimScheiber</dc:creator>
      <dc:date>2024-06-20T14:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1549526#M13069</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/113377"&gt;@HishamMassih&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you give me any information about the status of this issue?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 14:57:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1549526#M13069</guid>
      <dc:creator>TimScheiber</dc:creator>
      <dc:date>2024-10-17T14:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1615336#M13562</link>
      <description>&lt;P&gt;Hello Tim!&amp;nbsp; We are working on some OGC compatibility improvements for the next 200.x release of Maps SDK.&amp;nbsp; I was able to get your service working in a development build:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2025-05-16_004443 msedge.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/132391i63855A6982291A9F/image-size/large?v=v2&amp;amp;px=999" role="button" title="2025-05-16_004443 msedge.png" alt="2025-05-16_004443 msedge.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will post another update when these improvements are generally available.&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 08:05:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1615336#M13562</guid>
      <dc:creator>MatveiStefarov</dc:creator>
      <dc:date>2025-05-16T08:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: OGC Feature</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1637766#M13619</link>
      <description>&lt;P&gt;Good news, &lt;A href="https://www.esri.com/arcgis-blog/products/developers/announcements/whats-new-in-arcgis-maps-sdks-for-native-apps-200-8" target="_self"&gt;Maps SDK 200.8.0 was just released&lt;/A&gt;, and it includes several OGC compatibility improvements. Please let us know if you are still seeing any issues with this service.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 19:07:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/ogc-feature/m-p/1637766#M13619</guid>
      <dc:creator>MatveiStefarov</dc:creator>
      <dc:date>2025-07-30T19:07:01Z</dc:date>
    </item>
  </channel>
</rss>

