Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- Document Overview
- About Apache Fortress Rest
- Tips for first-time users.
- SECTION 1. Prerequisites.
- SECTION 2. Download & Install.
- SECTION 3. Prepare Tomcat for Java EE Security
- SECTION 4. Prepare directory-fortress-rest package to use LDAP server
- SECTION 5. Build and deploy directory-fortress-rest
- SECTION 6. Unit Test.
- SECTION 7. Fortress rest properties
This document contains instructions to download, build, and test operations using Apache Fortress Rest component.
-
An http service interface to drive Apache Fortress APIs.
-
Uses Apache CXF as the rest framework.
-
Layered security using ...
- declarative controls:
- HTTP Basic Authentication and coarse-grained role check (Tomcat Realm)
- Service security using Apache CXF's SimpleAuthorizingInterceptor
- programmatic controls:
- fine-grained authorization
- declarative controls:
- For a tutorial on how to use Apache Fortress with LDAP, check out the Fortress Core quickstart guides.
- For a description of the various security mechanisms that are performed during Apache Fortress REST runtime operations: README-SECURITY-MODEL
- How to test README-TESTING.md.
- Questions about this software package should be directed to its mailing list:
Minimum software requirements:
- git
- Java SDK >= 17
- Apache Maven >= 3
- Apache Tomcat >= 10
- Basic LDAP server setup by completing one of these Quickstarts
Everything else covered in steps that follow. Tested on Debian and Redhat systems.
a. from git:
git clone --branch [version] https://gitbox.apache.org/repos/asf/directory-fortress-enmasse.git
cd directory-fortress-enmasse
b. or apache fortress downloads
mvn clean install
mvn javadoc:javadoc
4. View the generated document here: ./target/site/apidocs/overview-summary.html.
This web app uses Java EE security.
wget https://repo.maven.apache.org/maven2/org/apache/directory/fortress/fortress-realm-proxy/[version]/fortress-realm-proxy-[version].jar -P $TOMCAT_HOME/lib
- Where
$TOMCAT_HOME
points to the execution env. - Where
[version]
points to the particular release, e.g. 3.0.0.
Note: The realm proxy enables Tomcat container-managed security functions to call back to fortress.
sudo vi /usr/local/tomcat10/conf/tomcat-users.xml
<role rolename="manager-script"/>
<user username="tcmanager" password="m@nager123" roles="manager-script"/>
cp src/main/resources/fortress.properties.example src/main/resources/fortress.properties
vi src/main/resources/fortress.properties
Pick either Apache Directory or OpenLDAP server:
a. Prepare fortress for ApacheDS usage:
# This param tells fortress what type of ldap server in use:
ldap.server.type=apacheds
# Use value from [Set Hostname Entry]:
host=localhost
# ApacheDS defaults to this:
port=10389
# These credentials are used for read/write access to all nodes under suffix:
admin.user=uid=admin,ou=system
admin.pw=secret
-- Or --
b. Prepare fortress for OpenLDAP usage:
# This param tells fortress what type of ldap server in use:
ldap.server.type=openldap
# Use value from [Set Hostname Entry]:
host=localhost
# OpenLDAP defaults to this:
port=389
# These credentials are used for read/write access to all nodes under suffix:
admin.user=cn=Manager,dc=example,dc=com
admin.pw=secret
mvn -version
This sample requires Java >= 17 and Maven >= 3 to be setup within the execution env.
mvn install -Dload.file=src/main/resources/FortressRestServerPolicy.xml
mvn install -Dload.file=src/main/resources/FortressRestArbacSamplePolicy.xml
- See README-SECURITY-MODEL
- -Dload.file automatically loads the directory-fortress-rest security policy data into ldap.
- This load needs to happen just once for the default test cases to work and may be dropped from future
mvn
commands.
a. If using autodeploy feature, verify the Tomcat auto-deploy options are set correctly in the pom.xml file:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<configuration>
...
<url>http://localhost:8080/manager/text</url>
<path>/${project.artifactId}</path>
<username>tcmanager</username>
<password>m@nager123</password>
</configuration>
</plugin>
b. Now, automatically deploy to tomcat server:
mvn clean tomcat:deploy
c. To automatically redeploy sample app:
mvn clean tomcat:redeploy
d. To manually deploy app to Tomcat:
cp target/fortress-rest-[version].war $TOMCAT_HOME/webapps
- Where
$TOMCAT_HOME
points to the execution env.
Run unit test:
mvn test -Dtest=EmTest
Test Notes:
- The Fortress Rest application must be deployed and running within your servlet container before the unit tests will complete successfully. If your app server is running on a separate machine, or using port other than 8080, adjust the settings accordingly in src/main/test/java/org/apache/directory/fortress/rest/EmTest.java
- For learning and troubleshooting, it is recommended that you use an HTTP proxy program, like Axis' tpMon to intercept the HTTP/XML request/responses between Fortress rest client and server.
- The tests depend on sample security policy being loaded.
- More on how to test README-TESTING.md.
This section describes the properties needed to control fortress rest.
The host name can be specified as a fully qualified domain name or IP address:
# Host name and port of LDAP DIT:
host=localhost
port=10389
# If ApacheDS server:
ldap.server.type=apacheds
# Else if OpenLDAP server:
ldap.server.type=openldap
# Else leave blank:
#ldap.server.type=other
- note: has different behavior on operations like password policies and audit. If using a 3rd type of server that isn't formally supported, leave blank or type is other.
This service account must have read/write privileges over the entire Fortress LDAP Directory Information Tree (DIT):
# If ApacheDS it will look something like this:
admin.user=uid=admin,ou=system
admin.pw=secret
# Else If OpenLDAP it will look something like this:
admin.user=cn=Manager,dc=example,dc=com
# This is min/max settings for LDAP connections. For testing and low-volume instances this will work:
min.admin.conn=1
max.admin.conn=10
Notes on connection pools:
- This setting will be proportional to the number of concurrent users but won't be one-to-one.
- The number of required ldap connections will be much lower than concurrent users.
This will match your LDAP's server's config node per Fortress Core setup:
# This node contains fortress properties stored on behalf of connecting LDAP clients:
config.realm=DEFAULT
config.root=ou=Config,dc=example,dc=com
# Used for SSL Connection to LDAP Server:
enable.ldap.ssl=true
enable.ldap.ssl.debug=true
trust.store=/fully/qualified/path/and/file/name/to/java/truststore
trust.store.password=changeit
# ApacheDS stores its password policies objects here by default:
apacheds.pwpolicy.root=ou=passwordPolicies,ads-interceptorId=authenticationInterceptor,ou=interceptors,ads-directoryServiceId=default,ou=config