<?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 Can someone help me with wms service? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Can-someone-help-me-with-wms-service/m-p/1665299#M50061</link>
    <description>&lt;P&gt;Hello, I have this wms url service:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A href="http://www.protezionecivile.gov.it/geowebcache/service/wms?SERVICE=WMS&amp;amp;VERSION=1.1.1&amp;amp;REQUEST=getcapabilities&amp;amp;TILED=true" target="_blank"&gt;http://www.protezionecivile.gov.it/geowebcache/service/wms?SERVICE=WMS&amp;amp;VERSION=1.1.1&amp;amp;REQUEST=getcapabilities&amp;amp;TILED=true&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Can someone help me to add this wms into a qlik sense map?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Riccardo&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jan 2020 09:24:18 GMT</pubDate>
    <dc:creator>Riccardo</dc:creator>
    <dc:date>2020-01-14T09:24:18Z</dc:date>
    <item>
      <title>Can someone help me with wms service?</title>
      <link>https://community.qlik.com/t5/App-Development/Can-someone-help-me-with-wms-service/m-p/1665299#M50061</link>
      <description>&lt;P&gt;Hello, I have this wms url service:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A href="http://www.protezionecivile.gov.it/geowebcache/service/wms?SERVICE=WMS&amp;amp;VERSION=1.1.1&amp;amp;REQUEST=getcapabilities&amp;amp;TILED=true" target="_blank"&gt;http://www.protezionecivile.gov.it/geowebcache/service/wms?SERVICE=WMS&amp;amp;VERSION=1.1.1&amp;amp;REQUEST=getcapabilities&amp;amp;TILED=true&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Can someone help me to add this wms into a qlik sense map?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Riccardo&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 09:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Can-someone-help-me-with-wms-service/m-p/1665299#M50061</guid>
      <dc:creator>Riccardo</dc:creator>
      <dc:date>2020-01-14T09:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can someone help me with wms service?</title>
      <link>https://community.qlik.com/t5/App-Development/Can-someone-help-me-with-wms-service/m-p/1665312#M50066</link>
      <description>&lt;P&gt;Hi Riccardo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This XML is a bit broken.&lt;/P&gt;&lt;P&gt;Here - I fixed it for you (First several rows needed to be removed)&lt;/P&gt;&lt;P&gt;Then you can use this code (pls adapt to QS first):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;'GetFeatureInfo/Format':
LOAD Format%Table,
    %Key_WMT_MS_Capabilities_37F52D64EE5C2AEF    // Key to parent table: WMT_MS_Capabilities
FROM [Preps.xml] (XmlSimple, Table is [WMT_MS_Capabilities/Capability/Request/GetFeatureInfo/Format]);

Exit SCRIPT;
'GetLegendGraphic/Format':
LOAD Format%Table,
    %Key_WMT_MS_Capabilities_37F52D64EE5C2AEF    // Key to parent table: WMT_MS_Capabilities
FROM [Preps.xml] (XmlSimple, Table is [WMT_MS_Capabilities/Capability/Request/GetLegendGraphic/Format]);

