<?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 Adding WMS service throws an error &amp;quot;WMS not accesible or doesn´t exist&amp;quot; in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/adding-wms-service-throws-an-error-quot-wms-not/m-p/661788#M32995</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I´m trying to add to the Portal ( 10.2 version) WMS services from other providers, everytime I tried it, the process finalize with an error: "WMS not accesible or doesn´t exist".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I add the same service through ArCcatalog, so I´m sure that the resource is available and running. The same happends with internal WMS resources.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(Arcgis&amp;nbsp; services accesed through REST directory works fine)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I´m wondering if I´m&amp;nbsp; missing something in the configuration , anybody else with the same problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Oct 2013 10:01:36 GMT</pubDate>
    <dc:creator>DanaRe</dc:creator>
    <dc:date>2013-10-24T10:01:36Z</dc:date>
    <item>
      <title>Adding WMS service throws an error "WMS not accesible or doesn´t exist"</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/adding-wms-service-throws-an-error-quot-wms-not/m-p/661788#M32995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I´m trying to add to the Portal ( 10.2 version) WMS services from other providers, everytime I tried it, the process finalize with an error: "WMS not accesible or doesn´t exist".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I add the same service through ArCcatalog, so I´m sure that the resource is available and running. The same happends with internal WMS resources.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(Arcgis&amp;nbsp; services accesed through REST directory works fine)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I´m wondering if I´m&amp;nbsp; missing something in the configuration , anybody else with the same problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 10:01:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/adding-wms-service-throws-an-error-quot-wms-not/m-p/661788#M32995</guid>
      <dc:creator>DanaRe</dc:creator>
      <dc:date>2013-10-24T10:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Adding WMS service throws an error "WMS not accesible or doesn´t exist"</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/adding-wms-service-throws-an-error-quot-wms-not/m-p/661789#M32996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi dana,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you use proxy in your network ? I use previous version (2.1) and got same problem when i use proxy in network. to solve this problem, add proxy setting in portal web server&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;here is the configuration in 2.1 (use glassfish as webserver) :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;path : glassfish3/glassfish/domains/domain1/config/domain.xml&lt;/PRE&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;jvm-options&amp;gt;-Dhttp.proxyHost=yourproxy&amp;lt;/jvm-options&amp;gt;
&amp;lt;jvm-options&amp;gt;-Dhttps.proxyHost=yourproxy&amp;lt;/jvm-options&amp;gt;
&amp;lt;jvm-options&amp;gt;-Dhttp.proxyPort=yourproxyport&amp;lt;/jvm-options&amp;gt;
&amp;lt;jvm-options&amp;gt;-Dhttps.proxyPort=yourproxyport&amp;lt;/jvm-options&amp;gt;
&amp;lt;jvm-options&amp;gt;-Dhttp.nonProxyHosts=yourdomain&amp;lt;/jvm-options&amp;gt;
&amp;lt;jvm-options&amp;gt;-Dhttps.nonProxyHosts=yourdomain&amp;lt;/jvm-options&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;however, 10.2 have different webserver (apache tomcat not glassfish). here is proxy setting in apache tomcat :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;path:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Portal/framework/runtime/tomcat/conf/catalina.properties&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;add this setting:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;http.proxyHost=yourProxyURL
http.proxyPort=yourProxyPort
http.proxyUser=yourUserName
http.proxyPassword=yourPassword
http.nonProxyHost=yourdomain
https.proxyHost=yourProxyURL
https.proxyPort=yourProxyPort
https.proxyUser=yourUserName
https.proxyPassword=yourPassword
https.nonProxyHost=yourdomain&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;make sure internet connection in your portal server is working&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Amri&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:59:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/adding-wms-service-throws-an-error-quot-wms-not/m-p/661789#M32996</guid>
      <dc:creator>KhairulAmri1</dc:creator>
      <dc:date>2021-12-12T03:59:38Z</dc:date>
    </item>
  </channel>
</rss>

