<?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: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427402#M16501</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; line-height: 1.5; background-color: transparent;"&gt;Hi Carlos,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay.&amp;nbsp; I was able to establish HTTP Basic authentication after a lot of work.&amp;nbsp; In summary, it involved the following steps:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Prerequisites: &lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Telnet/ssh client&lt;/LI&gt;&lt;LI&gt;Ubuntu or root account access or the ability use sudo in front of commands if you are denied access.&lt;/LI&gt;&lt;LI&gt;Make sure you make backup copies of config files before doing any editing so you can revert to them if needed.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Install and configure Apache Tomcat&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;On ubuntu that is done by entering running, "sudo apt-get update" and then "sudo apt-get install tomcat7"&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Install LDAP&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;In my case, I installed and used OpenLDAP (shown as slapd in Linux), since it was also free.&amp;nbsp; I entered, "&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;sudo apt-get install slapd ldap-utils&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Configure LDAP&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;After learning the basics, and configuring slapd with slapd.conf based on some web searching around, I decided to download a GUI for creating my LDAP hierarchies, mainly just Groups and Users, and then linking Users to Groups via group settings.&lt;/LI&gt;&lt;LI&gt;There are GUIs available for this at least: Apache Directory Studio and Ldap Admin Tool (I downloaded for Mac OSX).&lt;/LI&gt;&lt;LI&gt;I copied the groups and users used on ArcGIS Server so that there would not be any problems.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Configure Tomcat and ArcGIS Server app to use LDAP for basic authentication&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Requires adding the right lines to both Tomcat server.xml file within the root conf directory.&amp;nbsp; Here is a sample:&lt;/LI&gt;&lt;LI&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;lt;Realm className="org.apache.catalina.realm.JNDIRealm"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionURL = "&lt;A&gt;ldap://localhost:389&lt;/A&gt;"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionName="cn=admin,dc=example,dc=com"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionPassword="connectionAdminPassword"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; userPattern="cn={0},ou=users,dc=example,dc=com"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; roleBase="ou=roles,dc=example,dc=com"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; roleName="cn"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; roleSearch="(uniqueMember={0})"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;lt;/Realm&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Also add the right lines to the Tomcat manager web app's web.xml file in the web service's directory, e.g., /usr/local/apache-tomcat-7.0.47/webapps/manager/WEB-INF&amp;nbsp; Here is a sample:&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;lt;security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;admin&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-link&amp;gt;cn=admin,ou=roles,dc=example,dc=com&amp;lt;/role-link&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;arcgisserver&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-link&amp;gt;cn=arcgisserver,ou=roles,dc=example,dc=com&amp;lt;/role-link&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;users&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-link&amp;gt;cn=users,ou=roles,dc=example,dc=com&amp;lt;/role-link&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;security-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;display-name&amp;gt;Your Portal Name&amp;lt;/display-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;web-resource-collection&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;web-resource-name&amp;gt;Protected Area&amp;lt;/web-resource-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/web-resource-collection&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;auth-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;role-name&amp;gt;admin&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;role-name&amp;gt;arcgisserver&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;role-name&amp;gt;users&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/auth-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;login-config&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;auth-method&amp;gt;&lt;STRONG&gt;BASIC&lt;/STRONG&gt;&amp;lt;/auth-method&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;realm-name&amp;gt;Your Portal Name&amp;lt;/realm-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/login-config&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The role that is required to access the admin pages&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;admin&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;/security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The role that is required to access the internal pages&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;arcgisserver&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;/security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The role that is for customer-accessed pages&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;users&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;/security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Note that text/tags within these XML configuration files that all tags are case-sensitive!&amp;nbsp; So make sure that they are used exactly like the example (Lesson-learned, I did not have one letter capitalized and the whole thing wouldn't work as a result).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Restart Tomcat&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Install the ArcGIS Server Java&amp;nbsp; Web Adaptor on the Apache Tomcat server&lt;UL&gt;&lt;LI&gt;On AWS/Ubuntu I had to extract the arcgis.war file and then use theTomcat Web Application Manager user interface to deploy the arcgis web manager application (load the arcgis.war file).&lt;/LI&gt;&lt;LI&gt;There is now an arcgis directory within the [TomcatHome]/webapps directory.&lt;/LI&gt;&lt;LI&gt;Go to the [TomcatHome/webapps/arcgis/WEB-INF folder and add the following template (or something like it) to the bottom of the web.xml file:&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Now that the LDAP server is configured properly, change your Security configuration settings within ArcGIS Server Manager from ArcGIS Server's built-in store to one of the LDAP options (I decided to go all LDAP to simplify administration).&amp;nbsp; This helps some - &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/Securing_services_with_users_and_roles_from_an_LDAP_server/01540000050w000000/" style="color: #1155cc;"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#/Securing_services_with_users_and_roles_from_an_LDAP_server/01540000050w000000/&lt;/A&gt;&lt;UL&gt;&lt;LI&gt;Enter the following in the LDAP User Store screen:&lt;UL&gt;&lt;LI&gt;Host name IP&lt;/LI&gt;&lt;LI&gt;Port (389 if you didn't change it)&lt;/LI&gt;&lt;LI&gt;Base DN - an example is "dc=example,dc=com" (using the default LDAP namespace)&lt;/LI&gt;&lt;LI&gt;The URL is populated based on settings above.&lt;/LI&gt;&lt;LI&gt;RDN attribute: "cn" - the prefix of our user names&lt;/LI&gt;&lt;LI&gt;Administrator's DN: "cn=UserWithAdminRoleName",ou=users,dc=example,dc=com"&lt;/LI&gt;&lt;LI&gt;Password: Admin User's password&lt;/LI&gt;&lt;LI&gt;Press the Test Connection button and make sure you get a happy result.&amp;nbsp; If not, something is wrong with one of the LDAP parameters above or something within the LDAP server (e.g., admin user not assigned to admin group).&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Press the Next button to go to the LDAP Role Store configuration&lt;UL&gt;&lt;LI&gt;Enter the Base DN of the groups store within LDAP, example: ou=roles,dc=example,dc=com&lt;/LI&gt;&lt;LI&gt;The URL should be populated based on your entry above&lt;/LI&gt;&lt;LI&gt;User Attribute in Role Entry: I used the attribute called "uniqueMember"&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Press the Next button to select the Authentication Tier - change from GIS Server Tier to Web Tier&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;You are not done yet...but close.&amp;nbsp; The only way to configure the ArcGIS Server Web adaptor is to do it via a local server connection.&amp;nbsp; On a headless AWS ubuntu server this is accomplished via X-Windows on your remote client.&amp;nbsp; Here is an overview: &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//015500000679000000." style="color: #1155cc;"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#//015500000679000000.&lt;/A&gt; &lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt; For this you must do two things:&lt;UL&gt;&lt;LI&gt;In my case with a local WIndows7 environment, download and install Xming.&lt;/LI&gt;&lt;LI&gt;Alter your terminal emulator settings (in my case, go to pUTTY, Connection, SSH, X11, and enable X11 forwarding).&lt;/LI&gt;&lt;LI&gt;Re-login to your AWS ubuntu server.&lt;/LI&gt;&lt;LI&gt;Run firefox within the terminal client and wait for it to pop up on your local machine within an Xwindow.&lt;/LI&gt;&lt;LI&gt;Enter the address: &lt;A href="http://localhostXXXX/"&gt;http://localhost:XXXX/arcgis/&lt;/A&gt;webadaptor (the XXXX is the port number of Tomcat if necessary)&lt;/LI&gt;&lt;LI&gt;Select ArcGIS for Server&lt;/LI&gt;&lt;LI&gt;Next screen, enter:&lt;UL&gt;&lt;LI&gt;Enter GIS Server URL (for us it was &lt;A href="http://localhost:6080/" style="color: #1155cc;"&gt;http://localhost:6080&lt;/A&gt;)&lt;/LI&gt;&lt;LI&gt;Enter ArcGIS Server Manager User Name and Password&lt;/LI&gt;&lt;LI&gt;Optionally enable administrative access to the site via the Web Adaptor (I did).&lt;/LI&gt;&lt;LI&gt;Click on the Configure button and hope for a green screen area result.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;Log in as ArcGIS Server Manager as the admin and check under Security that Users and Roles from LDAP are populated accordingly and ensure that Role Types are assigned properly.&amp;nbsp; Also check, under Site - Web Adaptor that it shows the an entry for your ArcGIS WebAdaptor.&lt;/LI&gt;&lt;/UL&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You should now be able to close the padlock on your service and then have a user name/password prompt precede access to all your services capabilities, not just the proprietary ones.&amp;nbsp; &lt;/LI&gt;&lt;/UL&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Sorry, this message has been a long one.&amp;nbsp; My main hope is that it was instructive but also illustrative of the complexity involved.&amp;nbsp; I originally thought "Basic authentication" would be easy that was definitely not the case. If you need anymore details about a particular section, we can continue the thread.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;My not-so-humble opinion is that for its cost, ArcGIS Server should be designed for complete solutions including OGC services.&amp;nbsp;&amp;nbsp; A robust best-in-class product ensures that nothing much needs to be done outside the ArcGIS Manager GUI once it is installed. &lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;An advanced GIS Practitioner should not require heavy linux/tomcat/etc implementation know-how.&amp;nbsp; Is there a GIS program out there that teaches all this?&amp;nbsp; I don't think so.&amp;nbsp; Luckily I have grown to know enough unix to make me dangerous, and i'm pretty good at googling.&amp;nbsp; So I managed to accomplish implementing "Basic" authentication with ArcGIS Server with only general guidelines but not without going through a share of turmoil.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Lastly, just in case you think I actually exist to bash ESRI, I generally like and appreciate ESRI desktop applications.&amp;nbsp; They are brilliant.&amp;nbsp; However I see two areas that need improvement for this and other cases:&amp;nbsp; complete support for OGC services (they are here to stay), and bringing up the level of support within the JAVA/linux server space compared to that provided to Microsoft environments.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;At the very least, I expected a white paper to address setting up web-tiered authentication rather than bupkis.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Again, if you'd like any further help with accomplishing some or all of the above steps, then I am at your service.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;All the best,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Pete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Nov 2014 22:42:34 GMT</pubDate>
    <dc:creator>PeterVaziri</dc:creator>
    <dc:date>2014-11-06T22:42:34Z</dc:date>
    <item>
      <title>Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427400#M16499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been hunting around for what I thought would be an easy answer.&amp;nbsp; Does anyone know, or know of a resource that I can access, which lets me assign users/passwords to potential WFS or WMS users?&amp;nbsp; Currently, once a service is locked for private access via ArcGIS Server Manager, the only way you can access it is via the default service mapping capability via ArcGIS Server and not WMS or WFS.&amp;nbsp; I need to be able to expose my OGC web services to a limited set of user accounts.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that the "help" says that I'm to rely on knowing how to set up HTTP Basic or HTTP Digest for OGC service authentication since it is decoupled from ESRI's ArcGIS Server implementation.&amp;nbsp; However, I'm having a difficult time finding where to find files like .htaccess.&amp;nbsp; &lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running ArcGIS Server 10.2 on an AWS EC2 linux box.&amp;nbsp; The web server is server is listed as cloudflare-ngnix and I have no clue about how it works.&amp;nbsp; So...I'm thinking that since this isn't a straight-forward Apache config edit operation, it is currently above my head.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anybody have experience setting up OGC web mapping service authorization running ArcGIS Server 10.2 within an EC2 AWS Linux environment?&amp;nbsp; I'd just love a step-by-step guide.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Pete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 18:04:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427400#M16499</guid>
      <dc:creator>PeterVaziri</dc:creator>
      <dc:date>2014-09-08T18:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427401#M16500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter I'm working in the same issue that you also using ArcGIS Server 10.2. I can't access Arcgis services that have security restrictions using WMS/WFS protocol, only using arcgis server user connection in arcmap it's run. In my tests if I change the authentication method of GIS Server to Web using Webadaptor the problem persists. I configured Webadaptor in JBoss AS to use HTTP Basic authentication using the same LDAP server that is configured in ArcGIS Server using JBoss realms, but when I access the WMS service from ArcMap JBoss require credentials, I enter credentials in ArcMap but Webadaptor can't communicate correctly with GIS Server. If a access services direct from browser through Webadpater the same return the folowing error after authentication "Unable to decrypt user credentials from web adaptor" I stoped at this point and don't found any documentation that explains how to configure and use HTTP Basic authentication with ArcGIS Server, using token mechanism all is ok but I also need to expose WMS/WFS services without token mechanism of ArcGIS Server. I suspect that this feature of HTTP Basic authentication only runs on Webadpator using IIS but I never tried this using IIS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have some news about this issue and can share I'll be very happy &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt; or when I have I'll post here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regads,&lt;/P&gt;&lt;P&gt;Carlos Lacerda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 03:38:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427401#M16500</guid>
      <dc:creator>CarlosLacerda</dc:creator>
      <dc:date>2014-10-29T03:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427402#M16501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; line-height: 1.5; background-color: transparent;"&gt;Hi Carlos,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay.&amp;nbsp; I was able to establish HTTP Basic authentication after a lot of work.&amp;nbsp; In summary, it involved the following steps:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Prerequisites: &lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Telnet/ssh client&lt;/LI&gt;&lt;LI&gt;Ubuntu or root account access or the ability use sudo in front of commands if you are denied access.&lt;/LI&gt;&lt;LI&gt;Make sure you make backup copies of config files before doing any editing so you can revert to them if needed.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Install and configure Apache Tomcat&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;On ubuntu that is done by entering running, "sudo apt-get update" and then "sudo apt-get install tomcat7"&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Install LDAP&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;In my case, I installed and used OpenLDAP (shown as slapd in Linux), since it was also free.&amp;nbsp; I entered, "&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;sudo apt-get install slapd ldap-utils&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Configure LDAP&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;After learning the basics, and configuring slapd with slapd.conf based on some web searching around, I decided to download a GUI for creating my LDAP hierarchies, mainly just Groups and Users, and then linking Users to Groups via group settings.&lt;/LI&gt;&lt;LI&gt;There are GUIs available for this at least: Apache Directory Studio and Ldap Admin Tool (I downloaded for Mac OSX).&lt;/LI&gt;&lt;LI&gt;I copied the groups and users used on ArcGIS Server so that there would not be any problems.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Configure Tomcat and ArcGIS Server app to use LDAP for basic authentication&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Requires adding the right lines to both Tomcat server.xml file within the root conf directory.&amp;nbsp; Here is a sample:&lt;/LI&gt;&lt;LI&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;lt;Realm className="org.apache.catalina.realm.JNDIRealm"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionURL = "&lt;A&gt;ldap://localhost:389&lt;/A&gt;"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionName="cn=admin,dc=example,dc=com"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionPassword="connectionAdminPassword"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; userPattern="cn={0},ou=users,dc=example,dc=com"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; roleBase="ou=roles,dc=example,dc=com"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; roleName="cn"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; roleSearch="(uniqueMember={0})"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 0 0 0 40px; color: #222222;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;lt;/Realm&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Also add the right lines to the Tomcat manager web app's web.xml file in the web service's directory, e.g., /usr/local/apache-tomcat-7.0.47/webapps/manager/WEB-INF&amp;nbsp; Here is a sample:&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;lt;security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;admin&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-link&amp;gt;cn=admin,ou=roles,dc=example,dc=com&amp;lt;/role-link&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;arcgisserver&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-link&amp;gt;cn=arcgisserver,ou=roles,dc=example,dc=com&amp;lt;/role-link&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;users&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-link&amp;gt;cn=users,ou=roles,dc=example,dc=com&amp;lt;/role-link&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-role-ref&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;security-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;display-name&amp;gt;Your Portal Name&amp;lt;/display-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;web-resource-collection&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;web-resource-name&amp;gt;Protected Area&amp;lt;/web-resource-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/web-resource-collection&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;auth-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;role-name&amp;gt;admin&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;role-name&amp;gt;arcgisserver&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&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; &amp;lt;role-name&amp;gt;users&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/auth-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/security-constraint&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;login-config&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;auth-method&amp;gt;&lt;STRONG&gt;BASIC&lt;/STRONG&gt;&amp;lt;/auth-method&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;realm-name&amp;gt;Your Portal Name&amp;lt;/realm-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/login-config&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The role that is required to access the admin pages&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;admin&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;/security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The role that is required to access the internal pages&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;arcgisserver&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;/security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The role that is for customer-accessed pages&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;role-name&amp;gt;users&amp;lt;/role-name&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE class="jive-quote" style="color: #222222; font-family: arial, sans-serif; margin: 0 0 0 40px;"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp; &amp;lt;/security-role&amp;gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Note that text/tags within these XML configuration files that all tags are case-sensitive!&amp;nbsp; So make sure that they are used exactly like the example (Lesson-learned, I did not have one letter capitalized and the whole thing wouldn't work as a result).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Restart Tomcat&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Install the ArcGIS Server Java&amp;nbsp; Web Adaptor on the Apache Tomcat server&lt;UL&gt;&lt;LI&gt;On AWS/Ubuntu I had to extract the arcgis.war file and then use theTomcat Web Application Manager user interface to deploy the arcgis web manager application (load the arcgis.war file).&lt;/LI&gt;&lt;LI&gt;There is now an arcgis directory within the [TomcatHome]/webapps directory.&lt;/LI&gt;&lt;LI&gt;Go to the [TomcatHome/webapps/arcgis/WEB-INF folder and add the following template (or something like it) to the bottom of the web.xml file:&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Now that the LDAP server is configured properly, change your Security configuration settings within ArcGIS Server Manager from ArcGIS Server's built-in store to one of the LDAP options (I decided to go all LDAP to simplify administration).&amp;nbsp; This helps some - &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/Securing_services_with_users_and_roles_from_an_LDAP_server/01540000050w000000/" style="color: #1155cc;"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#/Securing_services_with_users_and_roles_from_an_LDAP_server/01540000050w000000/&lt;/A&gt;&lt;UL&gt;&lt;LI&gt;Enter the following in the LDAP User Store screen:&lt;UL&gt;&lt;LI&gt;Host name IP&lt;/LI&gt;&lt;LI&gt;Port (389 if you didn't change it)&lt;/LI&gt;&lt;LI&gt;Base DN - an example is "dc=example,dc=com" (using the default LDAP namespace)&lt;/LI&gt;&lt;LI&gt;The URL is populated based on settings above.&lt;/LI&gt;&lt;LI&gt;RDN attribute: "cn" - the prefix of our user names&lt;/LI&gt;&lt;LI&gt;Administrator's DN: "cn=UserWithAdminRoleName",ou=users,dc=example,dc=com"&lt;/LI&gt;&lt;LI&gt;Password: Admin User's password&lt;/LI&gt;&lt;LI&gt;Press the Test Connection button and make sure you get a happy result.&amp;nbsp; If not, something is wrong with one of the LDAP parameters above or something within the LDAP server (e.g., admin user not assigned to admin group).&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Press the Next button to go to the LDAP Role Store configuration&lt;UL&gt;&lt;LI&gt;Enter the Base DN of the groups store within LDAP, example: ou=roles,dc=example,dc=com&lt;/LI&gt;&lt;LI&gt;The URL should be populated based on your entry above&lt;/LI&gt;&lt;LI&gt;User Attribute in Role Entry: I used the attribute called "uniqueMember"&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Press the Next button to select the Authentication Tier - change from GIS Server Tier to Web Tier&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;You are not done yet...but close.&amp;nbsp; The only way to configure the ArcGIS Server Web adaptor is to do it via a local server connection.&amp;nbsp; On a headless AWS ubuntu server this is accomplished via X-Windows on your remote client.&amp;nbsp; Here is an overview: &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//015500000679000000." style="color: #1155cc;"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#//015500000679000000.&lt;/A&gt; &lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt; For this you must do two things:&lt;UL&gt;&lt;LI&gt;In my case with a local WIndows7 environment, download and install Xming.&lt;/LI&gt;&lt;LI&gt;Alter your terminal emulator settings (in my case, go to pUTTY, Connection, SSH, X11, and enable X11 forwarding).&lt;/LI&gt;&lt;LI&gt;Re-login to your AWS ubuntu server.&lt;/LI&gt;&lt;LI&gt;Run firefox within the terminal client and wait for it to pop up on your local machine within an Xwindow.&lt;/LI&gt;&lt;LI&gt;Enter the address: &lt;A href="http://localhostXXXX/"&gt;http://localhost:XXXX/arcgis/&lt;/A&gt;webadaptor (the XXXX is the port number of Tomcat if necessary)&lt;/LI&gt;&lt;LI&gt;Select ArcGIS for Server&lt;/LI&gt;&lt;LI&gt;Next screen, enter:&lt;UL&gt;&lt;LI&gt;Enter GIS Server URL (for us it was &lt;A href="http://localhost:6080/" style="color: #1155cc;"&gt;http://localhost:6080&lt;/A&gt;)&lt;/LI&gt;&lt;LI&gt;Enter ArcGIS Server Manager User Name and Password&lt;/LI&gt;&lt;LI&gt;Optionally enable administrative access to the site via the Web Adaptor (I did).&lt;/LI&gt;&lt;LI&gt;Click on the Configure button and hope for a green screen area result.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;Log in as ArcGIS Server Manager as the admin and check under Security that Users and Roles from LDAP are populated accordingly and ensure that Role Types are assigned properly.&amp;nbsp; Also check, under Site - Web Adaptor that it shows the an entry for your ArcGIS WebAdaptor.&lt;/LI&gt;&lt;/UL&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You should now be able to close the padlock on your service and then have a user name/password prompt precede access to all your services capabilities, not just the proprietary ones.&amp;nbsp; &lt;/LI&gt;&lt;/UL&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Sorry, this message has been a long one.&amp;nbsp; My main hope is that it was instructive but also illustrative of the complexity involved.&amp;nbsp; I originally thought "Basic authentication" would be easy that was definitely not the case. If you need anymore details about a particular section, we can continue the thread.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;My not-so-humble opinion is that for its cost, ArcGIS Server should be designed for complete solutions including OGC services.&amp;nbsp;&amp;nbsp; A robust best-in-class product ensures that nothing much needs to be done outside the ArcGIS Manager GUI once it is installed. &lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;An advanced GIS Practitioner should not require heavy linux/tomcat/etc implementation know-how.&amp;nbsp; Is there a GIS program out there that teaches all this?&amp;nbsp; I don't think so.&amp;nbsp; Luckily I have grown to know enough unix to make me dangerous, and i'm pretty good at googling.&amp;nbsp; So I managed to accomplish implementing "Basic" authentication with ArcGIS Server with only general guidelines but not without going through a share of turmoil.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Lastly, just in case you think I actually exist to bash ESRI, I generally like and appreciate ESRI desktop applications.&amp;nbsp; They are brilliant.&amp;nbsp; However I see two areas that need improvement for this and other cases:&amp;nbsp; complete support for OGC services (they are here to stay), and bringing up the level of support within the JAVA/linux server space compared to that provided to Microsoft environments.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;At the very least, I expected a white paper to address setting up web-tiered authentication rather than bupkis.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Again, if you'd like any further help with accomplishing some or all of the above steps, then I am at your service.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;All the best,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px;"&gt;Pete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 22:42:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427402#M16501</guid>
      <dc:creator>PeterVaziri</dc:creator>
      <dc:date>2014-11-06T22:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427403#M16502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for your response and detailed instructions, your instructions are best of any article from ESRI about this subject &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did all steps that you explained but in JBoss, the Realm authenticate correctly users in LDAP and ArcGIS also configured and runs with LDAP. The problem in my case is that the communication between WebAdapter and GIS Server return an error and have a strange behavior because I register WebAdapter with success and use without problems until configure LDAP, but I don't know why the register don't appear in GIS Server. I'll try again this process and also try to use Tomcat to deploy WebAdapter, ASAP I'll post results here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter, I completely agree with your comments in the end of your response, I'm a Java Architect and I know how this Realms and configurations really runs, the WebAdapter is only a simple proxy to ArcGIS Server, the requirements needed to make use of "Basic Authentication" in WebAdapter says "Give all work to AppServer and administrator os server and have faith" as you say "&lt;SPAN style="color: #222222; font-family: arial, sans-serif;"&gt;A robust best-in-class product ensures that nothing much needs to be done outside the ArcGIS Manager GUI once it is installed." and this is not this case, the knowledge need to do this tasks are from a experienced deployer in Java Web Applications with some knowledge in security and LDAP it's not for anyone.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif;"&gt;I think ArcGIS Server don't want to be a good OGC player, only make you product compliant to receives the&amp;nbsp; OGC stamp.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif;"&gt;Well thank you for you response Peter, I'll try change some steps that I used here and post results here ASAP.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif;"&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif;"&gt;Carlos&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 13:48:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427403#M16502</guid>
      <dc:creator>CarlosLacerda</dc:creator>
      <dc:date>2014-11-07T13:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427404#M16503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&amp;nbsp; Glad I was able to provide some help.&amp;nbsp; Here are some screen shots illustrating the entries I made and have worked for me within ArcGIS Server Manager using the security configuration wizard.&amp;nbsp; Some entries are perhaps more intuitive than others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SecurityConfigWizard_1.PNG" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/29085_SecurityConfigWizard_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SecurityConfigWizard_2.PNG" class="jive-image image-2" src="https://community.esri.com/legacyfs/online/29086_SecurityConfigWizard_2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SecurityConfigWizard_3.PNG" class="jive-image image-3" src="https://community.esri.com/legacyfs/online/29087_SecurityConfigWizard_3.PNG" style="width: 620px; height: 335px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SecurityConfigWizard_4.PNG" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/29088_SecurityConfigWizard_4.PNG" style="width: 620px; height: 495px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SecurityConfigWizard_5.PNG" class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/29089_SecurityConfigWizard_5.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Security screen ends up looking like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Final_Security_View.PNG" class="jive-image image-6" src="https://community.esri.com/legacyfs/online/29090_Final_Security_View.PNG" style="width: 620px; height: 377px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note, afterwards you can view users and groups in the ArcGIS Server Admin interface.&amp;nbsp; You may have to reassign the "role type" to a particular role (i.e., assign 'admin' role to 'Administrator' role type), but otherwise but everything else is administered via your LDAP admin application.&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2014 20:40:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427404#M16503</guid>
      <dc:creator>PeterVaziri</dc:creator>
      <dc:date>2014-11-10T20:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427405#M16504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;I followed your steps but i would not able to configure tomcat 7 with web adapator arcgis 10.2.1 to open map services running in&amp;nbsp; Arcgis Server 10.2.1 with LDAP Authentication in windows environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before i move my components into server environment.I have installed tomcat 7 and web adapator in windows 7 this acts has web server with my ASP.NET MVC Application running in same machine.GIS server is an another windows 7 machine with Arcgis server with built in arcgis server roles and users from LDAP of my organisation ,i used web tier authentication here. &lt;/P&gt;&lt;P&gt;But i am facing difficulty in configuring Tomcat and web adapator to communication with Arcgis server in another machine.&lt;/P&gt;&lt;P&gt;Please can you give your suggestions.What i am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 03:20:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427405#M16504</guid>
      <dc:creator>Santhosh_KumarRamanathan</dc:creator>
      <dc:date>2016-02-23T03:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427406#M16505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;How to properly configure Tomcat to allow secure acces to services, did i miss something?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Users and roles are created in ApacheDS and are visible on ArcGIS Manager. Link to free wms service works, after changing service security to private QGIS throws an error - forbidden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Windows server 2012 R2&lt;BR /&gt;ArcGIS Server 10.5&lt;BR /&gt;ApacheDS 2.0.0-M23&lt;BR /&gt;Apache-tomcat 7.0.65&lt;BR /&gt;Web Adaptor Java Windows 105_154008&lt;BR /&gt;Windows firewall - off&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ApacheDS configuration:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;users:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;cn: username1&lt;BR /&gt;objectClass: inetOrgPerson&lt;BR /&gt;objectClass: organizationalPerson&lt;BR /&gt;objectClass: person&lt;BR /&gt;objectClass: top&lt;BR /&gt;sn: username1&lt;BR /&gt;uid: username1&lt;BR /&gt;userPassword: userpassword&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;groups:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;cn: Administrators&lt;BR /&gt;objectClass: groupOfUniqueNames&lt;BR /&gt;objectClass: top&lt;BR /&gt;uniqueMember: cn=username1,ou=users,ou=system&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ArcGIS Server Security - Configuration Settings&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.User and Role Management&lt;/STRONG&gt; - Users from an existing enterprise system (LDAP or Windows Domain) and roles from ArcGIS Server's built-in store&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.Enterprise Store Type&lt;/STRONG&gt; - LDAP&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3.LDAP User Store:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Host name: vms12&lt;BR /&gt;Port: 10389&lt;BR /&gt;Base DN: ou=system&lt;BR /&gt;URL: ldap://vms12:10389/ou=system&lt;BR /&gt;RDN attribute: uid&lt;BR /&gt;Administrator's DN: uid=admin,ou=system&lt;BR /&gt;&lt;STRONG&gt;4.Authentication Tier&lt;/STRONG&gt; - Web Tier&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tomcat configuration:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;C:\Program Files\Apache Software Foundation\Tomcat 7.0\conf\server.xml&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Realm className="org.apache.catalina.realm.JNDIRealm"&lt;BR /&gt;connectionURL="ldap://localhost:10389"&lt;BR /&gt;connectionName="uid=admin,ou=system"&lt;BR /&gt;connectionPassword="password"&lt;BR /&gt;userBase="ou=system"&lt;BR /&gt;userSubtree="true"&lt;BR /&gt;userSearch="(uid={0})"&lt;BR /&gt;roleBase="ou=system"&lt;BR /&gt;roleName="cn"&lt;BR /&gt;roleSearch="(uniquemember={0})"&lt;BR /&gt;roleSubtree="true"&lt;BR /&gt;/&amp;gt; &lt;BR /&gt;&amp;lt;/Realm&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C:\Program Files\Apache Software Foundation\Tomcat 7.0\conf\web.xml&lt;/P&gt;&lt;P&gt;&amp;lt;security-constraint&amp;gt;&lt;BR /&gt;&amp;lt;web-resource-collection&amp;gt;&lt;BR /&gt;&amp;lt;web-resource-name&amp;gt;WMS Services&amp;lt;/web-resource-name&amp;gt;&lt;BR /&gt;&amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;&lt;BR /&gt;&amp;lt;/web-resource-collection&amp;gt;&lt;BR /&gt;&amp;lt;auth-constraint&amp;gt;&lt;BR /&gt;&amp;lt;role-name&amp;gt;Administrators&amp;lt;/role-name&amp;gt;&lt;BR /&gt;&amp;lt;/auth-constraint&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/security-constraint&amp;gt;&lt;BR /&gt;&amp;lt;login-config&amp;gt;&lt;BR /&gt;&amp;lt;auth-method&amp;gt;BASIC&amp;lt;/auth-method&amp;gt;&lt;BR /&gt;&amp;lt;realm-name&amp;gt;WMS services&amp;lt;/realm-name&amp;gt;&lt;BR /&gt;&amp;lt;/login-config&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;security-role&amp;gt;&lt;BR /&gt;&amp;lt;description&amp;gt;&lt;BR /&gt;The role that is required to access the HTML Manager pages&lt;BR /&gt;&amp;lt;/description&amp;gt;&lt;BR /&gt;&amp;lt;role-name&amp;gt;Administrators&amp;lt;/role-name&amp;gt;&lt;BR /&gt;&amp;lt;/security-role&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Mar 2017 14:09:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427406#M16505</guid>
      <dc:creator>SdnomiarEgo</dc:creator>
      <dc:date>2017-03-25T14:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up OGC (e.g., WFS) authentication on ArcGIS Server 10.2 on AWS Linux</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427407#M16506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have registered an ArcGIS Web Adaptor in Apache Tomcat with an ArcGIS Server site using Web Tier Authentication via LDAP with an Active Directory instance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can configure Basic Authentication successfully however with Digest enabled, attempts to log into ArcGIS Server fail. Has anyone successfully implemented Digest authentication?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gavin&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/67172"&gt;Peter Vaziri&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2018 12:21:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/setting-up-ogc-e-g-wfs-authentication-on-arcgis/m-p/427407#M16506</guid>
      <dc:creator>GavinCollins1</dc:creator>
      <dc:date>2018-07-13T12:21:30Z</dc:date>
    </item>
  </channel>
</rss>

