Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
harbulot edited this page Sep 14, 2010 · 2 revisions

The main pages for the documentation about the FOAF+SSL Java libraries can be found at the Java.net page.

As of 28/01/2010, in the master branch, the Identity Provider (IdP) servlet (which uses the short redirection mechanism) may be configured without any changes to web.xml by using JNDI. For example, in Tomcat 6, parameters may be set in the context (see Tomcat’s Context and JNDI documentation pages for more information):

<Context docBase="foafssl-identity-provider-webapp" path="/foafssl-identity-provider-webapp">

   <Environment name="foafsslidp/signingKeystorePath"
      value="/home/bruno/.../somefile.p12"
      type="java.lang.String" override="false" />
   <Environment name="foafsslidp/signingKeystoreType"
      value="PKCS12" type="java.lang.String" override="false" />
   <Environment name="foafsslidp/signingKeystorePassword"
      value="testtest" type="java.lang.String" override="false" />
</Context>
Clone this wiki locally