WMT_MS_Capabilities:
LOAD version,
    [Capability/VendorSpecificCapabilities/TileSet/SRS] as [TileSet/SRS],
    [Capability/VendorSpecificCapabilities/TileSet/Resolutions] as Resolutions,
    [Capability/VendorSpecificCapabilities/TileSet/Width] as Width,
    [Capability/VendorSpecificCapabilities/TileSet/Height] as Height,
    [Capability/VendorSpecificCapabilities/TileSet/Format] as [TileSet/Format],
    [Capability/VendorSpecificCapabilities/TileSet/Layers] as Layers,
    [Capability/VendorSpecificCapabilities/TileSet/Styles/Style/Name] as [Style/Name],
    [Capability/VendorSpecificCapabilities/TileSet/Styles/Style/LegendURL/width] as width,
    [Capability/VendorSpecificCapabilities/TileSet/Styles/Style/LegendURL/height] as height,
    [Capability/VendorSpecificCapabilities/TileSet/Styles/Style/LegendURL/Format] as [LegendURL/Format],
    [Capability/VendorSpecificCapabilities/TileSet/BoundingBox/SRS] as [BoundingBox/SRS],
    [Capability/VendorSpecificCapabilities/TileSet/BoundingBox/minx] as minx,
    [Capability/VendorSpecificCapabilities/TileSet/BoundingBox/miny] as miny,
    [Capability/VendorSpecificCapabilities/TileSet/BoundingBox/maxx] as maxx,
    [Capability/VendorSpecificCapabilities/TileSet/BoundingBox/maxy] as maxy,
    [Capability/Exception/Format] as [Exception/Format],
    [Capability/Request/GetLegendGraphic/DCPType/HTTP/Get/OnlineResource/xmlns:xlink] as [GetLegendGraphic/DCPType/HTTP/Get/OnlineResource/xmlns:xlink],
    [Capability/Request/GetLegendGraphic/DCPType/HTTP/Get/OnlineResource/xlink:type] as [GetLegendGraphic/DCPType/HTTP/Get/OnlineResource/xlink:type],
    [Capability/Request/GetLegendGraphic/DCPType/HTTP/Get/OnlineResource/xlink:href] as [GetLegendGraphic/DCPType/HTTP/Get/OnlineResource/xlink:href],
    [Capability/Request/DescribeLayer/Format] as [DescribeLayer/Format],
    [Capability/Request/DescribeLayer/DCPType/HTTP/Get/OnlineResource/xmlns:xlink] as [DescribeLayer/DCPType/HTTP/Get/OnlineResource/xmlns:xlink],
    [Capability/Request/DescribeLayer/DCPType/HTTP/Get/OnlineResource/xlink:type] as [DescribeLayer/DCPType/HTTP/Get/OnlineResource/xlink:type],
    [Capability/Request/DescribeLayer/DCPType/HTTP/Get/OnlineResource/xlink:href] as [DescribeLayer/DCPType/HTTP/Get/OnlineResource/xlink:href],
    [Capability/Request/GetFeatureInfo/DCPType/HTTP/Get/OnlineResource/xmlns:xlink] as [GetFeatureInfo/DCPType/HTTP/Get/OnlineResource/xmlns:xlink],
    [Capability/Request/GetFeatureInfo/DCPType/HTTP/Get/OnlineResource/xlink:type] as [GetFeatureInfo/DCPType/HTTP/Get/OnlineResource/xlink:type],
    [Capability/Request/GetFeatureInfo/DCPType/HTTP/Get/OnlineResource/xlink:href] as [GetFeatureInfo/DCPType/HTTP/Get/OnlineResource/xlink:href],
    [Capability/Request/GetMap/Format] as [GetMap/Format],
    [Capability/Request/GetMap/DCPType/HTTP/Get/OnlineResource/xmlns:xlink] as [GetMap/DCPType/HTTP/Get/OnlineResource/xmlns:xlink],
    [Capability/Request/GetMap/DCPType/HTTP/Get/OnlineResource/xlink:type] as [GetMap/DCPType/HTTP/Get/OnlineResource/xlink:type],
    [Capability/Request/GetMap/DCPType/HTTP/Get/OnlineResource/xlink:href] as [GetMap/DCPType/HTTP/Get/OnlineResource/xlink:href],
    [Capability/Request/GetCapabilities/Format] as [GetCapabilities/Format],
    [Capability/Request/GetCapabilities/DCPType/HTTP/Get/OnlineResource/xmlns:xlink] as [GetCapabilities/DCPType/HTTP/Get/OnlineResource/xmlns:xlink],
    [Capability/Request/GetCapabilities/DCPType/HTTP/Get/OnlineResource/xlink:type] as [GetCapabilities/DCPType/HTTP/Get/OnlineResource/xlink:type],
    [Capability/Request/GetCapabilities/DCPType/HTTP/Get/OnlineResource/xlink:href] as [GetCapabilities/DCPType/HTTP/Get/OnlineResource/xlink:href],
    [Service/Name],
    [Service/Title] as Title,
    [Service/OnlineResource/xmlns:xlink],
    [Service/OnlineResource/xlink:type],
    [Service/OnlineResource/xlink:href],
    %Key_WMT_MS_Capabilities_37F52D64EE5C2AEF    // Key for this table: WMT_MS_Capabilities
FROM [Preps.xml] (XmlSimple, Table is [WMT_MS_Capabilities]);
// End of [wms-getcapabilities.xml] LOAD statements&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Stoyan&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 10:03:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Can-someone-help-me-with-wms-service/m-p/1665312#M50066</guid>
      <dc:creator>Stoyan_Terziev</dc:creator>
      <dc:date>2020-01-14T10:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Can someone help me with wms service?</title>
      <link>https://community.qlik.com/t5/App-Development/Can-someone-help-me-with-wms-service/m-p/2049592#M86275</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have the same problem: I'm trying to use a wms server for a weather map of italy and I found the same link as Riccardo but it doesn't work.&lt;/P&gt;
&lt;P&gt;I tryied to use the US link:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nowcoast.noaa.gov/arcgis/services/nowcoast/analysis_meteohydro_sfc_qpe_time/MapServer/WMSServer" target="_blank"&gt;https://nowcoast.noaa.gov/arcgis/services/nowcoast/analysis_meteohydro_sfc_qpe_time/MapServer/WMSServer&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and this works!&lt;/P&gt;
&lt;P&gt;I don't understand how you solved this, can you explain better the steps please?&lt;/P&gt;
&lt;P&gt;I'm pretty new to qlik.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;Elena&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 14:30:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Can-someone-help-me-with-wms-service/m-p/2049592#M86275</guid>
      <dc:creator>laife</dc:creator>
      <dc:date>2023-03-15T14:30:44Z</dc:date>
    </item>
  </channel>
</rss>

